File: /home/temp/yarusvl.ru/README
1. Simpla(Thank's) -> Okay(Thank's) -> Mgc (Magic)
2. Теперь админка задется произвольно, по умолчанию adminx
function getDeliveryPrice($orderItem, $deliveryId, $amount = false) {
$page = $orderItem->getItemElement();
$weight = $page->weight * ($amount ? $amount : $orderItem->item_amount);
if($deliveryId == 58271) { //АВИА ДОСТАВКА
if(1044*1.5+165*1.5*$weight < 1650) {
$deliveryPrice = 1650;
} else {
$deliveryPrice = 1044*1.5+165*1.5*$weight;
}
$deliveryPrice = ceil(($deliveryPrice + $deliveryPrice * 0.15) * 100) / 100;
return $deliveryPrice;
}
if($deliveryId == 58273) { //ЖД ДОСТАВКА
if(40*$weight < 2200) {
$deliveryPrice = 2200;
} else {
$deliveryPrice = 40*$weight;
}
$deliveryPrice = ceil(($deliveryPrice + $deliveryPrice * 0.15) * 100) / 100;
return $deliveryPrice<=3000?3000:$deliveryPrice;
}
$deliveryPrice = ceil(($deliveryPrice + $deliveryPrice * 0.15) * 100) / 100;
return $deliveryPrice;
}