mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
f0176b6e37
* remove jobs table * Working on notifications * Working on notifications * Fix for pdf_variables * Fixes for notification * Fixes for viewing invoice with NO company custom_fields * Fixes for company settings object creation * Working on group settings * Fixes for storing the correct currency_id on client creation * Fix for invoicetransformer * fix for store client * Update PaymentAppliedValidAmount.php (#38) * update company schema descriptions * Update PaymentAppliedValidAmount.php Co-authored-by: David Bomba <turbo124@gmail.com> * Cast invoice designs to the Hashes * Fixes for setting invoice/credit/design_ids to hashed * Fixes for quote transformer Co-authored-by: michael-hampton <michaelhamptondesign@yahoo.com>
79 lines
1.8 KiB
PHP
79 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\ValidationRules;
|
|
|
|
use App\Libraries\MultiDB;
|
|
use App\Models\Payment;
|
|
use App\Models\User;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
/**
|
|
* Class PaymentAppliedValidAmount
|
|
* @package App\Http\ValidationRules
|
|
*/
|
|
class PaymentAppliedValidAmount implements Rule
|
|
{
|
|
use MakesHash;
|
|
|
|
/**
|
|
* @param string $attribute
|
|
* @param mixed $value
|
|
* @return bool
|
|
*/
|
|
public function passes($attribute, $value)
|
|
{
|
|
return $this->calculateAmounts();
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function message()
|
|
{
|
|
return 'Insufficient applied amount remaining to cover payment.';
|
|
}
|
|
|
|
private function calculateAmounts() :bool
|
|
{
|
|
|
|
$payment = Payment::whereId($this->decodePrimaryKey(request()->segment(4)))->company()->first();
|
|
|
|
if(!$payment)
|
|
return false;
|
|
|
|
$payment_amounts = 0;
|
|
$invoice_amounts = 0;
|
|
|
|
$payment_amounts = $payment->amount - $payment->applied;
|
|
|
|
if(request()->input('credits') && is_array(request()->input('credits')))
|
|
{
|
|
foreach(request()->input('credits') as $credit)
|
|
{
|
|
$payment_amounts += $credit['amount'];
|
|
}
|
|
}
|
|
|
|
if(request()->input('invoices') && is_array(request()->input('invoices')))
|
|
{
|
|
foreach(request()->input('invoices') as $invoice)
|
|
{
|
|
$invoice_amounts += $invoice['amount'];
|
|
}
|
|
}
|
|
|
|
return $payment_amounts >= $invoice_amounts;
|
|
|
|
}
|
|
}
|