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

Merged
korina.cordero merged 1 commit from 715-modify-number-of-days-for-sending-warranty-sms-expiry-notification into master 2022-10-27 12:56:34 +00:00

View file

@ -25,7 +25,7 @@ class WarrantySMSCommand extends Command
protected function configure() protected function configure()
{ {
$this->setName('warranty:sms') $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.') ->setHelp('Sends warranty SMS.')
->addArgument('date', InputArgument::OPTIONAL, 'Date to use as basis of expiration. Defaults to current date.'); ->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(); $date = new DateTime();
// -1 month // -1 month
$date->modify('-1 month'); $date->modify('-45 day');
$warrs = $this->em->getRepository(Warranty::class)->findBy(['date_expire' => $date]); $warrs = $this->em->getRepository(Warranty::class)->findBy(['date_expire' => $date]);