mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
66 lines
1.6 KiB
PHP
66 lines
1.6 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\ShouldBeUnique;
|
|
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(public $company_id, public $db){}
|
|
|
|
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();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
/**
|
|
* The unique ID of the job.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function uniqueId()
|
|
{
|
|
return (string)$this->company_id;
|
|
}
|
|
|
|
}
|