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/rospirotorg.ru/bitrix/modules/sale/lib/ |
Upload File : |
<?php namespace Bitrix\Sale; use Bitrix\Sale\Internals\Entity; /** * Class ShipmentPropertyValue * @package Bitrix\Sale */ class ShipmentPropertyValue extends EntityPropertyValue { /** * Returns OnSaved event name * @return string */ protected static function getOnSavedEventName(): string { return 'OnSaleShipmentPropertyValueEntitySaved'; } /** * @return string Property class name. */ protected static function getPropertyClassName(): string { $registry = Registry::getInstance(static::getRegistryType()); return $registry->getShipmentPropertyClassName(); } /** * @return string \Bitrix\Sale\Registry::ENTITY_SHIPMENT */ protected static function getEntityType(): string { return \Bitrix\Sale\Registry::ENTITY_SHIPMENT; } /** * @param Entity $shipment * @return array */ protected static function extractDeliveryIdList(Entity $shipment) { if (!$shipment instanceof Shipment) { return []; } return [$shipment->getDeliveryId()]; } protected static function extractTpLandingIdList(Entity $entity) : array { if (!$entity instanceof Shipment) { return []; } return $entity->getOrder()->getTradeBindingCollection()->getTradingPlatformIdList(); } protected static function extractTradingPlatformIdList(Entity $entity): array { if (!$entity instanceof Shipment) { return []; } return $entity->getOrder()->getTradeBindingCollection()->getTradingPlatformIdList(); } /** * @param array|null $property * @param array $value * @param array|null $relation * @return EntityPropertyValue * @throws \Bitrix\Main\ArgumentException */ protected static function createPropertyValueObject( array $property = null, array $value = [], array $relation = null ): EntityPropertyValue { $registry = Registry::getInstance(static::getRegistryType()); $propertyValueClassName = $registry->getShipmentPropertyValueClassName(); return new $propertyValueClassName($property, $value, $relation); } /** * @param Shipment $shipment * @return array */ public static function loadForShipment(Shipment $shipment): array { [$properties, $propertyValues, $propRelation, $propertyValuesMap] = static::loadFromDb($shipment); return static::createPropertyValuesObjects($properties, $propertyValues, $propRelation, $propertyValuesMap); } /** * @return string */ public static function getEntityEventName() { return 'SaleShipmentPropertyValue'; } }