From 2b91701d2c9cb370e906ae1475e596014231e157 Mon Sep 17 00:00:00 2001 From: Aleksey Filippov Date: Thu, 13 Mar 2025 12:57:51 +0300 Subject: [PATCH] =?utf8?q?=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB=D0=B5?= =?utf8?q?=D0=BD=D0=B8=D0=B5=20,=20=D0=BE=D1=82=D0=BA=D0=BB=D1=8E=D1=87?= =?utf8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B2=D0=B0=D0=BB=D0=B8=D0=B4=D0=B0?= =?utf8?q?=D1=86=D0=B8=D0=B8=20=D0=BF=D1=80=D0=B8=20=D1=81=D0=BE=D1=85?= =?utf8?q?=D1=80=D0=B0=D0=BD=D0=B5=D0=BD=D0=B8=D0=B8=20=D0=B7=D0=B0=D0=BA?= =?utf8?q?=D0=B0=D0=B7=D0=BE=D0=B2=20=D0=B2=20=D0=B0=D0=BC=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- erp24/api2/controllers/DataController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erp24/api2/controllers/DataController.php b/erp24/api2/controllers/DataController.php index 532d70bb..36f90d30 100644 --- a/erp24/api2/controllers/DataController.php +++ b/erp24/api2/controllers/DataController.php @@ -2117,7 +2117,7 @@ class DataController extends BaseController $ordersAmo = OrdersAmo::find()->where(['id' => $arr2["order_id"]])->one(); if ($ordersAmo) { $ordersAmo->check_id_arr = $arr2["id"]; - $ordersAmo->save(); + $ordersAmo->save(false); if ($ordersAmo->getErrors()) { LogService::apiErrorLog(json_encode(["error_id" => 36, "error" => $ordersAmo->getErrors()], JSON_UNESCAPED_UNICODE)); } -- 2.39.5