mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
957ac9f5d8
* Remove unnecessary save() on invoice * Update copyright * Working on Credit Repository * Implement credits as a paymentable entity * Add credit_id to transformer * fix rules for update payment * Fix random deleted_at keys in transformers * Fix for password_protect check
69 lines
1.9 KiB
PHP
69 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* Quote Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Quote Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Jobs\Quote;
|
|
|
|
use App\Factory\QuoteInvitationFactory;
|
|
use App\Libraries\MultiDB;
|
|
use App\Models\Company;
|
|
use App\Models\Quote;
|
|
use App\Models\QuoteInvitation;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Symfony\Component\Debug\Exception\FatalThrowableError;
|
|
|
|
class CreateQuoteInvitations implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
private $quote;
|
|
|
|
private $company;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(Quote $quote, Company $company)
|
|
{
|
|
$this->quote = $quote;
|
|
|
|
$this->company = $company;
|
|
}
|
|
|
|
public function handle()
|
|
{
|
|
MultiDB::setDB($this->company->db);
|
|
|
|
$contacts = $this->quote->client->contacts;
|
|
|
|
$contacts->each(function ($contact) {
|
|
$invitation = QuoteInvitation::whereCompanyId($this->quote->company_id)
|
|
->whereClientContactId($contact->id)
|
|
->whereQuoteId($this->quote->id)
|
|
->first();
|
|
|
|
if (!$invitation && $contact->send_invoice) {
|
|
$ii = QuoteInvitationFactory::create($this->quote->company_id, $this->quote->user_id);
|
|
$ii->quote_id = $this->quote->id;
|
|
$ii->client_contact_id = $contact->id;
|
|
$ii->save();
|
|
} elseif ($invitation && !$contact->send_invoice) {
|
|
$invitation->delete();
|
|
}
|
|
});
|
|
}
|
|
}
|