mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Do no add duplicate Task Statuses if they already exist
This commit is contained in:
parent
0f10c4b8dd
commit
d1c4da1d64
@ -48,6 +48,9 @@ class CreateCompanyTaskStatuses
|
||||
|
||||
MultiDB::setDb($this->company->db);
|
||||
|
||||
if(TaskStatus::where('company_id', $this->company->id)->count() > 0)
|
||||
return;
|
||||
|
||||
$task_statuses = [
|
||||
['name' => ctrans('texts.backlog'), 'company_id' => $this->company->id, 'user_id' => $this->user->id, 'created_at' => now(), 'updated_at' => now(), 'status_order' => 1],
|
||||
['name' => ctrans('texts.ready_to_do'), 'company_id' => $this->company->id, 'user_id' => $this->user->id, 'created_at' => now(), 'updated_at' => now(), 'status_order' => 2],
|
||||
|
76
app/Jobs/Util/RefreshPdfs.php
Normal file
76
app/Jobs/Util/RefreshPdfs.php
Normal file
@ -0,0 +1,76 @@
|
||||
<?php
|
||||
/**
|
||||
* Invoice Ninja (https://invoiceninja.com).
|
||||
*
|
||||
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||||
*
|
||||
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
||||
*
|
||||
* @license https://www.elastic.co/licensing/elastic-license
|
||||
*/
|
||||
|
||||
namespace App\Jobs\Util;
|
||||
|
||||
use App\Jobs\Entity\CreateEntityPdf;
|
||||
use App\Jobs\Util\UnlinkFile;
|
||||
use App\Libraries\MultiDB;
|
||||
use App\Models\Account;
|
||||
use App\Models\Company;
|
||||
use App\Models\CreditInvitation;
|
||||
use App\Models\InvoiceInvitation;
|
||||
use App\Models\QuoteInvitation;
|
||||
use App\Utils\Ninja;
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Foundation\Bus\Dispatchable;
|
||||
use Illuminate\Queue\InteractsWithQueue;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Storage;
|
||||
|
||||
class RefreshPdfs implements ShouldQueue
|
||||
{
|
||||
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||||
|
||||
public $company;
|
||||
|
||||
public function __construct(Company $company)
|
||||
{
|
||||
$this->company = $company;
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the job.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
|
||||
MultiDB::setDb($this->company->db);
|
||||
|
||||
|
||||
InvoiceInvitation::where('company_id', $this->company->id)->cursor()->each(function ($invitation) {
|
||||
|
||||
nlog("generating invoice pdf for {$invitation->invoice_id}");
|
||||
CreateEntityPdf::dispatch($invitation);
|
||||
|
||||
});
|
||||
|
||||
QuoteInvitation::where('company_id', $this->company->id)->cursor()->each(function ($invitation) {
|
||||
|
||||
nlog("generating quote pdf for {$invitation->quote_id}");
|
||||
CreateEntityPdf::dispatch($invitation);
|
||||
|
||||
});
|
||||
|
||||
|
||||
CreditInvitation::where('company_id', $this->company->id)->cursor()->each(function ($invitation) {
|
||||
|
||||
nlog("generating credit pdf for {$invitation->credit_id}");
|
||||
CreateEntityPdf::dispatch($invitation);
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user