402 lines
18 KiB
PHP
402 lines
18 KiB
PHP
<?php
|
|
IncludeModuleLangFile(__FILE__);
|
|
class RetailCrmOrder
|
|
{
|
|
public static $MODULE_ID = 'intaro.retailcrm';
|
|
public static $CRM_API_HOST_OPTION = 'api_host';
|
|
public static $CRM_API_KEY_OPTION = 'api_key';
|
|
public static $CRM_ORDER_TYPES_ARR = 'order_types_arr';
|
|
public static $CRM_DELIVERY_TYPES_ARR = 'deliv_types_arr';
|
|
public static $CRM_PAYMENT_TYPES = 'pay_types_arr';
|
|
public static $CRM_PAYMENT_STATUSES = 'pay_statuses_arr';
|
|
public static $CRM_PAYMENT = 'payment_arr'; //order payment Y/N
|
|
public static $CRM_ORDER_LAST_ID = 'order_last_id';
|
|
public static $CRM_SITES_LIST = 'sites_list';
|
|
public static $CRM_ORDER_PROPS = 'order_props';
|
|
public static $CRM_LEGAL_DETAILS = 'legal_details';
|
|
public static $CRM_CUSTOM_FIELDS = 'custom_fields';
|
|
public static $CRM_CONTRAGENT_TYPE = 'contragent_type';
|
|
public static $CRM_ORDER_FAILED_IDS = 'order_failed_ids';
|
|
public static $CRM_ORDER_HISTORY_DATE = 'order_history_date';
|
|
public static $CRM_CATALOG_BASE_PRICE = 'catalog_base_price';
|
|
public static $CRM_ORDER_NUMBERS = 'order_numbers';
|
|
public static $CRM_CURRENCY = 'currency';
|
|
|
|
const CANCEL_PROPERTY_CODE = 'INTAROCRM_IS_CANCELED';
|
|
|
|
/**
|
|
*
|
|
* Creates order or returns order for mass upload
|
|
*
|
|
* @param array $arFields
|
|
* @param $api
|
|
* @param $arParams
|
|
* @param $send
|
|
* @return boolean
|
|
* @return array - array('order' = $order, 'customer' => $customer)
|
|
*/
|
|
public static function orderSend($arFields, $api, $arParams, $send = false, $site = null, $methodApi = 'ordersEdit')
|
|
{
|
|
if (!$api || empty($arParams)) { // add cond to check $arParams
|
|
return false;
|
|
}
|
|
|
|
if (empty($arFields)) {
|
|
RCrmActions::eventLog('RetailCrmOrder::orderSend', 'empty($arFields)', 'incorrect order');
|
|
return false;
|
|
}
|
|
|
|
$currency = RetailcrmConfigProvider::getCurrencyOrDefault();
|
|
$order = array(
|
|
'number' => $arFields['NUMBER'],
|
|
'externalId' => $arFields['ID'],
|
|
'createdAt' => $arFields['DATE_INSERT'],
|
|
'customer' => array('externalId' => $arFields['USER_ID']),
|
|
'paymentType' => isset($arParams['optionsPayTypes'][$arFields['PAYMENTS'][0]]) ?
|
|
$arParams['optionsPayTypes'][$arFields['PAYMENTS'][0]] : '',
|
|
'paymentStatus' => isset($arParams['optionsPayment'][$arFields['PAYED']]) ?
|
|
$arParams['optionsPayment'][$arFields['PAYED']] : '',
|
|
'orderType' => isset($arParams['optionsOrderTypes'][$arFields['PERSON_TYPE_ID']]) ?
|
|
$arParams['optionsOrderTypes'][$arFields['PERSON_TYPE_ID']] : '',
|
|
'status' => isset($arParams['optionsPayStatuses'][$arFields['STATUS_ID']]) ?
|
|
$arParams['optionsPayStatuses'][$arFields['STATUS_ID']] : '',
|
|
'customerComment' => $arFields['USER_DESCRIPTION'],
|
|
'managerComment' => $arFields['COMMENTS'],
|
|
'delivery' => array(
|
|
'cost' => $arFields['PRICE_DELIVERY']
|
|
),
|
|
);
|
|
|
|
if ($send && isset($_COOKIE['_rc']) && $_COOKIE['_rc'] != '') {
|
|
$order['customer']['browserId'] = $_COOKIE['_rc'];
|
|
}
|
|
|
|
$order['contragent']['contragentType'] = $arParams['optionsContragentType'][$arFields['PERSON_TYPE_ID']];
|
|
|
|
//fields
|
|
foreach ($arFields['PROPS']['properties'] as $prop) {
|
|
if (!empty($arParams['optionsLegalDetails'])
|
|
&& $search = array_search($prop['CODE'], $arParams['optionsLegalDetails'][$arFields['PERSON_TYPE_ID']])
|
|
) {
|
|
$order['contragent'][$search] = $prop['VALUE'][0];//legal order data
|
|
} elseif (!empty($arParams['optionsCustomFields'])
|
|
&& $search = array_search($prop['CODE'], $arParams['optionsCustomFields'][$arFields['PERSON_TYPE_ID']])
|
|
) {
|
|
$order['customFields'][$search] = $prop['VALUE'][0];//custom properties
|
|
} elseif ($search = array_search($prop['CODE'], $arParams['optionsOrderProps'][$arFields['PERSON_TYPE_ID']])) {//other
|
|
if (in_array($search, array('fio', 'phone', 'email'))) {//fio, phone, email
|
|
if ($search == 'fio') {
|
|
$order = array_merge($order, RCrmActions::explodeFIO($prop['VALUE'][0]));//add fio fields
|
|
} else {
|
|
$order[$search] = $prop['VALUE'][0];//phone, email
|
|
}
|
|
} else {//address
|
|
if ($prop['TYPE'] == 'LOCATION' && isset($prop['VALUE'][0]) && $prop['VALUE'][0] != '') {
|
|
$arLoc = \Bitrix\Sale\Location\LocationTable::getByCode($prop['VALUE'][0])->fetch();
|
|
if ($arLoc) {
|
|
$server = \Bitrix\Main\Context::getCurrent()->getServer()->getDocumentRoot();
|
|
$countrys = array();
|
|
if (file_exists($server . '/bitrix/modules/intaro.retailcrm/classes/general/config/country.xml')) {
|
|
$countrysFile = simplexml_load_file($server . '/bitrix/modules/intaro.retailcrm/classes/general/config/country.xml');
|
|
foreach ($countrysFile->country as $country) {
|
|
$countrys[RCrmActions::fromJSON((string) $country->name)] = (string) $country->alpha;
|
|
}
|
|
}
|
|
$location = \Bitrix\Sale\Location\Name\LocationTable::getList(array(
|
|
'filter' => array('=LOCATION_ID' => $arLoc['CITY_ID'], 'LANGUAGE_ID' => 'ru')
|
|
))->fetch();
|
|
if (count($countrys) > 0) {
|
|
$countryOrder = \Bitrix\Sale\Location\Name\LocationTable::getList(array(
|
|
'filter' => array('=LOCATION_ID' => $arLoc['COUNTRY_ID'], 'LANGUAGE_ID' => 'ru')
|
|
))->fetch();
|
|
if(isset($countrys[$countryOrder['NAME']])){
|
|
$order['countryIso'] = $countrys[$countryOrder['NAME']];
|
|
}
|
|
}
|
|
}
|
|
$prop['VALUE'][0] = $location['NAME'];
|
|
}
|
|
|
|
$order['delivery']['address'][$search] = $prop['VALUE'][0];
|
|
}
|
|
}
|
|
}
|
|
|
|
//deliverys
|
|
if (array_key_exists($arFields['DELIVERYS'][0]['id'], $arParams['optionsDelivTypes'])) {
|
|
$order['delivery']['code'] = $arParams['optionsDelivTypes'][$arFields['DELIVERYS'][0]['id']];
|
|
if (isset($arFields['DELIVERYS'][0]['service']) && $arFields['DELIVERYS'][0]['service'] != '') {
|
|
$order['delivery']['service']['code'] = $arFields['DELIVERYS'][0]['service'];
|
|
}
|
|
}
|
|
|
|
//basket
|
|
foreach ($arFields['BASKET'] as $product) {
|
|
$item = array(
|
|
'quantity' => $product['QUANTITY'],
|
|
'offer' => array('externalId' => $product['PRODUCT_ID'],
|
|
'xmlId' => $product['PRODUCT_XML_ID']
|
|
),
|
|
'productName' => $product['NAME']
|
|
);
|
|
|
|
$pp = CCatalogProduct::GetByID($product['PRODUCT_ID']);
|
|
if (is_null($pp['PURCHASING_PRICE']) == false) {
|
|
if ($pp['PURCHASING_CURRENCY'] && $currency != $pp['PURCHASING_CURRENCY']) {
|
|
$purchasePrice = CCurrencyRates::ConvertCurrency(
|
|
(double) $pp['PURCHASING_PRICE'],
|
|
$pp['PURCHASING_CURRENCY'],
|
|
$currency
|
|
);
|
|
} else {
|
|
$purchasePrice = $pp['PURCHASING_PRICE'];
|
|
}
|
|
|
|
$item['purchasePrice'] = $purchasePrice;
|
|
}
|
|
$item['discount'] = (double) $product['DISCOUNT_PRICE'];
|
|
$item['discountPercent'] = 0;
|
|
$item['initialPrice'] = (double) $product['PRICE'] + (double) $product['DISCOUNT_PRICE'];
|
|
|
|
$order['items'][] = $item;
|
|
}
|
|
|
|
//send
|
|
if (function_exists('retailCrmBeforeOrderSend')) {
|
|
$newResOrder = retailCrmBeforeOrderSend($order, $arFields);
|
|
if (is_array($newResOrder) && !empty($newResOrder)) {
|
|
$order = $newResOrder;
|
|
} elseif ($newResOrder === false) {
|
|
RCrmActions::eventLog('RetailCrmOrder::orderSend', 'retailCrmBeforeOrderSend()', 'OrderID = ' . $arFields['ID'] . '. Sending canceled after retailCrmBeforeOrderSend');
|
|
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$normalizer = new RestNormalizer();
|
|
$order = $normalizer->normalize($order, 'orders');
|
|
|
|
Logger::getInstance()->write($order, 'orderSend');
|
|
|
|
if($send) {
|
|
if (!RCrmActions::apiMethod($api, $methodApi, __METHOD__, $order, $site)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return $order;
|
|
}
|
|
|
|
/**
|
|
* Mass order uploading, without repeating; always returns true, but writes error log
|
|
*
|
|
* @param int $pSize
|
|
* @param bool $failed -- flag to export failed orders
|
|
* @param bool $orderList
|
|
*
|
|
* @return boolean
|
|
* @throws \Bitrix\Main\ArgumentNullException
|
|
* @throws \Bitrix\Main\ObjectPropertyException
|
|
* @throws \Bitrix\Main\SystemException
|
|
* @throws \Bitrix\Main\ArgumentException
|
|
*/
|
|
public static function uploadOrders($pSize = 50, $failed = false, $orderList = false)
|
|
{
|
|
if (!RetailcrmDependencyLoader::loadDependencies()) {
|
|
return false;
|
|
}
|
|
|
|
$resOrders = array();
|
|
$resCustomers = array();
|
|
$orderIds = array();
|
|
|
|
$lastUpOrderId = RetailcrmConfigProvider::getLastOrderId();
|
|
$failedIds = RetailcrmConfigProvider::getFailedOrdersIds();
|
|
|
|
if ($failed == true && $failedIds !== false && count($failedIds) > 0) {
|
|
$orderIds = $failedIds;
|
|
} elseif ($orderList !== false && count($orderList) > 0) {
|
|
$orderIds = $orderList;
|
|
} else {
|
|
$dbOrder = \Bitrix\Sale\Internals\OrderTable::GetList(array(
|
|
'order' => array("ID" => "ASC"),
|
|
'filter' => array('>ID' => $lastUpOrderId),
|
|
'limit' => $pSize,
|
|
'select' => array('ID')
|
|
));
|
|
while ($arOrder = $dbOrder->fetch()) {
|
|
$orderIds[] = $arOrder['ID'];
|
|
}
|
|
}
|
|
|
|
if (count($orderIds)<=0) {
|
|
return false;
|
|
}
|
|
|
|
$api_host = COption::GetOptionString(self::$MODULE_ID, self::$CRM_API_HOST_OPTION, 0);
|
|
$api_key = COption::GetOptionString(self::$MODULE_ID, self::$CRM_API_KEY_OPTION, 0);
|
|
|
|
$optionsSitesList = RetailcrmConfigProvider::getSitesList();
|
|
$optionsOrderTypes = RetailcrmConfigProvider::getOrderTypes();
|
|
$optionsDelivTypes = RetailcrmConfigProvider::getDeliveryTypes();
|
|
$optionsPayTypes = RetailcrmConfigProvider::getPaymentTypes();
|
|
$optionsPayStatuses = RetailcrmConfigProvider::getPaymentStatuses(); // --statuses
|
|
$optionsPayment = RetailcrmConfigProvider::getPayment();
|
|
$optionsOrderProps = RetailcrmConfigProvider::getOrderProps();
|
|
$optionsLegalDetails = RetailcrmConfigProvider::getLegalDetails();
|
|
$optionsContragentType = RetailcrmConfigProvider::getContragentTypes();
|
|
$optionsCustomFields = RetailcrmConfigProvider::getCustomFields();
|
|
|
|
$api = new RetailCrm\ApiClient(RetailcrmConfigProvider::getApiUrl(), RetailcrmConfigProvider::getApiKey());
|
|
|
|
$arParams = array(
|
|
'optionsOrderTypes' => $optionsOrderTypes,
|
|
'optionsDelivTypes' => $optionsDelivTypes,
|
|
'optionsPayTypes' => $optionsPayTypes,
|
|
'optionsPayStatuses' => $optionsPayStatuses,
|
|
'optionsPayment' => $optionsPayment,
|
|
'optionsOrderProps' => $optionsOrderProps,
|
|
'optionsLegalDetails' => $optionsLegalDetails,
|
|
'optionsContragentType' => $optionsContragentType,
|
|
'optionsSitesList' => $optionsSitesList,
|
|
'optionsCustomFields' => $optionsCustomFields,
|
|
);
|
|
|
|
$recOrders = array();
|
|
foreach ($orderIds as $orderId) {
|
|
$id = \Bitrix\Sale\Order::load($orderId);
|
|
if (!$id) {
|
|
continue;
|
|
}
|
|
$order = self::orderObjToArr($id);
|
|
$user = Bitrix\Main\UserTable::getById($order['USER_ID'])->fetch();
|
|
|
|
$site = count($optionsSitesList) > 1 ? $optionsSitesList[$order['LID']] : null;
|
|
|
|
$arCustomers = RetailCrmUser::customerSend($user, $api, $optionsContragentType[$order['PERSON_TYPE_ID']], false, $site);
|
|
$arOrders = self::orderSend($order, $api, $arParams, false, $site);
|
|
|
|
if (!$arCustomers || !$arOrders) {
|
|
continue;
|
|
}
|
|
|
|
$resCustomers[$order['LID']][] = $arCustomers;
|
|
$resOrders[$order['LID']][] = $arOrders;
|
|
|
|
$recOrders[] = $orderId;
|
|
}
|
|
|
|
if (count($resOrders) > 0) {
|
|
foreach ($resCustomers as $key => $customerLoad) {
|
|
if ($optionsSitesList) {
|
|
if (array_key_exists($key, $optionsSitesList) && $optionsSitesList[$key] != null) {
|
|
$site = $optionsSitesList[$key];
|
|
} else {
|
|
continue;
|
|
}
|
|
} elseif (!$optionsSitesList) {
|
|
$site == null;
|
|
}
|
|
if (RCrmActions::apiMethod($api, 'customersUpload', __METHOD__, $customerLoad, $site) === false) {
|
|
return false;
|
|
}
|
|
if (count($optionsSitesList) > 1) {
|
|
time_nanosleep(0, 250000000);
|
|
}
|
|
}
|
|
foreach ($resOrders as $key => $orderLoad) {
|
|
if ($optionsSitesList) {
|
|
if (array_key_exists($key, $optionsSitesList) && $optionsSitesList[$key] != null) {
|
|
$site = $optionsSitesList[$key];
|
|
} else {
|
|
continue;
|
|
}
|
|
} elseif (!$optionsSitesList) {
|
|
$site == null;
|
|
}
|
|
if (RCrmActions::apiMethod($api, 'ordersUpload', __METHOD__, $orderLoad, $site) === false) {
|
|
return false;
|
|
}
|
|
if (count($optionsSitesList) > 1) {
|
|
time_nanosleep(0, 250000000);
|
|
}
|
|
}
|
|
if ($failed == true && $failedIds !== false && count($failedIds) > 0) {
|
|
COption::SetOptionString(self::$MODULE_ID, self::$CRM_ORDER_FAILED_IDS, serialize(array_diff($failedIds, $recOrders)));
|
|
} elseif ($lastUpOrderId < max($recOrders) && $orderList === false) {
|
|
COption::SetOptionString(self::$MODULE_ID, self::$CRM_ORDER_LAST_ID, max($recOrders));
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Returns true if provided order array is corporate order data. v4 doesn't have corporate orders.
|
|
*
|
|
* @param array|\ArrayAccess $order
|
|
*
|
|
* @return bool
|
|
*/
|
|
public static function isOrderCorporate($order)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public static function orderObjToArr($obOrder)
|
|
{
|
|
$culture = new \Bitrix\Main\Context\Culture(array("FORMAT_DATETIME" => "Y-m-d HH:i:s"));
|
|
$arOrder = array(
|
|
'ID' => $obOrder->getId(),
|
|
'NUMBER' => $obOrder->getField('ACCOUNT_NUMBER'),
|
|
'LID' => $obOrder->getSiteId(),
|
|
'DATE_INSERT' => $obOrder->getDateInsert()->toString($culture),
|
|
'STATUS_ID' => $obOrder->getField('STATUS_ID'),
|
|
'USER_ID' => $obOrder->getUserId(),
|
|
'PERSON_TYPE_ID' => $obOrder->getPersonTypeId(),
|
|
'CURRENCY' => $obOrder->getCurrency(),
|
|
'PAYMENTS' => $obOrder->getPaymentSystemId(),
|
|
'PAYED' => $obOrder->isPaid() ? 'Y' : 'N',
|
|
'DELIVERYS' => array(),
|
|
'PRICE_DELIVERY' => $obOrder->getDeliveryPrice(),
|
|
'PROPS' => $obOrder->getPropertyCollection()->getArray(),
|
|
'DISCOUNTS' => $obOrder->getDiscount()->getApplyResult(),
|
|
'BASKET' => array(),
|
|
'USER_DESCRIPTION' => $obOrder->getField('USER_DESCRIPTION'),
|
|
'COMMENTS' => $obOrder->getField('COMMENTS'),
|
|
'REASON_CANCELED' => $obOrder->getField('REASON_CANCELED'),
|
|
);
|
|
|
|
$shipmentList = $obOrder->getShipmentCollection();
|
|
foreach ($shipmentList as $shipmentData) {
|
|
if ($shipmentData->isSystem()) {
|
|
continue;
|
|
}
|
|
|
|
if ($shipmentData->getDeliveryId()) {
|
|
$delivery = \Bitrix\Sale\Delivery\Services\Manager::getById($shipmentData->getDeliveryId());
|
|
$siteDeliverys = RCrmActions::DeliveryList();
|
|
foreach ($siteDeliverys as $siteDelivery) {
|
|
if ($siteDelivery['ID'] == $delivery['ID'] && $siteDelivery['PARENT_ID'] == 0) {
|
|
unset($delivery['PARENT_ID']);
|
|
}
|
|
}
|
|
if ($delivery['PARENT_ID']) {
|
|
$servise = explode(':', $delivery['CODE']);
|
|
$shipment = array('id' => $delivery['PARENT_ID'], 'service' => $servise[1]);
|
|
} else {
|
|
$shipment = array('id' => $delivery['ID']);
|
|
}
|
|
$arOrder['DELIVERYS'][] = $shipment;
|
|
}
|
|
}
|
|
|
|
$basketItems = $obOrder->getBasket();
|
|
foreach ($basketItems as $item) {
|
|
$arOrder['BASKET'][] = $item->getFields();
|
|
}
|
|
|
|
return $arOrder;
|
|
}
|
|
}
|