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
|
|
|
|
*
|
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-04-15 02:10:54 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Invoice;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-12-30 22:59:12 +01:00
|
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
2019-11-08 01:38:22 +01:00
|
|
|
use App\Utils\Traits\CleanLineItems;
|
2019-11-06 23:57:09 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-04-15 02:10:54 +02:00
|
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
use Illuminate\Validation\Rule;
|
|
|
|
|
|
|
|
class UpdateInvoiceRequest extends Request
|
|
|
|
{
|
2019-11-06 23:57:09 +01:00
|
|
|
use MakesHash;
|
2019-11-08 01:38:22 +01:00
|
|
|
use CleanLineItems;
|
2019-12-30 22:59:12 +01:00
|
|
|
use ChecksEntityStatus;
|
|
|
|
|
2019-04-15 02:10:54 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
|
2019-04-16 07:28:30 +02:00
|
|
|
public function authorize() : bool
|
2019-04-15 02:10:54 +02:00
|
|
|
{
|
2019-04-17 08:20:32 +02:00
|
|
|
return auth()->user()->can('edit', $this->invoice);
|
2019-04-15 02:10:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-28 14:23:22 +02:00
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'documents' => 'mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx',
|
2019-09-03 01:00:52 +02:00
|
|
|
//'client_id' => 'required|integer',
|
2019-07-05 00:36:40 +02:00
|
|
|
//'invoice_type_id' => 'integer',
|
2019-04-28 14:23:22 +02:00
|
|
|
];
|
|
|
|
}
|
2019-10-11 00:11:36 +02:00
|
|
|
|
2019-12-20 12:23:09 +01:00
|
|
|
protected function prepareForValidation()
|
2019-10-11 00:11:36 +02:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (isset($input['client_id'])) {
|
2019-11-06 23:57:09 +01:00
|
|
|
$input['client_id'] = $this->decodePrimaryKey($input['client_id']);
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-11-06 23:57:09 +01:00
|
|
|
|
2019-11-08 01:38:22 +01:00
|
|
|
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
|
|
|
|
|
2019-10-11 00:11:36 +02:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|