2022-11-11 05:28:49 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2022-11-11 05:28:49 +01:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services\Bank;
|
|
|
|
|
|
|
|
use App\Libraries\MultiDB;
|
|
|
|
use App\Models\BankTransaction;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
2022-11-20 03:12:33 +01:00
|
|
|
use Illuminate\Queue\Middleware\WithoutOverlapping;
|
2022-11-11 05:28:49 +01:00
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
2023-01-16 01:59:24 +01:00
|
|
|
class BankMatchingService implements ShouldQueue
|
2022-11-11 05:28:49 +01:00
|
|
|
{
|
2022-11-27 09:03:28 +01:00
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
2023-02-16 02:36:09 +01:00
|
|
|
public function __construct(public $company_id, public $db)
|
|
|
|
{
|
|
|
|
}
|
2022-11-11 05:28:49 +01:00
|
|
|
|
2022-11-27 09:03:28 +01:00
|
|
|
public function handle() :void
|
2022-11-11 05:28:49 +01:00
|
|
|
{
|
|
|
|
MultiDB::setDb($this->db);
|
|
|
|
|
2023-08-06 09:35:19 +02:00
|
|
|
BankTransaction::query()->where('company_id', $this->company_id)
|
2022-11-20 03:12:33 +01:00
|
|
|
->where('status_id', BankTransaction::STATUS_UNMATCHED)
|
|
|
|
->cursor()
|
2023-02-16 02:36:09 +01:00
|
|
|
->each(function ($bt) {
|
2022-11-20 03:55:19 +01:00
|
|
|
(new BankService($bt))->processRules();
|
2022-11-20 03:12:33 +01:00
|
|
|
});
|
2022-11-11 05:28:49 +01:00
|
|
|
}
|
|
|
|
|
2023-02-09 02:10:08 +01:00
|
|
|
public function middleware()
|
2023-02-16 02:36:09 +01:00
|
|
|
{
|
2023-02-09 02:10:08 +01:00
|
|
|
return [(new WithoutOverlapping($this->company_id))];
|
2022-11-27 09:12:00 +01:00
|
|
|
}
|
2022-11-11 05:28:49 +01:00
|
|
|
}
|