1
0
mirror of synced 2024-11-22 13:26:10 +03:00

+multiship

This commit is contained in:
Grisha Pomadchin 2014-05-22 17:50:33 +04:00
parent 3a738a5d00
commit 76e0db8202

View File

@ -958,8 +958,8 @@ class ICrmOrderActions
isset($order['delivery']['data']) && $order['delivery']['data']) { isset($order['delivery']['data']) && $order['delivery']['data']) {
if(CModule::IncludeModule(self::$MULTISHIP_MODULE_VER)) { if(CModule::IncludeModule(self::$MULTISHIP_MODULE_VER)) {
$data = json_decode($order['delivery']['data'], true); $data = json_decode($order['delivery']['data'], true);
if(isset($data['ms_id']) && $data['ms_id']) if(isset($data['service']) && $data['service'])
$resultDeliveryTypeId = $resultDeliveryTypeId . ':' . $data['ms_id']; $resultDeliveryTypeId = $resultDeliveryTypeId . ':' . $data['service'];
} }
} }