mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php namespace App\Http\Requests;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
class CreatePaymentRequest extends PaymentRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return $this->user()->can('create', ENTITY_PAYMENT);
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
$input = $this->input();
|
|
$invoice = Invoice::scope($input['invoice'])
|
|
->invoices()
|
|
->firstOrFail();
|
|
|
|
$rules = [
|
|
'client' => 'required', // TODO: change to client_id once views are updated
|
|
'invoice' => 'required', // TODO: change to invoice_id once views are updated
|
|
'amount' => "required|numeric|between:0.01,{$invoice->balance}",
|
|
'payment_date' => 'required',
|
|
];
|
|
|
|
if ( ! empty($input['payment_type_id']) && $input['payment_type_id'] == PAYMENT_TYPE_CREDIT) {
|
|
$rules['payment_type_id'] = 'has_credit:'.$input['client'].','.$input['amount'];
|
|
}
|
|
|
|
return $rules;
|
|
}
|
|
}
|