2020-09-23 02:46:35 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-23 02:46:35 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-09-23 02:46:35 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Expense;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Http\ValidationRules\Expense\UniqueExpenseNumberRule;
|
|
|
|
use App\Models\Expense;
|
2022-08-21 01:13:06 +02:00
|
|
|
use App\Models\Project;
|
2022-07-06 12:04:59 +02:00
|
|
|
use App\Models\PurchaseOrder;
|
2020-09-23 02:46:35 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Validation\Rule;
|
|
|
|
|
|
|
|
class StoreExpenseRequest 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', Expense::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2020-10-22 08:46:02 +02:00
|
|
|
$rules = [];
|
2020-10-19 23:31:19 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($this->number) {
|
2020-12-11 21:51:10 +01:00
|
|
|
$rules['number'] = Rule::unique('expenses')->where('company_id', auth()->user()->company()->id);
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
|
|
|
|
2022-12-23 02:20:15 +01:00
|
|
|
if ($this->client_id) {
|
2021-01-11 22:57:48 +01:00
|
|
|
$rules['client_id'] = 'bail|sometimes|exists:clients,id,company_id,'.auth()->user()->company()->id;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2020-09-23 02:46:35 +02:00
|
|
|
|
2022-11-30 07:15:22 +01:00
|
|
|
$rules['category_id'] = 'bail|nullable|sometimes|exists:expense_categories,id,company_id,'.auth()->user()->company()->id.',is_deleted,0';
|
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
return $this->globalRules($rules);
|
2020-09-23 02:46:35 +02:00
|
|
|
}
|
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2020-09-23 02:46:35 +02:00
|
|
|
{
|
2020-10-22 08:46:02 +02:00
|
|
|
$input = $this->all();
|
2020-09-23 02:46:35 +02:00
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
$input = $this->decodePrimaryKeys($input);
|
2020-09-23 02:46:35 +02:00
|
|
|
|
2020-12-13 21:58:18 +01: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;
|
2020-12-11 21:51:10 +01:00
|
|
|
}
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (array_key_exists('color', $input) && is_null($input['color'])) {
|
2021-07-11 02:16:27 +02:00
|
|
|
$input['color'] = '';
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-01-07 23:25:00 +01:00
|
|
|
|
2022-08-21 01:13:06 +02:00
|
|
|
/* Ensure the project is related */
|
|
|
|
if (array_key_exists('project_id', $input) && isset($input['project_id'])) {
|
2022-08-25 00:10:26 +02:00
|
|
|
$project = Project::withTrashed()->where('id', $input['project_id'])->company()->first();
|
2022-08-21 01:13:06 +02:00
|
|
|
|
|
|
|
if($project){
|
|
|
|
$input['client_id'] = $project->client_id;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unset($input['project_id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
$this->replace($input);
|
2020-09-23 02:46:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function messages()
|
|
|
|
{
|
|
|
|
return [
|
2022-08-21 01:13:06 +02:00
|
|
|
// 'unique' => ctrans('validation.unique', ['attribute' => 'number']),
|
2020-09-23 02:46:35 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|