From 76e0db82023df02bc3273f8619ea53cf04fa991d Mon Sep 17 00:00:00 2001 From: Grisha Pomadchin Date: Thu, 22 May 2014 17:50:33 +0400 Subject: [PATCH] +multiship --- intaro.intarocrm/classes/general/ICrmOrderActions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/intaro.intarocrm/classes/general/ICrmOrderActions.php b/intaro.intarocrm/classes/general/ICrmOrderActions.php index 372c09b9..d5f01aa1 100755 --- a/intaro.intarocrm/classes/general/ICrmOrderActions.php +++ b/intaro.intarocrm/classes/general/ICrmOrderActions.php @@ -958,8 +958,8 @@ class ICrmOrderActions isset($order['delivery']['data']) && $order['delivery']['data']) { if(CModule::IncludeModule(self::$MULTISHIP_MODULE_VER)) { $data = json_decode($order['delivery']['data'], true); - if(isset($data['ms_id']) && $data['ms_id']) - $resultDeliveryTypeId = $resultDeliveryTypeId . ':' . $data['ms_id']; + if(isset($data['service']) && $data['service']) + $resultDeliveryTypeId = $resultDeliveryTypeId . ':' . $data['service']; } }