WIP: local changes before pull

This commit is contained in:
root
2025-08-26 16:21:53 +05:30
parent e6ba543589
commit 7f0d138383
4 changed files with 11 additions and 43 deletions

View File

@@ -9,17 +9,17 @@ Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');
// Schedule::command('send:invoice-report');
// Schedule::command('send:production-report');
// Schedule::command('send:invoice-report');
// Schedule::command('send:production-report');
app()->booted(function () {
$schedule = app(Schedule::class);
app()->booted(function () {
$schedule = app(Schedule::class);
//Production report scheduling
// Production report scheduling
$productionRules = AlertMailRule::where('module', 'ProductionQuantities')
$productionRules = AlertMailRule::where('module', 'ProductionQuantities')
->where('rule_name', 'ProductionMail')
//->select('plant', 'schedule_type')
->select('plant', 'schedule_type')
->select('plant', 'schedule_type')
->distinct()
->get();
@@ -31,7 +31,7 @@ Artisan::command('inspire', function () {
$command = $schedule->command('send:production-report', [$type, $plantId]);
switch ($type) {
case 'Live':
case 'Live':
$command->everyMinute();
break;
case 'Hourly':
@@ -65,8 +65,8 @@ Artisan::command('inspire', function () {
case 'Daily':
$command->dailyAt('07:59');
break;
}
}
}
});
});