Files
autocrm/routes/console.php
T
Vasyka 8fdfc9ef85 feat: Part product images + seasonal tire-swap reminders
Part (HasMedia):
- Spatie media `image` single-file collection + imageUrl() helper
- PartResource form: image upload section (image editor, 2 MB max)
- Parts list: circular thumbnail column
- Shop catalog cards: square thumbnail + 📦 placeholder
- Shop part detail: 260px image alongside info, single column when no image

Seasonal tire-swap reminders:
- NotificationDispatcher::tireSeasonalSwap(TireSet) — Telegram first, email
  fallback (when set has a vehicle, via ServiceReminderMail with 'tire_swap'
  type and a size-aware note)
- tires:remind-seasonal artisan command, self-gating to Feb 15-Mar 15
  (notify winter sets stored) and Sep 15-Oct 15 (notify summer sets stored).
  60-day cooldown per client via service_reminders_sent. --force / --dry-run.
- Schedule: weekly Mon 09:30

Tests (6 new):
- outside window no-ops; spring window notifies winter; spring ignores summer;
  autumn notifies summer; cooldown blocks doubles; --force overrides window

Full suite: 106 passed.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-06-02 19:31:24 +00:00

40 lines
1.3 KiB
PHP

<?php
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\Schedule as ScheduleFacade;
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');
// Daily tenant backups at 03:00 — auto-rotates after 14 days.
ScheduleFacade::command('backup:tenants --keep=14')
->dailyAt('03:00')
->withoutOverlapping()
->onOneServer();
// AI chat cleanup — keep tokens spend in check.
ScheduleFacade::command('queue:prune-batches --hours=48')->daily();
ScheduleFacade::command('queue:prune-failed --hours=72')->daily();
// Weekly supplier rating recomputation — Monday 04:00.
ScheduleFacade::command('suppliers:rate --days=90')
->weeklyOn(1, '04:00')
->withoutOverlapping()
->onOneServer();
// Daily service reminders at 09:00 (tenant-local time = UTC; adjust per-tenant later).
ScheduleFacade::command('reminders:send')
->dailyAt('09:00')
->withoutOverlapping()
->onOneServer();
// Weekly seasonal tire-swap reminders — Monday 09:30. Self-gates to the
// Feb 15-Mar 15 / Sep 15-Oct 15 windows; outside them it no-ops.
ScheduleFacade::command('tires:remind-seasonal')
->weeklyOn(1, '09:30')
->withoutOverlapping()
->onOneServer();