""); if (!\Bitrix\Main\Loader::includeModule('sale')) $result["ERROR"] = "Error! Can't include module \"Sale\""; $saleModulePermissions = $APPLICATION->GetGroupRight("sale"); if($result["ERROR"] == '' && $saleModulePermissions >= "U" && check_bitrix_sessid()) { $action = isset($_REQUEST['action']) ? trim($_REQUEST['action']): ''; \Bitrix\Sale\Delivery\Services\Manager::getHandlersList(); switch ($action) { case "get_ruspost_shipping_points_list": $result = ''; $options = ''; $deliveryId = isset($_REQUEST['deliveryId']) ? (int)$_REQUEST['deliveryId'] : 0; $spSelected = isset($_REQUEST['spSelected']) ? trim($_REQUEST['spSelected']) : ''; $pointsResult = \Sale\Handlers\Delivery\Additional\RusPost\Helper::getEnabledShippingPointsListResult($deliveryId); if($pointsResult->isSuccess()) { $shippingPoints = $pointsResult->getData(); if(!empty($shippingPoints)) { foreach($shippingPoints as $sPoint) { if($sPoint['enabled'] == 1) { $options .= ''; } } } $result = ''; } else { $result = '
'.implode("\n
", $pointsResult->getErrorMessages()).'
'; } die($result); break; case "locations_compare": $stage = isset($_REQUEST['stage']) ? trim($_REQUEST['stage']): 'start'; $step = isset($_REQUEST['step']) ? trim($_REQUEST['step']): ''; $timeout = isset($_REQUEST['timeout']) ? trim($_REQUEST['timeout']): 24; $progress = isset($_REQUEST['progress']) ? trim($_REQUEST['progress']): 0; if($stage == '') { $result["ERROR"] = "Error! Wrong stage!"; break; } $documentRoot = \Bitrix\Main\Application::getDocumentRoot(); require_once($documentRoot.'/bitrix/modules/sale/handlers/delivery/additional/handler.php'); $res = \Sale\Handlers\Delivery\Additional\Location::compare($stage, $step, $progress, $timeout); if($res->isSuccess()) { $data = $res->getData(); $result['action'] = $action; $result['stage'] = $data['STAGE']; if(!empty($data['STEP'])) $result['step'] = $data['STEP']; if(!empty($data['MESSAGE'])) $result['message'] = $data['MESSAGE']; if(!empty($data['PROGRESS'])) $result['progress'] = $data['PROGRESS']; } else { $result["ERROR"] = implode(',
\n', $res->getErrorMessages()); } break; default: $result["ERROR"] = "Error! Wrong action!"; break; } } else { if($result["ERROR"] == '') $result["ERROR"] = "Error! Access denied"; } if($result["ERROR"] <> '') $result["RESULT"] = "ERROR"; else $result["RESULT"] = "OK"; if(mb_strtolower(SITE_CHARSET) != 'utf-8') $result = \Bitrix\Main\Text\Encoding::convertEncoding($result, SITE_CHARSET, 'utf-8'); $result = json_encode($result); header('Content-Type: application/json'); die($result);