1
0
mirror of synced 2024-11-22 05:16:09 +03:00

custom type function

This commit is contained in:
Grisha Pomadchin 2014-02-10 12:19:36 +04:00
parent d2d814f731
commit 98a6012fe5

View File

@ -1105,6 +1105,13 @@ class ICrmOrderActions
$resOrder['patronymic'] = $contactNameArr[2];
}
// custom orderType functunion
if(function_exists('intarocrm_get_order_type')) {
$orderType = intarocrm_get_order_type($arFields);
if($orderType)
$resOrder['orderType'] = $orderType;
}
$resOrder = self::clearArr($resOrder);
if($send)