2020-01-30 02:27:22 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Credit;
|
|
|
|
|
|
|
|
use App\Models\Credit;
|
2020-01-30 04:02:25 +01:00
|
|
|
use App\Utils\Traits\CleanLineItems;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
2020-01-30 02:27:22 +01:00
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
|
|
|
class StoreCreditRequest extends FormRequest
|
|
|
|
{
|
2020-01-30 04:02:25 +01:00
|
|
|
use MakesHash;
|
|
|
|
use CleanLineItems;
|
|
|
|
|
2020-01-30 02:27:22 +01:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
|
|
|
return auth()->user()->can('create', Credit::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
2020-02-15 10:06:30 +01:00
|
|
|
'client_id' => 'required|exists:clients,id',
|
2020-01-30 04:02:25 +01:00
|
|
|
// 'invoice_type_id' => 'integer',
|
|
|
|
// 'documents' => 'mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx',
|
2020-01-30 02:27:22 +01:00
|
|
|
];
|
|
|
|
}
|
2020-01-30 04:02:25 +01:00
|
|
|
|
|
|
|
protected function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2020-02-17 10:37:44 +01:00
|
|
|
if($input['client_id'])
|
|
|
|
$input['client_id'] = $this->decodePrimaryKey($input['client_id']);
|
|
|
|
|
2020-01-30 04:02:25 +01:00
|
|
|
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
|
|
|
|
//$input['line_items'] = json_encode($input['line_items']);
|
|
|
|
$this->replace($input);
|
|
|
|
}
|
2020-01-30 02:27:22 +01:00
|
|
|
}
|