mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
82 lines
3.3 KiB
PHP
82 lines
3.3 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Services\Invoice;
|
|
|
|
use App\Models\Invoice;
|
|
use App\Models\Payment;
|
|
use App\Services\AbstractService;
|
|
|
|
class ApplyPayment extends AbstractService
|
|
{
|
|
private $invoice;
|
|
|
|
private $payment;
|
|
|
|
private $payment_amount;
|
|
|
|
public function __construct($invoice, $payment, $payment_amount)
|
|
{
|
|
$this->invoice = $invoice;
|
|
$this->payment = $payment;
|
|
$this->payment_amount = $payment_amount;
|
|
}
|
|
|
|
public function run()
|
|
{
|
|
$this->payment
|
|
->ledger()
|
|
->updatePaymentBalance($this->payment_amount * -1);
|
|
|
|
// info("apply payment method - current client balance = {$this->payment->client->balance}");
|
|
|
|
// info("reducing client balance by payment amount {$this->payment_amount}");
|
|
|
|
$this->invoice->client->service()->updateBalance($this->payment_amount * -1)->save();
|
|
|
|
// info("post client balance = {$this->invoice->client->balance}");
|
|
|
|
/* Update Pivot Record amount */
|
|
$this->payment->invoices->each(function ($inv) {
|
|
if ($inv->id == $this->invoice->id) {
|
|
$inv->pivot->amount = $this->payment_amount;
|
|
$inv->pivot->save();
|
|
}
|
|
});
|
|
|
|
$this->invoice->fresh('client');
|
|
|
|
// info("1 end of apply payment method the client balance = {$this->invoice->client->balance}");
|
|
|
|
if ($this->invoice->hasPartial()) {
|
|
//is partial and amount is exactly the partial amount
|
|
if ($this->invoice->partial == $this->payment_amount) {
|
|
$this->invoice->service()->clearPartial()->setDueDate()->setStatus(Invoice::STATUS_PARTIAL)->updateBalance($this->payment_amount * -1);
|
|
} elseif ($this->invoice->partial > 0 && $this->invoice->partial > $this->payment_amount) { //partial amount exists, but the amount is less than the partial amount
|
|
$this->invoice->service()->updatePartial($this->payment_amount * -1)->updateBalance($this->payment_amount * -1);
|
|
} elseif ($this->invoice->partial > 0 && $this->invoice->partial < $this->payment_amount) { //partial exists and the amount paid is GREATER than the partial amount
|
|
$this->invoice->service()->clearPartial()->setDueDate()->setStatus(Invoice::STATUS_PARTIAL)->updateBalance($this->payment_amount * -1);
|
|
}
|
|
} elseif ($this->payment_amount == $this->invoice->balance) { //total invoice paid.
|
|
$this->invoice->service()->clearPartial()->setStatus(Invoice::STATUS_PAID)->updateBalance($this->payment_amount * -1);
|
|
} elseif ($this->payment_amount < $this->invoice->balance) { //partial invoice payment made
|
|
$this->invoice->service()->clearPartial()->setStatus(Invoice::STATUS_PARTIAL)->updateBalance($this->payment_amount * -1);
|
|
}
|
|
// info("2 end of apply payment method the client balnace = {$this->invoice->client->balance}");
|
|
|
|
$this->invoice->service()->applyNumber()->save();
|
|
|
|
// info("3 end of apply payment method the client balnace = {$this->invoice->client->balance}");
|
|
|
|
return $this->invoice;
|
|
}
|
|
}
|