1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Jobs/Credit/ApplyCreditPayment.php

92 lines
2.3 KiB
PHP
Raw Normal View History

2020-01-07 10:35:55 +01:00
<?php
/**
* Credit Ninja (https://invoiceninja.com).
2020-01-07 10:35:55 +01:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Credit Ninja LLC (https://invoiceninja.com)
2020-01-07 10:35:55 +01:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-01-07 10:35:55 +01:00
*/
namespace App\Jobs\Credit;
2020-01-07 10:35:55 +01:00
use App\Models\Credit;
2020-01-07 10:35:55 +01:00
use App\Models\Payment;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
class ApplyCreditPayment implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public $credit;
2020-01-07 10:35:55 +01:00
public $payment;
public $amount;
/**
* Create a new job instance.
*
2020-10-28 11:10:49 +01:00
* @param Credit $credit
* @param Payment $payment
* @param float $amount
2020-01-07 10:35:55 +01:00
*/
public function __construct(Credit $credit, Payment $payment, float $amount)
2020-01-07 10:35:55 +01:00
{
$this->credit = $credit;
2020-01-07 10:35:55 +01:00
$this->payment = $payment;
$this->amount = $amount;
}
/**
* Execute the job.
*
*
* @return void
*/
public function handle()
{
/* Update Pivot Record amount */
$this->payment->credits->each(function ($cred) {
if ($cred->id == $this->credit->id) {
$cred->pivot->amount = $this->amount;
$cred->pivot->save();
$cred->paid_to_date += $this->amount;
$cred->save();
2020-01-07 10:35:55 +01:00
}
});
$credit_balance = $this->credit->balance;
if ($this->amount == $credit_balance) { //total credit applied.
$this->credit
->service()
2021-11-14 22:52:04 +01:00
->markSent()
->setStatus(Credit::STATUS_APPLIED)
2021-01-24 10:28:18 +01:00
->adjustBalance($this->amount * -1)
->updatePaidToDate($this->amount)
->save();
} elseif ($this->amount < $credit_balance) { //compare number appropriately
$this->credit
->service()
2021-11-14 22:52:04 +01:00
->markSent()
->setStatus(Credit::STATUS_PARTIAL)
2021-01-24 10:28:18 +01:00
->adjustBalance($this->amount * -1)
->updatePaidToDate($this->amount)
->save();
2020-01-07 10:35:55 +01:00
}
2020-01-07 10:35:55 +01:00
/* Update Payment Applied Amount*/
$this->payment->save();
}
}