changed schedule for late invoices to 1, and 15th of the month

This commit is contained in:
2021-04-13 01:20:03 +09:00
parent cab5a4b2ed
commit 8a2efb21a0

View File

@@ -87,7 +87,10 @@ class Kernel extends ConsoleKernel
->hourlyAt('15');
$schedule->job(new UpdateMiningTaxesLateInvoices)
->timezone('UTC')
->dailyAt('16:00');
->monthlyOn(1, '16:00');
$schedule->job(new UpdateMiningTaxesLateInvoices)
->timezone('UTC')
->monthlyOn(15, '16:00');
}
/**