2019-05-02 13:07:38 +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-05-02 13:07:38 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Quote;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-12-30 22:59:12 +01:00
|
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
2019-11-16 04:12:29 +01:00
|
|
|
use App\Utils\Traits\CleanLineItems;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
2021-03-19 23:51:52 +01:00
|
|
|
use Illuminate\Validation\Rule;
|
2019-05-02 13:07:38 +02:00
|
|
|
|
|
|
|
class UpdateQuoteRequest extends Request
|
|
|
|
{
|
2019-11-16 04:12:29 +01:00
|
|
|
use MakesHash;
|
|
|
|
use CleanLineItems;
|
2019-12-30 22:59:12 +01:00
|
|
|
use ChecksEntityStatus;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-05-02 13:07:38 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2024-01-14 05:05:00 +01:00
|
|
|
public function authorize(): bool
|
2019-05-02 13:07:38 +02:00
|
|
|
{
|
2023-12-04 22:57:43 +01:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
|
|
|
return $user->can('edit', $this->quote);
|
2019-05-02 13:07:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2023-12-04 22:57:43 +01:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
2020-06-22 23:48:45 +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-06-22 23:48:45 +02:00
|
|
|
}
|
2020-08-13 08:15:46 +02:00
|
|
|
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2023-12-11 12:42:50 +01:00
|
|
|
$rules['number'] = ['bail', 'sometimes', 'nullable', Rule::unique('quotes')->where('company_id', $user->company()->id)->ignore($this->quote->id)];
|
2023-12-04 22:57:43 +01:00
|
|
|
|
|
|
|
$rules['client_id'] = ['bail', 'sometimes', Rule::in([$this->quote->client_id])];
|
2020-06-22 23:48:45 +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';
|
2022-02-27 07:49:49 +01:00
|
|
|
$rules['is_amount_discount'] = ['boolean'];
|
2023-08-08 12:39:46 +02:00
|
|
|
$rules['exchange_rate'] = 'bail|sometimes|numeric';
|
2021-01-13 22:16:07 +01:00
|
|
|
|
2020-06-22 23:48:45 +02:00
|
|
|
return $rules;
|
2019-05-02 13:07:38 +02:00
|
|
|
}
|
2019-11-16 04:12:29 +01:00
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2019-11-16 04:12:29 +01:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2021-01-25 11:54:36 +01:00
|
|
|
$input = $this->decodePrimaryKeys($input);
|
2019-11-16 04:12:29 +01:00
|
|
|
|
2023-12-11 12:42:50 +01:00
|
|
|
$input['id'] = $this->quote->id;
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (isset($input['line_items'])) {
|
2019-11-16 04:12:29 +01:00
|
|
|
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-11-16 04:12:29 +01:00
|
|
|
|
2021-01-08 11:19:26 +01:00
|
|
|
if (array_key_exists('documents', $input)) {
|
|
|
|
unset($input['documents']);
|
|
|
|
}
|
|
|
|
|
2023-07-16 12:34:31 +02:00
|
|
|
if (array_key_exists('exchange_rate', $input) && is_null($input['exchange_rate'])) {
|
|
|
|
$input['exchange_rate'] = 1;
|
|
|
|
}
|
|
|
|
|
2020-08-14 14:21:46 +02:00
|
|
|
|
2019-11-16 04:12:29 +01:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|