2020-01-07 10:35:55 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Credit Ninja (https://invoiceninja.com).
|
2020-01-07 10:35:55 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Credit Ninja LLC (https://invoiceninja.com)
|
2020-01-07 10:35:55 +01:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
2020-01-09 21:15:10 +01:00
|
|
|
namespace App\Jobs\Credit;
|
2020-01-07 10:35:55 +01:00
|
|
|
|
2020-01-09 21:15:10 +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;
|
|
|
|
|
2020-01-09 21:15:10 +01:00
|
|
|
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
|
|
|
*/
|
2020-02-24 11:15:30 +01:00
|
|
|
public function __construct(Credit $credit, Payment $payment, float $amount)
|
2020-01-07 10:35:55 +01:00
|
|
|
{
|
2020-01-09 21:15:10 +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 */
|
2020-01-09 21:15:10 +01:00
|
|
|
$this->payment->credits->each(function ($cred) {
|
|
|
|
if ($cred->id == $this->credit->id) {
|
|
|
|
$cred->pivot->amount = $this->amount;
|
|
|
|
$cred->pivot->save();
|
2020-01-07 10:35:55 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-01-09 21:15:10 +01:00
|
|
|
$credit_balance = $this->credit->balance;
|
|
|
|
|
|
|
|
if ($this->amount == $credit_balance) { //total credit applied.
|
|
|
|
$this->credit->setStatus(Credit::STATUS_APPLIED);
|
2020-09-06 11:38:10 +02:00
|
|
|
$this->credit->updateBalance($this->amount * -1);
|
2020-03-21 06:37:30 +01:00
|
|
|
} elseif ($this->amount < $credit_balance) { //compare number appropriately
|
2020-04-08 12:48:31 +02:00
|
|
|
$this->credit->setStatus(Credit::STATUS_PARTIAL);
|
2020-09-06 11:38:10 +02:00
|
|
|
$this->credit->updateBalance($this->amount * -1);
|
2020-01-07 10:35:55 +01:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-01-07 10:35:55 +01:00
|
|
|
/* Update Payment Applied Amount*/
|
|
|
|
$this->payment->save();
|
|
|
|
}
|
|
|
|
}
|