mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-12-27 18:30:50 -05:00
86 lines
1.9 KiB
PHP
86 lines
1.9 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\Libraries\MultiDB;
|
|
use App\Models\Company;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class BankService implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
private $company_id;
|
|
|
|
private Company $company;
|
|
|
|
private $db;
|
|
|
|
private $invoices;
|
|
|
|
public function __construct($company_id, $db)
|
|
{
|
|
$this->company_id = $company_id;
|
|
$this->db = $db;
|
|
}
|
|
|
|
public function handle()
|
|
{
|
|
|
|
MultiDB::setDb($this->db);
|
|
|
|
$this->company = Company::find($this->company_id);
|
|
|
|
$this->invoices = $this->company->invoices()->whereIn('status_id', [1,2,3])
|
|
->where('is_deleted', 0)
|
|
->get();
|
|
|
|
}
|
|
|
|
public function match($transactions): array
|
|
{
|
|
|
|
foreach($transactions as $transaction)
|
|
{
|
|
$this->matchIncome($transaction);
|
|
}
|
|
|
|
return $transactions;
|
|
}
|
|
|
|
private function matchExpense()
|
|
{
|
|
|
|
}
|
|
|
|
private function matchIncome($transaction)
|
|
{
|
|
$description = str_replace(" ", "", $transaction->description);
|
|
|
|
$invoice = $this->invoices->first(function ($value, $key) use ($description){
|
|
|
|
return str_contains($value->number, $description);
|
|
|
|
});
|
|
|
|
if($invoice)
|
|
$transaction['invocie_id'] = $invoice->hashed_id;
|
|
|
|
return $transaction;
|
|
}
|
|
|
|
}
|