Merge branch '715-modify-number-of-days-for-sending-warranty-sms-expiry-notification' into 'master'

Resolve "Modify number of days for sending warranty sms expiry notification"

Closes #715

See merge request jankstudio/resq!830
This commit is contained in:
Kendrick Chan 2022-10-27 12:56:34 +00:00
commit a5640914bf

View file

@ -25,7 +25,7 @@ class WarrantySMSCommand extends Command
protected function configure()
{
$this->setName('warranty:sms')
->setDescription('Sends an SMS message to users whose warranty expired one month ago.')
->setDescription('Sends an SMS message to users whose warranty expired 45 days ago.')
->setHelp('Sends warranty SMS.')
->addArgument('date', InputArgument::OPTIONAL, 'Date to use as basis of expiration. Defaults to current date.');
}
@ -50,7 +50,7 @@ class WarrantySMSCommand extends Command
$date = new DateTime();
// -1 month
$date->modify('-1 month');
$date->modify('-45 day');
$warrs = $this->em->getRepository(Warranty::class)->findBy(['date_expire' => $date]);