From 5d0f4e745a57fcefe3faf1c18fc352dccd882047 Mon Sep 17 00:00:00 2001 From: Grisha Pomadchin Date: Mon, 10 Feb 2014 15:23:57 +0400 Subject: [PATCH] fix custom order type function names --- intaro.intarocrm/classes/general/ICrmOrderActions.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/intaro.intarocrm/classes/general/ICrmOrderActions.php b/intaro.intarocrm/classes/general/ICrmOrderActions.php index d8b1d4a7..5ea4705f 100755 --- a/intaro.intarocrm/classes/general/ICrmOrderActions.php +++ b/intaro.intarocrm/classes/general/ICrmOrderActions.php @@ -376,8 +376,8 @@ class ICrmOrderActions foreach ($orderHistory as $order) { // custom orderType functunion - if(function_exists('intarocrm_get_order_type_c')) { - $orderType = intarocrm_get_order_type_c($order); + if(function_exists('intarocrm_set_order_type')) { + $orderType = intarocrm_set_order_type($order); if($orderType) $optionsOrderTypes[$order['orderType']] = $orderType; } @@ -1112,8 +1112,8 @@ class ICrmOrderActions } // custom orderType functunion - if(function_exists('intarocrm_get_order_type_b')) { - $orderType = intarocrm_get_order_type_b($arFields); + if(function_exists('intarocrm_get_order_type')) { + $orderType = intarocrm_get_order_type($arFields); if($orderType) $resOrder['orderType'] = $orderType; }