2 Commits

Author SHA1 Message Date
4ca965ccb1 Merge pull request 'chnaged time for invoice in transit' (#167) from ranjith-dev into master
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 10s
Reviewed-on: #167
2026-01-06 06:36:03 +00:00
dhanabalan
def447e12b chnaged time for invoice in transit
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 11s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 10s
Gemini PR Review / review (pull_request) Failing after 31s
Laravel Pint / pint (pull_request) Successful in 3m31s
Laravel Larastan / larastan (pull_request) Failing after 13m46s
2026-01-06 12:05:52 +05:30

View File

@@ -209,7 +209,7 @@ class Scheduler extends Command
} }
break; break;
case 'Daily': case 'Daily':
if (now()->format('H:i') == '08:00') { if (now()->format('H:i') == '12:07') {
\Artisan::call('send:invoice-transit-report', [ \Artisan::call('send:invoice-transit-report', [
'schedule_type' => $rule->schedule_type, 'schedule_type' => $rule->schedule_type,
'plant' => $rule->plant, 'plant' => $rule->plant,
@@ -220,7 +220,6 @@ class Scheduler extends Command
} }
} }
/** /**
* Helper to call Artisan commands with parameters. * Helper to call Artisan commands with parameters.
*/ */