1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Jobs/Ledger/ClientLedgerBalanceUpdate.php

102 lines
3.3 KiB
PHP
Raw Normal View History

2022-05-15 09:51:06 +02: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-05-15 09:51:06 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Jobs\Ledger;
use App\Libraries\MultiDB;
use App\Models\Client;
use App\Models\Company;
use App\Models\CompanyLedger;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\Middleware\WithoutOverlapping;
2022-05-15 09:51:06 +02:00
use Illuminate\Queue\SerializesModels;
class ClientLedgerBalanceUpdate implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
2023-11-08 05:19:30 +01:00
2022-05-15 09:51:06 +02:00
public $tries = 1;
2023-11-08 05:19:30 +01:00
2022-08-02 09:04:33 +02:00
public $deleteWhenMissingModels = true;
2023-11-08 05:19:30 +01:00
private ?CompanyLedger $next_balance_record;
public function __construct(public Company $company, public Client $client)
2023-02-17 22:36:51 +01:00
{
}
2022-05-15 09:51:06 +02:00
/**
* Execute the job.
*
*
* @return void
*/
public function handle() :void
{
2023-11-08 05:19:30 +01:00
$uuid = \Illuminate\Support\Str::uuid();
2023-11-08 09:03:56 +01:00
// nlog("Updating company ledger for client {$this->client->id} {$uuid}");
2022-05-15 09:51:06 +02:00
MultiDB::setDb($this->company->db);
2023-11-08 09:03:56 +01:00
// $dupes = CompanyLedger::query()
// ->where('client_id', $this->client->id)
// ->where('balance', 0)
// ->where('hash', '<>', '')
// ->groupBy(['adjustment','hash'])
// ->havingRaw('COUNT(*) > 1')
// ->pluck('id');
2023-11-08 05:19:30 +01:00
// CompanyLedger::query()->whereIn('id', $dupes)->delete();
2023-11-08 09:03:56 +01:00
// $dupes = CompanyLedger::query()
// ->where('client_id', $this->client->id)
// ->where('balance', 0)
// ->where('hash', '<>', '')
// ->groupBy(['adjustment','hash'])
// ->havingRaw('COUNT(*) > 1')
// ->pluck('id');
2023-11-08 05:19:30 +01:00
// CompanyLedger::query()->whereIn('id', $dupes)->delete();
CompanyLedger::query()
->where('balance', 0)
->where('client_id', $this->client->id)
->orderBy('id', 'ASC')
->get()
->each(function ($company_ledger) {
$parent_ledger = CompanyLedger::query()
->where('id', '<', $company_ledger->id)
->where('client_id', $company_ledger->client_id)
->where('company_id', $company_ledger->company_id)
->where('balance', '!=', 0)
->orderBy('id', 'DESC')
->first();
// $company_ledger->balance = $last_record->balance + $company_ledger->adjustment;
$company_ledger->balance = ($parent_ledger ? $parent_ledger->balance : 0) + $company_ledger->adjustment;
$company_ledger->save();
2022-05-15 09:51:06 +02:00
});
2023-11-08 09:03:56 +01:00
// nlog("finished job {$uuid}");
2023-11-08 05:19:30 +01:00
}
public function middleware()
{
return [(new WithoutOverlapping($this->client->id))->dontRelease()];
}
2022-05-15 09:51:06 +02:00
}