Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/cvetdv.ru/bitrix/modules/sale/lib/delivery/restrictions/ |
Upload File : |
<?php namespace Bitrix\Sale\Delivery\Restrictions; use Bitrix\Main\Localization\Loc; use Bitrix\Sale\Location\GroupLocationTable; use Bitrix\Sale\Location\LocationTable; use Bitrix\Sale\Shipment; Loc::loadMessages(__FILE__); /** * Class ExcludeLocation * Exclude delivery by location(s) * @package Bitrix\Sale\Delivery\Restrictions */ class ExcludeLocation extends ByLocation { public static $easeSort = 200; public static function getClassTitle() { return Loc::getMessage("SALE_DLVR_RSTR_EX_LOCATION_NAME"); } public static function getClassDescription() { return Loc::getMessage("SALE_DLVR_RSTR_EX_LOCATION_DESCRIPT"); } protected static function getD2LClass() { return '\Bitrix\Sale\Delivery\DeliveryLocationExcludeTable'; } /** * This function should accept only location CODE, not ID, being a part of modern API * @inheritdoc */ public static function check($locationCode, array $restrictionParams, $deliveryId = 0) { return !parent::check($locationCode, $restrictionParams, $deliveryId); } public static function getParamsStructure($deliveryId = 0) { $result = array( "LOCATION" => array( "TYPE" => "LOCATION_MULTI_EXCLUDE" ) ); if($deliveryId > 0 ) { $result["LOCATION"]["DELIVERY_ID"] = $deliveryId; } return $result; } /** * @param Shipment $shipment * @param array $restrictionFields * @return array */ public static function filterServicesArray(Shipment $shipment, array $restrictionFields) { if(empty($restrictionFields)) return array(); $shpLocCode = self::extractParams($shipment); //if location not defined in shipment if($shpLocCode === '') return array_keys($restrictionFields); $res = LocationTable::getList(array( 'filter' => array('=CODE' => $shpLocCode), 'select' => array('CODE', 'LEFT_MARGIN', 'RIGHT_MARGIN') )); //if location doesn't exists if(!$shpLocParams = $res->fetch()) return array_keys($restrictionFields); $srvLocCodesCompat = static::getLocationsCompat($restrictionFields, $shpLocParams['LEFT_MARGIN'], $shpLocParams['RIGHT_MARGIN']); foreach($srvLocCodesCompat as $locCode => $deliveries) { foreach($deliveries as $deliveryId) { if(isset($restrictionFields[$deliveryId])) { unset($restrictionFields[$deliveryId]); } } } return array_keys($restrictionFields); } }