2019-05-03 09:57:55 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-05-03 09:57:55 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Payment;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2020-01-09 21:15:10 +01:00
|
|
|
use App\Http\ValidationRules\PaymentAppliedValidAmount;
|
|
|
|
use App\Http\ValidationRules\ValidCreditsPresentRule;
|
2019-12-30 22:59:12 +01:00
|
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
2020-01-09 21:15:10 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-05-03 09:57:55 +02:00
|
|
|
use Illuminate\Validation\Rule;
|
|
|
|
|
|
|
|
class UpdatePaymentRequest extends Request
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
use ChecksEntityStatus;
|
2020-01-09 21:15:10 +01:00
|
|
|
use MakesHash;
|
2019-05-03 09:57:55 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('edit', $this->payment);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
2020-01-09 21:15:10 +01:00
|
|
|
'invoices' => ['required','array','min:1',new PaymentAppliedValidAmount,new ValidCreditsPresentRule],
|
2019-05-03 09:57:55 +02:00
|
|
|
'documents' => 'mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx',
|
|
|
|
];
|
|
|
|
}
|
2020-01-09 21:15:10 +01:00
|
|
|
|
|
|
|
protected function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
|
|
if(isset($input['client_id']))
|
|
|
|
unset($input['client_id']);
|
|
|
|
|
|
|
|
if(isset($input['amount']))
|
|
|
|
unset($input['amount']);
|
|
|
|
|
|
|
|
if(isset($input['type_id']))
|
|
|
|
unset($input['type_id']);
|
|
|
|
|
|
|
|
if(isset($input['date']))
|
|
|
|
unset($input['date']);
|
|
|
|
|
|
|
|
if(isset($input['transaction_reference']))
|
|
|
|
unset($input['transaction_reference']);
|
|
|
|
|
|
|
|
if(isset($input['number']))
|
|
|
|
unset($input['number']);
|
|
|
|
|
|
|
|
if (isset($input['invoices']) && is_array($input['invoices']) !== false) {
|
|
|
|
foreach ($input['invoices'] as $key => $value) {
|
2020-01-11 23:01:28 +01:00
|
|
|
$input['invoices'][$key]['invoice_id'] = $this->decodePrimaryKey($value['invoice_id']);
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->replace($input);
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|