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
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
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;
|
2022-03-09 22:52:33 +01:00
|
|
|
use App\Http\ValidationRules\Project\ValidProjectForClient;
|
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;
|
2021-03-19 23:51:52 +01:00
|
|
|
use Illuminate\Validation\Rule;
|
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
|
2023-04-28 12:16:54 +02:00
|
|
|
{
|
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
|
|
|
return $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 = [];
|
|
|
|
|
2023-03-18 08:24:56 +01:00
|
|
|
if ($this->file('documents') && is_array($this->file('documents'))) {
|
2023-02-27 10:12:59 +01:00
|
|
|
$rules['documents.*'] = $this->file_validation;
|
2023-03-18 08:24:56 +01:00
|
|
|
} elseif ($this->file('documents')) {
|
2023-02-27 10:12:59 +01:00
|
|
|
$rules['documents'] = $this->file_validation;
|
2023-03-18 08:24:56 +01:00
|
|
|
}
|
2023-02-27 10:12:59 +01:00
|
|
|
|
|
|
|
if ($this->file('file') && is_array($this->file('file'))) {
|
|
|
|
$rules['file.*'] = $this->file_validation;
|
|
|
|
} elseif ($this->file('file')) {
|
|
|
|
$rules['file'] = $this->file_validation;
|
2020-04-10 07:07:36 +02:00
|
|
|
}
|
|
|
|
|
2020-07-22 01:54:39 +02:00
|
|
|
$rules['id'] = new LockedInvoiceRule($this->invoice);
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($this->number) {
|
2021-03-19 23:51:52 +01:00
|
|
|
$rules['number'] = Rule::unique('invoices')->where('company_id', auth()->user()->company()->id)->ignore($this->invoice->id);
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2020-08-12 12:11:13 +02:00
|
|
|
|
2022-02-27 07:49:49 +01:00
|
|
|
$rules['is_amount_discount'] = ['boolean'];
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-01-13 22:16:07 +01:00
|
|
|
$rules['line_items'] = 'array';
|
2022-06-21 11:57:17 +02:00
|
|
|
$rules['discount'] = 'sometimes|numeric';
|
|
|
|
$rules['project_id'] = ['bail', 'sometimes', new ValidProjectForClient($this->all())];
|
2022-11-05 05:13:08 +01:00
|
|
|
$rules['tax_rate1'] = 'bail|sometimes|numeric';
|
|
|
|
$rules['tax_rate2'] = 'bail|sometimes|numeric';
|
|
|
|
$rules['tax_rate3'] = 'bail|sometimes|numeric';
|
|
|
|
$rules['tax_name1'] = 'bail|sometimes|string|nullable';
|
|
|
|
$rules['tax_name2'] = 'bail|sometimes|string|nullable';
|
|
|
|
$rules['tax_name3'] = 'bail|sometimes|string|nullable';
|
2021-01-13 22:16:07 +01:00
|
|
|
|
2023-06-08 01:01:54 +02:00
|
|
|
// not needed.
|
|
|
|
// $rules['partial_due_date'] = 'bail|sometimes|required_unless:partial,0,null';
|
|
|
|
|
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
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public 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;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-05-18 04:59:24 +02:00
|
|
|
if (isset($input['line_items']) && is_array($input['line_items'])) {
|
2021-03-26 20:43:52 +01:00
|
|
|
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
|
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
|
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
|
|
|
}
|