mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
62 lines
1.5 KiB
PHP
62 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Models\Account;
|
|
use App\Models\Invoice;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Console\Command;
|
|
|
|
class ResetInvoiceSchemaCounter extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'ninja:reset-invoice-schema-counter
|
|
{account : The ID of the account}
|
|
{--force : Force setting the counter back to "1", regardless if the year changed}';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Reset the invoice schema counter at the turn of the year.';
|
|
|
|
/**
|
|
* @var Invoice
|
|
*/
|
|
protected $invoice;
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @param Invoice $invoice
|
|
*/
|
|
public function __construct(Invoice $invoice)
|
|
{
|
|
parent::__construct();
|
|
$this->invoice = $invoice;
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle()
|
|
{
|
|
$latestInvoice = $this->invoice->latest()->first();
|
|
$invoiceYear = Carbon::parse($latestInvoice->created_at)->year;
|
|
|
|
if(Carbon::now()->year > $invoiceYear || $this->option('force')) {
|
|
$account = Account::find($this->argument('account'))->first();
|
|
$account->invoice_number_counter = 1;
|
|
$account->update();
|
|
$this->info('The counter has been resetted successfully.');
|
|
}
|
|
}
|
|
}
|