2019-04-15 02:10:54 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-04-15 02:10:54 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Invoice;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-05-09 07:29:31 +02:00
|
|
|
use App\Models\ClientContact;
|
2019-04-15 02:10:54 +02:00
|
|
|
use App\Models\Invoice;
|
2019-10-11 00:11:36 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-04-15 02:10:54 +02:00
|
|
|
|
|
|
|
class StoreInvoiceRequest extends Request
|
|
|
|
{
|
2019-10-11 00:11:36 +02:00
|
|
|
use MakesHash;
|
|
|
|
|
2019-04-15 02:10:54 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('create', Invoice::class);
|
|
|
|
}
|
|
|
|
|
2019-04-28 14:23:22 +02:00
|
|
|
public function rules()
|
|
|
|
{
|
2019-10-11 00:11:36 +02:00
|
|
|
$this->sanitize();
|
2019-04-28 14:23:22 +02:00
|
|
|
return [
|
2019-05-09 07:29:31 +02:00
|
|
|
'client_id' => 'required',
|
2019-07-05 00:36:40 +02:00
|
|
|
// 'invoice_type_id' => 'integer',
|
2019-05-16 00:26:21 +02:00
|
|
|
// 'documents' => 'mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx',
|
2019-04-28 14:23:22 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-10-11 00:11:36 +02:00
|
|
|
public function sanitize()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
|
|
$input['client_id'] = $this->decodePrimaryKey($input['client_id']);
|
2019-10-29 12:12:59 +01:00
|
|
|
$input['line_items'] = isset($input['line_items']) ? $input['line_items'] : [];
|
|
|
|
//$input['line_items'] = json_encode($input['line_items']);
|
2019-10-11 00:11:36 +02:00
|
|
|
$this->replace($input);
|
|
|
|
|
|
|
|
return $this->all();
|
|
|
|
}
|
2019-04-28 14:23:22 +02:00
|
|
|
}
|
|
|
|
|