mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
f712b789ca
* fix typo * php-cs traits * CS fixer pass * Password protect User routes * Implement checks to prevent editing a deleted record * Clean up payment flows * Fixes for tests
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) 2019. 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();
|
|
}
|
|
});
|
|
}
|
|
}
|