2020-02-19 21:44:12 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-02-19 21:44:12 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-02-19 21:44:12 +01:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services\Ledger;
|
|
|
|
|
2020-02-20 22:05:01 +01:00
|
|
|
use App\Factory\CompanyLedgerFactory;
|
2020-06-24 01:39:49 +02:00
|
|
|
use App\Models\Activity;
|
2020-02-19 21:44:12 +01:00
|
|
|
use App\Models\CompanyLedger;
|
|
|
|
|
|
|
|
class LedgerService
|
|
|
|
{
|
|
|
|
private $entity;
|
|
|
|
|
|
|
|
public function __construct($entity)
|
|
|
|
{
|
|
|
|
$this->entity = $entity;
|
|
|
|
}
|
|
|
|
|
2020-04-08 12:48:31 +02:00
|
|
|
public function updateInvoiceBalance($adjustment, $notes = '')
|
2020-02-19 21:44:12 +01:00
|
|
|
{
|
|
|
|
$balance = 0;
|
|
|
|
|
2020-02-20 22:05:01 +01:00
|
|
|
$company_ledger = $this->ledger();
|
|
|
|
|
|
|
|
if ($company_ledger) {
|
|
|
|
$balance = $company_ledger->balance;
|
2020-02-19 21:44:12 +01:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-02-19 21:44:12 +01:00
|
|
|
$company_ledger = CompanyLedgerFactory::create($this->entity->company_id, $this->entity->user_id);
|
|
|
|
$company_ledger->client_id = $this->entity->client_id;
|
|
|
|
$company_ledger->adjustment = $adjustment;
|
2020-04-08 12:48:31 +02:00
|
|
|
$company_ledger->notes = $notes;
|
2020-02-19 21:44:12 +01:00
|
|
|
$company_ledger->balance = $balance + $adjustment;
|
2020-06-24 01:39:49 +02:00
|
|
|
$company_ledger->activity_id = Activity::UPDATE_INVOICE;
|
2020-02-19 21:44:12 +01:00
|
|
|
$company_ledger->save();
|
|
|
|
|
|
|
|
$this->entity->company_ledger()->save($company_ledger);
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2020-02-20 22:05:01 +01:00
|
|
|
public function updatePaymentBalance($adjustment)
|
|
|
|
{
|
|
|
|
$balance = 0;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-02-20 22:05:01 +01:00
|
|
|
/* Get the last record for the client and set the current balance*/
|
|
|
|
$company_ledger = $this->ledger();
|
|
|
|
|
|
|
|
if ($company_ledger) {
|
|
|
|
$balance = $company_ledger->balance;
|
|
|
|
}
|
|
|
|
|
2020-04-11 13:19:05 +02:00
|
|
|
$company_ledger = CompanyLedgerFactory::create($this->entity->company_id, $this->entity->user_id);
|
|
|
|
$company_ledger->client_id = $this->entity->client_id;
|
|
|
|
$company_ledger->adjustment = $adjustment;
|
|
|
|
$company_ledger->balance = $balance + $adjustment;
|
2020-06-24 01:39:49 +02:00
|
|
|
$company_ledger->activity_id = Activity::UPDATE_PAYMENT;
|
2020-04-11 13:19:05 +02:00
|
|
|
$company_ledger->save();
|
|
|
|
|
|
|
|
$this->entity->company_ledger()->save($company_ledger);
|
2020-10-08 05:31:02 +02:00
|
|
|
|
|
|
|
return $this;
|
2020-04-11 13:19:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function updateCreditBalance($adjustment, $notes = '')
|
|
|
|
{
|
|
|
|
$balance = 0;
|
|
|
|
|
|
|
|
$company_ledger = $this->ledger();
|
|
|
|
|
|
|
|
if ($company_ledger) {
|
|
|
|
$balance = $company_ledger->balance;
|
|
|
|
}
|
2020-02-20 22:05:01 +01:00
|
|
|
|
|
|
|
$company_ledger = CompanyLedgerFactory::create($this->entity->company_id, $this->entity->user_id);
|
|
|
|
$company_ledger->client_id = $this->entity->client_id;
|
|
|
|
$company_ledger->adjustment = $adjustment;
|
2020-04-11 13:19:05 +02:00
|
|
|
$company_ledger->notes = $notes;
|
2020-02-20 22:05:01 +01:00
|
|
|
$company_ledger->balance = $balance + $adjustment;
|
2020-06-24 01:39:49 +02:00
|
|
|
$company_ledger->activity_id = Activity::UPDATE_CREDIT;
|
2020-02-20 22:05:01 +01:00
|
|
|
$company_ledger->save();
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
$this->entity->company_ledger()->save($company_ledger);
|
2020-04-11 13:19:05 +02:00
|
|
|
|
|
|
|
return $this;
|
2020-02-20 22:05:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private function ledger() :?CompanyLedger
|
2020-02-19 21:44:12 +01:00
|
|
|
{
|
|
|
|
return CompanyLedger::whereClientId($this->entity->client_id)
|
|
|
|
->whereCompanyId($this->entity->company_id)
|
|
|
|
->orderBy('id', 'DESC')
|
|
|
|
->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function save()
|
|
|
|
{
|
|
|
|
$this->entity->save();
|
|
|
|
|
|
|
|
return $this->entity;
|
|
|
|
}
|
|
|
|
}
|