mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
58 lines
1.6 KiB
PHP
58 lines
1.6 KiB
PHP
<?php namespace App\Console\Commands;
|
|
|
|
use DB;
|
|
use DateTime;
|
|
use Illuminate\Console\Command;
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
use App\Models\Account;
|
|
use App\Ninja\Mailers\ContactMailer as Mailer;
|
|
use App\Ninja\Repositories\AccountRepository;
|
|
|
|
class SendRenewalInvoices extends Command
|
|
{
|
|
protected $name = 'ninja:send-renewals';
|
|
protected $description = 'Send renewal invoices';
|
|
protected $mailer;
|
|
protected $accountRepo;
|
|
|
|
public function __construct(Mailer $mailer, AccountRepository $repo)
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->mailer = $mailer;
|
|
$this->accountRepo = $repo;
|
|
}
|
|
|
|
public function fire()
|
|
{
|
|
$this->info(date('Y-m-d').' Running SendRenewalInvoices...');
|
|
$today = new DateTime();
|
|
|
|
$accounts = Account::whereRaw('datediff(curdate(), pro_plan_paid) = 355')->get();
|
|
$this->info(count($accounts).' accounts found');
|
|
|
|
foreach ($accounts as $account) {
|
|
$client = $this->accountRepo->getNinjaClient($account);
|
|
$invitation = $this->accountRepo->createNinjaInvoice($client);
|
|
$this->mailer->sendInvoice($invitation->invoice);
|
|
}
|
|
|
|
$this->info('Done');
|
|
}
|
|
|
|
protected function getArguments()
|
|
{
|
|
return array(
|
|
//array('example', InputArgument::REQUIRED, 'An example argument.'),
|
|
);
|
|
}
|
|
|
|
protected function getOptions()
|
|
{
|
|
return array(
|
|
//array('example', null, InputOption::VALUE_OPTIONAL, 'An example option.', null),
|
|
);
|
|
}
|
|
}
|