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/ilovecveti.ru/bitrix/modules/sale/lib/services/company/restrictions/ |
Upload File : |
<?php namespace Bitrix\Sale\Services\Company\Restrictions; use Bitrix\Sale\Internals\CollectableEntity; use Bitrix\Sale\Internals\Entity; use Bitrix\Sale\Order; use Bitrix\Sale\Payment; use Bitrix\Sale\Services\PaySystem\Restrictions; use Bitrix\Sale\Shipment; class Price extends Restrictions\Price { /** * @param Entity $entity * * @return array */ protected static function extractParams(Entity $entity) { /** @var \Bitrix\Sale\PaymentCollection|\Bitrix\Sale\ShipmentCollection|null $collection */ $collection = null; if ($entity instanceof Payment) $collection = $entity->getCollection(); elseif ($entity instanceof Shipment) $collection = $entity->getCollection(); elseif ($entity instanceof Order) { return array('PRICE_PAYMENT' => $entity->getPrice()); } if ($collection) { /** @var \Bitrix\Sale\Order $order */ $order = $collection->getOrder(); return array('PRICE_PAYMENT' => $order->getPrice()); } return array('PRICE_PAYMENT' => null); } }