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/catalog/lib/restview/ |
Upload File : |
<?php namespace Bitrix\Catalog\RestView; use Bitrix\Rest\Integration\View\Attributes; use Bitrix\Rest\Integration\View\DataType; use Bitrix\Rest\Integration\View\Base; use Bitrix\Catalog\v2\Contractor\Provider\Manager; final class Document extends Base { /** * Returns entity fields. * * @return array */ public function getFields() { $result = [ 'ID' => [ 'TYPE' => DataType::TYPE_INT, 'ATTRIBUTES' => [ Attributes::READONLY, ], ], 'DOC_TYPE' => [ 'TYPE' => DataType::TYPE_CHAR, 'ATTRIBUTES' => [ Attributes::IMMUTABLE, Attributes::REQUIRED, ], ], 'SITE_ID' => [ 'TYPE' => DataType::TYPE_CHAR, ], 'RESPONSIBLE_ID' => [ 'TYPE' => DataType::TYPE_INT, 'ATTRIBUTES' => [ Attributes::REQUIRED_ADD, ], ], 'DATE_MODIFY' => [ 'TYPE' => DataType::TYPE_DATETIME, ], 'DATE_CREATE' => [ 'TYPE' => DataType::TYPE_DATETIME, 'ATTRIBUTES' => [ Attributes::IMMUTABLE, ], ], 'CREATED_BY' => [ 'TYPE' => DataType::TYPE_INT, 'ATTRIBUTES' => [ Attributes::IMMUTABLE, ], ], 'MODIFIED_BY' => [ 'TYPE' => DataType::TYPE_INT, ], 'CURRENCY' => [ 'TYPE' => DataType::TYPE_CHAR, 'ATTRIBUTES' => [ Attributes::REQUIRED, Attributes::IMMUTABLE, ], ], 'STATUS' => [ 'TYPE' => DataType::TYPE_CHAR, 'ATTRIBUTES' => [ Attributes::READONLY, ], ], 'DATE_STATUS' => [ 'TYPE' => DataType::TYPE_DATETIME, 'ATTRIBUTES' => [ Attributes::READONLY, ], ], 'DATE_DOCUMENT' => [ 'TYPE' => DataType::TYPE_DATETIME, ], 'STATUS_BY' => [ 'TYPE' => DataType::TYPE_INT, ], 'TOTAL' => [ 'TYPE' => DataType::TYPE_FLOAT, ], 'COMMENTARY' => [ 'TYPE' => DataType::TYPE_CHAR, ], 'TITLE' => [ 'TYPE' => DataType::TYPE_STRING, ], 'DOC_NUMBER' => [ 'TYPE' => DataType::TYPE_STRING, ], ]; if (!Manager::isActiveProviderExists()) { $result['CONTRACTOR_ID'] = [ 'TYPE' => DataType::TYPE_INT, ]; } return $result; } /** * @inheritDoc */ public function internalizeArguments($name, $arguments): array { $name = mb_strtolower($name); if (!in_array($name, ['fields', 'conductlist', 'cancellist', 'deletelist', 'confirm', 'unconfirm', 'conduct', 'cancel'], true)) { return parent::internalizeArguments($name, $arguments); } return $arguments; } /** * @inheritDoc */ public function externalizeResult($name, $fields): array { $name = mb_strtolower($name); if (!in_array($name, ['fields', 'conductlist', 'cancellist', 'deletelist', 'confirm', 'unconfirm', 'conduct', 'cancel'], true)) { return parent::externalizeResult($name, $fields); } return $fields; } }