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
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-01-09 21:15:10 +01:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\ValidationRules;
|
|
|
|
|
|
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class PaymentAmountsBalanceRule.
|
2020-01-09 21:15:10 +01:00
|
|
|
*/
|
|
|
|
class PaymentAmountsBalanceRule implements Rule
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @param string $attribute
|
|
|
|
* @param mixed $value
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function passes($attribute, $value)
|
2020-03-21 06:37:30 +01:00
|
|
|
{
|
|
|
|
return $this->calculateAmounts();
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function message()
|
|
|
|
{
|
2021-01-24 12:48:09 +01:00
|
|
|
return ctrans('texts.amounts_do_not_balance');
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private function calculateAmounts() :bool
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
/*
|
2020-01-30 21:53:14 +01:00
|
|
|
* Sometimes the request may not contain the amount or it may be zero,
|
|
|
|
* and this is a valid use case, only compare the amounts if they
|
|
|
|
* have been presented!
|
|
|
|
*/
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! request()->has('amount')) {
|
2020-01-30 21:53:14 +01:00
|
|
|
return true;
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-01-30 21:53:14 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if (request()->has('amount') && request()->input('amount') == 0) {
|
2020-01-30 22:15:13 +01:00
|
|
|
return true;
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-01-11 23:01:28 +01:00
|
|
|
|
2020-01-09 21:15:10 +01:00
|
|
|
$payment_amounts = 0;
|
|
|
|
$invoice_amounts = 0;
|
|
|
|
|
|
|
|
$payment_amounts += request()->input('amount');
|
|
|
|
|
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'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if (request()->input('invoices') && is_array(request()->input('invoices'))) {
|
|
|
|
foreach (request()->input('invoices') as $invoice) {
|
2020-01-23 21:46:35 +01:00
|
|
|
$invoice_amounts += $invoice['amount'];
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
2020-03-21 06:37:30 +01:00
|
|
|
} else {
|
|
|
|
return true;
|
2021-01-24 12:48:09 +01:00
|
|
|
}
|
|
|
|
|
2020-10-21 06:12:54 +02:00
|
|
|
|
2020-01-09 21:15:10 +01:00
|
|
|
return $payment_amounts >= $invoice_amounts;
|
|
|
|
}
|
|
|
|
}
|