2020-04-28 01:50:54 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @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\Invoice;
|
|
|
|
|
|
|
|
use App\Mail\Invoices\InvoiceWasPaid;
|
|
|
|
use App\Models\Client;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
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;
|
|
|
|
use Illuminate\Support\Facades\Mail;
|
|
|
|
|
|
|
|
class InvoiceWorkflowSettings implements ShouldQueue
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
|
|
|
|
public $invoice;
|
|
|
|
public $client;
|
|
|
|
private $base_repository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct(Invoice $invoice, Client $client = null)
|
|
|
|
{
|
|
|
|
$this->invoice = $invoice;
|
|
|
|
$this->client = $client ?? $invoice->client;
|
|
|
|
$this->base_repository = new BaseRepository();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
if ($this->client->getSetting('auto_archive_invoice')) {
|
|
|
|
/** Throws: Payment amount xxx does not match invoice totals. */
|
|
|
|
$this->base_repository->archive($this->invoice);
|
|
|
|
}
|
|
|
|
|
2020-05-04 13:13:46 +02:00
|
|
|
//@TODO this setting should only fire for recurring invoices
|
|
|
|
// if ($this->client->getSetting('auto_email_invoice')) {
|
|
|
|
// $this->invoice->invitations->each(function ($invitation, $key) {
|
|
|
|
// $this->invoice->service()->sendEmail($invitation->contact);
|
|
|
|
// });
|
|
|
|
// }
|
2020-04-28 01:50:54 +02:00
|
|
|
}
|
|
|
|
}
|