2021-08-23 01:38:55 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @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)
|
2021-08-23 01:38:55 +02:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\RecurringExpense;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Models\RecurringExpense;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Validation\Rule;
|
|
|
|
|
|
|
|
class StoreRecurringExpenseRequest extends Request
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('create', RecurringExpense::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
$rules = [];
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($this->number) {
|
2021-08-23 01:38:55 +02:00
|
|
|
$rules['number'] = Rule::unique('recurring_expenses')->where('company_id', auth()->user()->company()->id);
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (! empty($this->client_id)) {
|
2021-08-23 01:38:55 +02:00
|
|
|
$rules['client_id'] = 'bail|sometimes|exists:clients,id,company_id,'.auth()->user()->company()->id;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-08-23 01:38:55 +02:00
|
|
|
|
2022-12-20 00:26:29 +01:00
|
|
|
$rules['category_id'] = 'bail|nullable|sometimes|exists:expense_categories,id,company_id,'.auth()->user()->company()->id.',is_deleted,0';
|
2021-09-05 22:59:00 +02:00
|
|
|
$rules['frequency_id'] = 'required|integer|digits_between:1,12';
|
2021-10-25 04:19:46 +02:00
|
|
|
$rules['tax_amount1'] = 'numeric';
|
|
|
|
$rules['tax_amount2'] = 'numeric';
|
|
|
|
$rules['tax_amount3'] = 'numeric';
|
2021-09-05 22:59:00 +02:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-08-23 01:38:55 +02:00
|
|
|
return $this->globalRules($rules);
|
|
|
|
}
|
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2021-08-23 01:38:55 +02:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
|
|
$input = $this->decodePrimaryKeys($input);
|
|
|
|
|
2022-06-02 05:49:29 +02:00
|
|
|
if (array_key_exists('next_send_date', $input) && is_string($input['next_send_date'])) {
|
|
|
|
$input['next_send_date_client'] = $input['next_send_date'];
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
|
|
|
|
2021-08-23 01:38:55 +02:00
|
|
|
if (! array_key_exists('currency_id', $input) || strlen($input['currency_id']) == 0) {
|
2022-06-21 11:57:17 +02:00
|
|
|
$input['currency_id'] = (string) auth()->user()->company()->settings->currency_id;
|
2021-08-23 01:38:55 +02:00
|
|
|
}
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (array_key_exists('color', $input) && is_null($input['color'])) {
|
2021-08-23 01:38:55 +02:00
|
|
|
$input['color'] = '';
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-08-23 01:38:55 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (array_key_exists('foreign_amount', $input) && is_null($input['foreign_amount'])) {
|
2021-10-17 05:21:13 +02:00
|
|
|
$input['foreign_amount'] = 0;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-10-17 05:21:13 +02:00
|
|
|
|
2021-08-23 01:38:55 +02:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function messages()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'unique' => ctrans('validation.unique', ['attribute' => 'email']),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|