2020-04-28 01:50:54 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-04-28 01:50:54 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Jobs\Quote;
|
|
|
|
|
|
|
|
use App\Mail\Quote\QuoteWasApproved;
|
|
|
|
use App\Models\Client;
|
2020-09-06 11:38:10 +02:00
|
|
|
use App\Models\Quote;
|
2020-04-28 01:50:54 +02:00
|
|
|
use App\Repositories\BaseRepository;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
class QuoteWorkflowSettings implements ShouldQueue
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
|
|
|
|
public $quote;
|
|
|
|
public $client;
|
|
|
|
public $base_repository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct(Quote $quote, Client $client = null)
|
|
|
|
{
|
|
|
|
$this->quote = $quote;
|
|
|
|
$this->client = $client ?? $quote->client;
|
|
|
|
$this->base_repository = new BaseRepository();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
if ($this->client->getSetting('auto_email_quote')) {
|
|
|
|
$this->quote->invitations->each(function ($invitation, $key) {
|
|
|
|
$this->quote->service()->sendEmail($invitation->contact);
|
2020-09-06 11:38:10 +02:00
|
|
|
});
|
2020-04-28 01:50:54 +02:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-07-22 09:53:14 +02:00
|
|
|
if ($this->client->getSetting('auto_archive_quote')) {
|
|
|
|
$this->base_repository->archive($this->quote);
|
|
|
|
}
|
2020-04-28 01:50:54 +02:00
|
|
|
}
|
|
|
|
}
|