mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
193 lines
5.8 KiB
PHP
193 lines
5.8 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Models\Account;
|
|
use App\Models\Invoice;
|
|
use App\Models\RecurringExpense;
|
|
use App\Ninja\Repositories\InvoiceRepository;
|
|
use App\Ninja\Repositories\RecurringExpenseRepository;
|
|
use App\Services\PaymentService;
|
|
use App\Jobs\SendInvoiceEmail;
|
|
use DateTime;
|
|
use Illuminate\Console\Command;
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
use Auth;
|
|
use Exception;
|
|
use Utils;
|
|
|
|
/**
|
|
* Class SendRecurringInvoices.
|
|
*/
|
|
class SendRecurringInvoices extends Command
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $name = 'ninja:send-invoices';
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $description = 'Send recurring invoices';
|
|
|
|
/**
|
|
* @var InvoiceRepository
|
|
*/
|
|
protected $invoiceRepo;
|
|
|
|
/**
|
|
* @var PaymentService
|
|
*/
|
|
protected $paymentService;
|
|
|
|
/**
|
|
* SendRecurringInvoices constructor.
|
|
*
|
|
* @param InvoiceRepository $invoiceRepo
|
|
* @param PaymentService $paymentService
|
|
*/
|
|
public function __construct(InvoiceRepository $invoiceRepo, PaymentService $paymentService, RecurringExpenseRepository $recurringExpenseRepo)
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->invoiceRepo = $invoiceRepo;
|
|
$this->paymentService = $paymentService;
|
|
$this->recurringExpenseRepo = $recurringExpenseRepo;
|
|
}
|
|
|
|
public function fire()
|
|
{
|
|
$this->info(date('r') . ' Running SendRecurringInvoices...');
|
|
|
|
if ($database = $this->option('database')) {
|
|
config(['database.default' => $database]);
|
|
}
|
|
|
|
$this->resetCounters();
|
|
$this->createInvoices();
|
|
$this->billInvoices();
|
|
$this->createExpenses();
|
|
|
|
$this->info(date('r') . ' Done');
|
|
}
|
|
|
|
private function resetCounters()
|
|
{
|
|
$accounts = Account::where('reset_counter_frequency_id', '>', 0)
|
|
->orderBy('id', 'asc')
|
|
->get();
|
|
|
|
foreach ($accounts as $account) {
|
|
$account->checkCounterReset();
|
|
}
|
|
}
|
|
|
|
private function createInvoices()
|
|
{
|
|
$today = new DateTime();
|
|
|
|
$invoices = Invoice::with('account.timezone', 'invoice_items', 'client', 'user')
|
|
->whereRaw('is_deleted IS FALSE AND deleted_at IS NULL AND is_recurring IS TRUE AND is_public IS TRUE AND frequency_id > 0 AND start_date <= ? AND (end_date IS NULL OR end_date >= ?)', [$today, $today])
|
|
->orderBy('id', 'asc')
|
|
->get();
|
|
$this->info(date('r ') . $invoices->count() . ' recurring invoice(s) found');
|
|
|
|
foreach ($invoices as $recurInvoice) {
|
|
$shouldSendToday = $recurInvoice->shouldSendToday();
|
|
|
|
if (! $shouldSendToday) {
|
|
continue;
|
|
}
|
|
|
|
$this->info(date('r') . ' Processing Invoice: '. $recurInvoice->id);
|
|
|
|
$account = $recurInvoice->account;
|
|
$account->loadLocalizationSettings($recurInvoice->client);
|
|
Auth::loginUsingId($recurInvoice->activeUser()->id);
|
|
|
|
try {
|
|
$invoice = $this->invoiceRepo->createRecurringInvoice($recurInvoice);
|
|
if ($invoice && ! $invoice->isPaid() && $account->auto_email_invoice) {
|
|
$this->info(date('r') . ' Not billed - Sending Invoice');
|
|
dispatch(new SendInvoiceEmail($invoice, $invoice->user_id));
|
|
} elseif ($invoice) {
|
|
$this->info(date('r') . ' Successfully billed invoice');
|
|
}
|
|
} catch (Exception $exception) {
|
|
$this->info(date('r') . ' Error: ' . $exception->getMessage());
|
|
Utils::logError($exception);
|
|
}
|
|
|
|
Auth::logout();
|
|
}
|
|
}
|
|
|
|
private function billInvoices()
|
|
{
|
|
$today = new DateTime();
|
|
|
|
$delayedAutoBillInvoices = Invoice::with('account.timezone', 'recurring_invoice', 'invoice_items', 'client', 'user')
|
|
->whereRaw('is_deleted IS FALSE AND deleted_at IS NULL AND is_recurring IS FALSE AND is_public IS TRUE
|
|
AND balance > 0 AND due_date = ? AND recurring_invoice_id IS NOT NULL',
|
|
[$today->format('Y-m-d')])
|
|
->orderBy('invoices.id', 'asc')
|
|
->get();
|
|
$this->info(date('r ') . $delayedAutoBillInvoices->count() . ' due recurring invoice instance(s) found');
|
|
|
|
/** @var Invoice $invoice */
|
|
foreach ($delayedAutoBillInvoices as $invoice) {
|
|
if ($invoice->isPaid()) {
|
|
continue;
|
|
}
|
|
|
|
if ($invoice->getAutoBillEnabled() && $invoice->client->autoBillLater()) {
|
|
$this->info(date('r') . ' Processing Autobill-delayed Invoice: ' . $invoice->id);
|
|
Auth::loginUsingId($invoice->activeUser()->id);
|
|
$this->paymentService->autoBillInvoice($invoice);
|
|
Auth::logout();
|
|
}
|
|
}
|
|
}
|
|
|
|
private function createExpenses()
|
|
{
|
|
$today = new DateTime();
|
|
|
|
$expenses = RecurringExpense::with('client')
|
|
->whereRaw('is_deleted IS FALSE AND deleted_at IS NULL AND start_date <= ? AND (end_date IS NULL OR end_date >= ?)', [$today, $today])
|
|
->orderBy('id', 'asc')
|
|
->get();
|
|
$this->info(date('r ') . $expenses->count() . ' recurring expenses(s) found');
|
|
|
|
foreach ($expenses as $expense) {
|
|
$shouldSendToday = $expense->shouldSendToday();
|
|
|
|
if (! $shouldSendToday) {
|
|
continue;
|
|
}
|
|
|
|
$this->info(date('r') . ' Processing Expense: '. $expense->id);
|
|
$this->recurringExpenseRepo->createRecurringExpense($expense);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
protected function getArguments()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
protected function getOptions()
|
|
{
|
|
return [
|
|
['database', null, InputOption::VALUE_OPTIONAL, 'Database', null],
|
|
];
|
|
}
|
|
}
|