From 7ec32eb0970508218f9858cc5dd3ebb930518a24 Mon Sep 17 00:00:00 2001 From: brusnitsyn Date: Mon, 13 Jul 2026 17:05:25 +0900 Subject: [PATCH] =?UTF-8?q?=D0=90=D0=B2=D1=82=D0=BE=D0=B3=D0=B5=D0=BD?= =?UTF-8?q?=D0=B5=D1=80=D0=B0=D1=86=D0=B8=D1=8F=20=D0=BE=D1=82=D1=87=D0=B5?= =?UTF-8?q?=D1=82=D0=BE=D0=B2=20=D0=BD=D0=B0=2007:29=20=D0=B8=2008:59?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routes/console.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/routes/console.php b/routes/console.php index d17f1ce..20498a9 100644 --- a/routes/console.php +++ b/routes/console.php @@ -17,3 +17,13 @@ Schedule::command('nurse:autofill') ->dailyAt('08:59') ->timezone(config('app.timezone', 'Europe/Moscow')) ->withoutOverlapping(); + +// Каждый день в 07:29 — досоздаём отчёты отделениям, у которых нет отчёта за текущую смену +Schedule::command('duty:autofill') + ->dailyAt('07:29') + ->timezone(config('app.timezone', 'Europe/Moscow')) + ->withoutOverlapping(); +Schedule::command('nurse:autofill') + ->dailyAt('07:29') + ->timezone(config('app.timezone', 'Europe/Moscow')) + ->withoutOverlapping();