Update time settings (from 8 to 10) in SendInvoiceDataReport and InvoiceDataMail for daily schedule to improve report accuracy

This commit is contained in:
dhanabalan
2025-11-05 13:20:50 +05:30
parent f31ed4090b
commit ce2acaa642
2 changed files with 4 additions and 5 deletions

View File

@@ -80,8 +80,8 @@ class SendInvoiceDataReport extends Command
}
if (strtolower($scheduleType) == 'daily') {
$startDate = now()->subDay()->setTime(8, 0, 0);
$endDate = now()->setTime(8, 0, 0);
$startDate = now()->subDay()->setTime(10, 0, 0);//8:00
$endDate = now()->setTime(10, 0, 0);//10
} else {
$startDate = now()->setTime(8, 0, 0);
$endDate = now()->copy()->addDay()->setTime(8, 0, 0);

View File

@@ -44,8 +44,8 @@ class InvoiceDataMail extends Mailable
$greeting = "Dear Sir/Madam,<br><br>Kindly find the attached invoice pending report status,";
if ($this->scheduleType == 'Daily') {
$fromDate = (new DateTime('yesterday 08:00'))->format('d/m/Y H:i') . ':000';
$toDate = (new DateTime('today 07:59'))->format('d/m/Y H:i') . ':999';
$fromDate = (new DateTime('yesterday 10:00'))->format('d/m/Y H:i') . ':000';//08:00
$toDate = (new DateTime('today 09:59'))->format('d/m/Y H:i') . ':999';//07:59
$reportPeriod = "The following report presents results from: $fromDate to $toDate.";
$greeting .= $reportPeriod;
}
@@ -85,5 +85,4 @@ class InvoiceDataMail extends Mailable
{
return [];
}
}