mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
63 lines
1.7 KiB
PHP
63 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Services\Bank;
|
|
|
|
use App\Factory\ExpenseCategoryFactory;
|
|
use App\Factory\ExpenseFactory;
|
|
use App\Libraries\MultiDB;
|
|
use App\Models\BankTransaction;
|
|
use App\Models\Company;
|
|
use App\Models\ExpenseCategory;
|
|
use App\Models\Invoice;
|
|
use App\Services\Bank\BankService;
|
|
use App\Utils\Traits\GeneratesCounter;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\Middleware\WithoutOverlapping;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Carbon;
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
class BankMatchingService implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
public function __construct(protected int $company_id, protected string $db){
|
|
$this->company_id = $company_id;
|
|
$this->db = $db;
|
|
$this->middleware_key = "bank_match_rate:{$this->company_id}";
|
|
}
|
|
|
|
public function handle() :void
|
|
{
|
|
|
|
MultiDB::setDb($this->db);
|
|
|
|
BankTransaction::where('company_id', $this->company_id)
|
|
->where('status_id', BankTransaction::STATUS_UNMATCHED)
|
|
->cursor()
|
|
->each(function ($bt){
|
|
|
|
(new BankService($bt))->processRules();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
public function middleware()
|
|
{
|
|
return [new WithoutOverlapping($this->middleware_key)];
|
|
}
|
|
}
|