mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
64 lines
1.5 KiB
PHP
64 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Jobs\Invoice;
|
|
|
|
use App\Models\Invoice;
|
|
use App\Libraries\MultiDB;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\Middleware\WithoutOverlapping;
|
|
|
|
class CheckGatewayFee implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
public $tries = 1;
|
|
|
|
/**
|
|
* @param $invoice_id
|
|
* @param string $db
|
|
*/
|
|
public function __construct(public int $invoice_id, public string $db)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
nlog("Checking Gateway Fees for Invoice Id = {$this->invoice_id}");
|
|
|
|
MultiDB::setDb($this->db);
|
|
|
|
$i = Invoice::withTrashed()->find($this->invoice_id);
|
|
|
|
if (!$i) {
|
|
return;
|
|
}
|
|
|
|
if ($i->status_id == Invoice::STATUS_SENT) {
|
|
$i->service()->removeUnpaidGatewayFees();
|
|
}
|
|
}
|
|
|
|
public function middleware()
|
|
{
|
|
return [(new WithoutOverlapping($this->invoice_id.$this->db))];
|
|
}
|
|
}
|