2019-04-15 02:10:54 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. 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;
|
2020-07-22 01:54:39 +02:00
|
|
|
use App\Http\ValidationRules\Invoice\LockedInvoiceRule;
|
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
|
|
|
|
|
|
|
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;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
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()
|
2020-07-22 01:58:41 +02:00
|
|
|
{
|
2020-04-10 07:07:36 +02:00
|
|
|
$rules = [];
|
|
|
|
|
2020-04-15 02:30:52 +02:00
|
|
|
if ($this->input('documents') && is_array($this->input('documents'))) {
|
2020-04-10 07:07:36 +02:00
|
|
|
$documents = count($this->input('documents'));
|
|
|
|
|
2020-04-15 02:30:52 +02:00
|
|
|
foreach (range(0, $documents) as $index) {
|
2020-09-06 11:38:10 +02:00
|
|
|
$rules['documents.'.$index] = 'file|mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000';
|
2020-04-10 07:07:36 +02:00
|
|
|
}
|
2020-04-15 02:30:52 +02:00
|
|
|
} elseif ($this->input('documents')) {
|
2020-04-10 07:07:36 +02:00
|
|
|
$rules['documents'] = 'file|mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000';
|
|
|
|
}
|
|
|
|
|
2020-07-22 01:54:39 +02:00
|
|
|
$rules['id'] = new LockedInvoiceRule($this->invoice);
|
|
|
|
|
2020-12-18 01:31:27 +01:00
|
|
|
// if ($this->input('number') && strlen($this->input('number')) >= 1) {
|
|
|
|
if ($this->input('number')) {
|
2020-09-06 11:38:10 +02:00
|
|
|
$rules['number'] = 'unique:invoices,number,'.$this->id.',id,company_id,'.$this->invoice->company_id;
|
|
|
|
}
|
2020-08-12 12:11:13 +02:00
|
|
|
|
2021-01-13 22:16:07 +01:00
|
|
|
$rules['line_items'] = 'array';
|
|
|
|
|
2020-04-10 07:07:36 +02:00
|
|
|
return $rules;
|
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();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
$input = $this->decodePrimaryKeys($input);
|
2020-07-22 01:54:39 +02:00
|
|
|
|
|
|
|
$input['id'] = $this->invoice->id;
|
2020-10-22 08:46:02 +02:00
|
|
|
|
2019-11-08 01:38:22 +01:00
|
|
|
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
|
|
|
|
|
2021-01-08 11:19:26 +01:00
|
|
|
if (array_key_exists('documents', $input)) {
|
|
|
|
unset($input['documents']);
|
|
|
|
}
|
|
|
|
|
2019-10-11 00:11:36 +02:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
2020-07-29 04:13:12 +02:00
|
|
|
|
|
|
|
public function messages()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'id' => ctrans('text.locked_invoice'),
|
|
|
|
];
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|