From a16d7ad16b4448eab3a4b4bdecef06820f04bb10 Mon Sep 17 00:00:00 2001 From: Vladimir Fomichev Date: Mon, 26 Jan 2026 10:31:49 +0300 Subject: [PATCH] =?utf8?q?=D0=9E=D1=87=D0=B8=D1=81=D1=82=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- erp24/services/OrderControlReportService.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/erp24/services/OrderControlReportService.php b/erp24/services/OrderControlReportService.php index 14f41b46..ccb01b59 100644 --- a/erp24/services/OrderControlReportService.php +++ b/erp24/services/OrderControlReportService.php @@ -52,12 +52,12 @@ class OrderControlReportService /** * Telegram bot token для development */ - private const TELEGRAM_BOT_DEV = '8063257458:AAGnMf4cxwJWlYLF1wS_arn4PrOaLs9ERQQ'; + private const TELEGRAM_BOT_DEV = ''; /** * Telegram bot token для production */ - private const TELEGRAM_BOT_PROD = '5456741805:AAG7xOSiYDwUdV5NMb2v9vh8CWzEczDP4yU'; + private const TELEGRAM_BOT_PROD = ''; /** * Конфигурация отчёта @@ -1400,8 +1400,8 @@ class OrderControlReportService { if ($this->isDevEnvironment()) { return $this->config['telegram_chat_id_dev'] - ?? getenv('TELEGRAM_ORDER_CONTROL_CHAT_ID_DEV') - ?: TelegramService::CHAT_CHANNEL_ID; + ?? getenv('TELEGRAM_ORDER_CONTROL_CHAT_ID_DEV') ?: ''; + } return $this->config['telegram_chat_id_prod'] ?? getenv('TELEGRAM_ORDER_CONTROL_CHAT_ID_PROD') -- 2.39.5