2020-02-03 11:33:07 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-02-03 11:33:07 +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-03 11:33:07 +01:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services\Invoice;
|
|
|
|
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use App\Models\Payment;
|
2020-02-17 10:37:44 +01:00
|
|
|
use App\Services\AbstractService;
|
2020-02-03 11:33:07 +01:00
|
|
|
|
2020-02-17 10:37:44 +01:00
|
|
|
class ApplyPayment extends AbstractService
|
2020-02-03 11:33:07 +01:00
|
|
|
{
|
|
|
|
private $invoice;
|
|
|
|
|
2020-02-17 10:37:44 +01:00
|
|
|
private $payment;
|
|
|
|
|
|
|
|
private $payment_amount;
|
|
|
|
|
|
|
|
public function __construct($invoice, $payment, $payment_amount)
|
2020-02-03 11:33:07 +01:00
|
|
|
{
|
|
|
|
$this->invoice = $invoice;
|
2020-02-17 10:37:44 +01:00
|
|
|
$this->payment = $payment;
|
|
|
|
$this->payment_amount = $payment_amount;
|
2020-02-03 11:33:07 +01:00
|
|
|
}
|
|
|
|
|
2021-01-20 11:59:24 +01:00
|
|
|
/* Apply payment to a single invoice */
|
2020-03-21 06:37:30 +01:00
|
|
|
public function run()
|
|
|
|
{
|
2020-02-03 11:33:07 +01:00
|
|
|
|
2021-01-20 11:59:24 +01:00
|
|
|
$this->invoice->fresh('client');
|
|
|
|
|
|
|
|
$amount_paid = 0;
|
|
|
|
|
|
|
|
if ($this->invoice->hasPartial()) {
|
|
|
|
|
|
|
|
if ($this->invoice->partial == $this->payment_amount)
|
|
|
|
{
|
|
|
|
|
|
|
|
//is partial and amount is exactly the partial amount
|
|
|
|
|
|
|
|
$amount_paid = $this->payment_amount * -1;
|
|
|
|
|
|
|
|
$this->invoice->service()->clearPartial()->setDueDate()->setStatus(Invoice::STATUS_PARTIAL)->updateBalance($amount_paid);
|
|
|
|
|
|
|
|
}
|
|
|
|
elseif ($this->invoice->partial > 0 && $this->invoice->partial > $this->payment_amount)
|
|
|
|
{
|
|
|
|
//partial amount exists, but the amount is less than the partial amount
|
|
|
|
|
|
|
|
$amount_paid = $this->payment_amount * -1;
|
|
|
|
|
|
|
|
$this->invoice->service()->updatePartial($amount_paid)->updateBalance($amount_paid);
|
|
|
|
|
|
|
|
}
|
|
|
|
elseif ($this->invoice->partial > 0 && $this->invoice->partial < $this->payment_amount)
|
|
|
|
{
|
|
|
|
//partial exists and the amount paid is GREATER than the partial amount
|
|
|
|
|
|
|
|
$amount_paid = $this->payment_amount * -1;
|
|
|
|
|
|
|
|
$this->invoice->service()->clearPartial()->setDueDate()->setStatus(Invoice::STATUS_PARTIAL)->updateBalance($amount_paid);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ($this->payment_amount == $this->invoice->balance)
|
|
|
|
{
|
|
|
|
$amount_paid = $this->payment_amount * -1;
|
|
|
|
|
|
|
|
$this->invoice->service()->clearPartial()->setStatus(Invoice::STATUS_PAID)->updateBalance($amount_paid);
|
|
|
|
|
|
|
|
}
|
|
|
|
elseif ($this->payment_amount < $this->invoice->balance)
|
|
|
|
{
|
|
|
|
//partial invoice payment made
|
|
|
|
|
|
|
|
$amount_paid = $this->payment_amount * -1;
|
2020-06-06 03:07:31 +02:00
|
|
|
|
2021-01-20 11:59:24 +01:00
|
|
|
$this->invoice->service()->clearPartial()->setStatus(Invoice::STATUS_PARTIAL)->updateBalance($amount_paid);
|
2020-06-06 03:07:31 +02:00
|
|
|
|
2021-01-20 11:59:24 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
elseif ($this->payment_amount > $this->invoice->balance)
|
|
|
|
{
|
|
|
|
//partial invoice payment made
|
|
|
|
|
|
|
|
$amount_paid = $this->invoice->balance * -1;
|
|
|
|
|
|
|
|
$this->invoice->service()->clearPartial()->setStatus(Invoice::STATUS_PAID)->updateBalance($amount_paid);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2020-06-06 03:07:31 +02:00
|
|
|
|
2021-01-20 11:59:24 +01:00
|
|
|
$this->payment
|
|
|
|
->ledger()
|
|
|
|
->updatePaymentBalance($amount_paid);
|
|
|
|
|
2021-01-24 07:44:14 +01:00
|
|
|
$this->invoice
|
|
|
|
->client
|
|
|
|
->service()
|
|
|
|
->updateBalance($amount_paid)
|
|
|
|
->save();
|
2020-02-03 11:33:07 +01:00
|
|
|
|
|
|
|
/* Update Pivot Record amount */
|
2021-01-20 11:59:24 +01:00
|
|
|
$this->payment->invoices->each(function ($inv) use($amount_paid){
|
2021-01-24 07:44:14 +01:00
|
|
|
|
2020-02-03 11:33:07 +01:00
|
|
|
if ($inv->id == $this->invoice->id) {
|
2021-01-24 07:44:14 +01:00
|
|
|
|
2021-01-20 11:59:24 +01:00
|
|
|
$inv->pivot->amount = ($amount_paid*-1);
|
2020-02-03 11:33:07 +01:00
|
|
|
$inv->pivot->save();
|
2021-01-24 07:44:14 +01:00
|
|
|
|
|
|
|
$inv->paid_to_date += floatval($amount_paid*-1);
|
|
|
|
$inv->save();
|
2020-02-03 11:33:07 +01:00
|
|
|
}
|
2021-01-24 07:44:14 +01:00
|
|
|
|
2020-02-03 11:33:07 +01:00
|
|
|
});
|
|
|
|
|
2020-05-28 06:18:34 +02:00
|
|
|
$this->invoice->service()->applyNumber()->save();
|
|
|
|
|
2020-02-03 11:33:07 +01:00
|
|
|
return $this->invoice;
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-02-14 04:32:22 +01:00
|
|
|
}
|