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 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
|
|
|
|
|
|
|
/**
|
|
|
|
* @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.insufficient_applied_amount_remaining');
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private function calculateAmounts() :bool
|
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
$payment = Payment::whereId($this->decodePrimaryKey(request()->segment(4)))->company()->first();
|
2020-01-09 21:15:10 +01:00
|
|
|
|
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;
|
|
|
|
|
|
|
|
$payment_amounts = $payment->amount - $payment->applied;
|
|
|
|
|
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-03-06 12:10:59 +01:00
|
|
|
$invoice_amounts += $invoice['amount'];
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $payment_amounts >= $invoice_amounts;
|
|
|
|
}
|
|
|
|
}
|