From 45c7356c3712e83e0556dfcf7c8c70ea32ab2c30 Mon Sep 17 00:00:00 2001 From: fomichev Date: Tue, 10 Dec 2024 17:19:42 +0300 Subject: [PATCH] =?utf8?q?=D0=9F=D1=80=D0=B0=D0=B2=D0=BA=D0=B8=20=D0=BF?= =?utf8?q?=D0=BE=20=D1=82=D0=B0=D0=B1=D0=BB=D0=B8=D1=86=D0=B0=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- erp24/migrations/m241210_090957_waybill_write_offs.php | 2 -- erp24/records/WaybillWriteOffs.php | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/erp24/migrations/m241210_090957_waybill_write_offs.php b/erp24/migrations/m241210_090957_waybill_write_offs.php index 0fc4ecc8..c5d058a2 100644 --- a/erp24/migrations/m241210_090957_waybill_write_offs.php +++ b/erp24/migrations/m241210_090957_waybill_write_offs.php @@ -23,7 +23,6 @@ class m241210_090957_waybill_write_offs extends Migration 'status' => $this->integer()->notNull()->defaultValue(1)->comment('Статус документа'), 'created_admin_id' => $this->integer()->notNull()->comment('Создан пользователем'), 'updated_admin_id' => $this->integer()->null()->comment('Изменён пользователем'), - 'confirm_admin_id' => $this->integer()->null()->comment('Подтвержден пользователем'), 'store_id' => $this->integer()->notNull()->comment('id магазина в ERP'), 'store_guid' => $this->string(100)->notNull()->comment('GUID магазина из 1с'), 'number' => $this->string(100)->notNull()->comment('Название документа'), @@ -36,7 +35,6 @@ class m241210_090957_waybill_write_offs extends Migration 'created_at' => $this->dateTime()->notNull()->comment('Дата создания'), 'updated_at' => $this->dateTime()->null()->comment('Дата обновления'), 'deleted_at' => $this->dateTime()->null()->comment('Дата удаление'), - 'confirm_at' => $this->string(100)->null()->comment('Дата подтверждения'), 'send_at' => $this->dateTime()->null()->comment('Дата отправления в 1с'), 'active' => $this->tinyInteger()->notNull()->defaultValue(1)->comment('Активность'), 'deleted_admin_id' => $this->integer()->null()->comment('Удален пользователем'), diff --git a/erp24/records/WaybillWriteOffs.php b/erp24/records/WaybillWriteOffs.php index 3b67005b..95121c61 100644 --- a/erp24/records/WaybillWriteOffs.php +++ b/erp24/records/WaybillWriteOffs.php @@ -13,7 +13,7 @@ use Yii; * @property int $status Статус документа * @property int $created_admin_id Создан пользователем * @property int|null $updated_admin_id Изменён пользователем - * @property int|null $confirm_admin_id Подтвержден пользователем + * @property int $store_id id магазина в ERP * @property string $store_guid GUID магазина из 1с * @property string $number Название документа @@ -26,7 +26,7 @@ use Yii; * @property string $created_at Дата создания * @property string|null $updated_at Дата обновления * @property string|null $deleted_at Дата удаление - * @property string|null $confirm_at Дата подтверждения + * @property string|null $send_at Дата отправления в 1с * @property int $active Активность * @property int|null $deleted_admin_id Удален пользователем -- 2.39.5