mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
0fbda85a59
- Removed unused uses - Type hinting for method parameters - Removed commented code - Introduced comments for classes and methods - Short array syntax
40 lines
1.1 KiB
PHP
40 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'])->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|less_than:{$invoice->balance}|positive",
|
|
];
|
|
|
|
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;
|
|
}
|
|
}
|