2020-01-09 21:15:10 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-01-09 21:15:10 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-01-09 21:15:10 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-01-09 21:15:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\ValidationRules;
|
|
|
|
|
2023-03-11 02:26:56 +01:00
|
|
|
use App\Models\Invoice;
|
2020-01-09 21:15:10 +01:00
|
|
|
use App\Models\Payment;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class PaymentAppliedValidAmount.
|
2020-01-09 21:15:10 +01:00
|
|
|
*/
|
|
|
|
class PaymentAppliedValidAmount implements Rule
|
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
use MakesHash;
|
2020-01-09 21:15:10 +01:00
|
|
|
|
2023-03-11 02:26:56 +01:00
|
|
|
private $message;
|
|
|
|
|
2023-03-11 04:25:18 +01:00
|
|
|
public function __construct(private array $input)
|
|
|
|
{
|
|
|
|
$this->input = $input;
|
|
|
|
}
|
2020-01-09 21:15:10 +01:00
|
|
|
/**
|
|
|
|
* @param string $attribute
|
|
|
|
* @param mixed $value
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function passes($attribute, $value)
|
|
|
|
{
|
2023-03-11 02:26:56 +01:00
|
|
|
$this->message = ctrans('texts.insufficient_applied_amount_remaining');
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
return $this->calculateAmounts();
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function message()
|
|
|
|
{
|
2023-03-11 02:26:56 +01:00
|
|
|
return $this->message;
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private function calculateAmounts() :bool
|
|
|
|
{
|
2022-01-15 00:54:36 +01:00
|
|
|
$payment = Payment::withTrashed()->whereId($this->decodePrimaryKey(request()->segment(4)))->company()->first();
|
2023-03-11 04:25:18 +01:00
|
|
|
$inv_collection = Invoice::withTrashed()->whereIn('id', array_column($this->input['invoices'], 'invoice_id'))->get();
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $payment) {
|
2020-01-09 21:15:10 +01:00
|
|
|
return false;
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-01-09 21:15:10 +01:00
|
|
|
$payment_amounts = 0;
|
|
|
|
$invoice_amounts = 0;
|
|
|
|
|
2021-10-26 20:01:10 +02:00
|
|
|
$payment_amounts = $payment->amount - $payment->refunded - $payment->applied;
|
2020-01-09 21:15:10 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (request()->has('credits')
|
|
|
|
&& is_array(request()->input('credits'))
|
|
|
|
&& count(request()->input('credits')) == 0
|
|
|
|
&& request()->has('invoices')
|
|
|
|
&& is_array(request()->input('invoices'))
|
|
|
|
&& count(request()->input('invoices')) == 0) {
|
|
|
|
return true;
|
2022-01-15 00:54:36 +01:00
|
|
|
}
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if (request()->input('credits') && is_array(request()->input('credits'))) {
|
|
|
|
foreach (request()->input('credits') as $credit) {
|
2020-01-09 21:15:10 +01:00
|
|
|
$payment_amounts += $credit['amount'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-11 04:25:18 +01:00
|
|
|
if (isset($this->input['invoices']) && is_array($this->input['invoices'])) {
|
|
|
|
foreach ($this->input['invoices'] as $invoice) {
|
2020-03-06 12:10:59 +01:00
|
|
|
$invoice_amounts += $invoice['amount'];
|
2023-03-11 02:26:56 +01:00
|
|
|
|
|
|
|
$inv = $inv_collection->firstWhere('id', $invoice['invoice_id']);
|
|
|
|
|
2023-03-18 08:24:56 +01:00
|
|
|
if ($inv->balance < $invoice['amount']) {
|
2023-03-11 02:26:56 +01:00
|
|
|
$this->message = 'Amount cannot be greater than invoice balance';
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-18 08:24:56 +01:00
|
|
|
if (round($payment_amounts, 3) >= round($invoice_amounts, 3)) {
|
2023-03-11 02:26:56 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
}
|