From 18ebf4a8951f0a11f43d2916cd6b3c663f841a87 Mon Sep 17 00:00:00 2001 From: developer Date: Fri, 3 Apr 2026 15:51:22 +0800 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D1=8B=20=D1=82=D1=80=D0=B5=D0=B9=D1=82=D1=8B=20=D0=B8=20?= =?UTF-8?q?=D1=82=D0=B0=D0=B1=D0=BB=D0=B8=D1=86=D1=8B=20=D0=B4=D0=BB=D1=8F?= =?UTF-8?q?=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82=D1=8B=20=D1=81=20plan7=20?= =?UTF-8?q?=D0=B8=20=D0=BE=D1=82=D0=BF=D1=80=D0=B0=D0=B2=D0=BA=D0=B8=20?= =?UTF-8?q?=D0=B2=20=D0=B1=D0=B8=D1=82=D1=80=D0=B8=D0=BA=D1=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Modules/Bitrix/Models/SendDeal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Modules/Bitrix/Models/SendDeal.php b/app/Modules/Bitrix/Models/SendDeal.php index 8bc7449..6300902 100644 --- a/app/Modules/Bitrix/Models/SendDeal.php +++ b/app/Modules/Bitrix/Models/SendDeal.php @@ -14,7 +14,7 @@ public function __construct(Deal $deal) { $this->addDataItem('complexName', $deal->complex->name); if ($plan7Data = $deal->plan7_data) { - $this->addDataItem('plan7', $plan7Data); + $this->addDataItem('plan7', json_decode($plan7Data)); } } }