Обновлен стартовый экран

Переписаны запросы для статистики, отчетов
Добавлена интеграция отчета сестры
This commit is contained in:
brusnitsyn
2026-05-28 22:10:00 +09:00
parent 90e0d04dfd
commit 739168d427
96 changed files with 6663 additions and 1465 deletions

View File

@@ -91,7 +91,7 @@ class UnifiedMigrationPatient extends Model
->limit(1)->first();
}
public function getAdmittedInCurrentAttribute(): bool
public function getAdmittedInCurrentAttribute(DateRange $dateRange): bool
{
// Получаем дату поступления из последнего движения
$ingoing = $this->ingoing_date;
@@ -101,7 +101,7 @@ class UnifiedMigrationPatient extends Model
}
$ingoingLocal = Carbon::parse($ingoing)->setTimezone(config('app.timezone', 'Europe/Moscow'));
$now = Carbon::now(config('app.timezone', 'Europe/Moscow'));
$now = $dateRange->endDate;//Carbon::now(config('app.timezone', 'Europe/Moscow'));
// Окно смены: вчера 09:00 → сегодня 09:00
$shiftStart = $now->copy()->subDay()->setTime(9, 0);