1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Requests/Expense/StoreExpenseRequest.php

92 lines
2.4 KiB
PHP
Raw Normal View History

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;
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()
{
$rules = [];
2020-10-19 23:31:19 +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);
}
if (! empty($this->client_id)) {
$rules['client_id'] = 'bail|sometimes|exists:clients,id,company_id,'.auth()->user()->company()->id;
}
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';
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
{
$input = $this->all();
2020-09-23 02:46:35 +02:00
$input = $this->decodePrimaryKeys($input);
2020-09-23 02:46:35 +02:00
if (! array_key_exists('currency_id', $input) || strlen($input['currency_id']) == 0) {
$input['currency_id'] = (string) auth()->user()->company()->settings->currency_id;
2020-12-11 21:51:10 +01:00
}
if (array_key_exists('color', $input) && is_null($input['color'])) {
$input['color'] = '';
}
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'])) {
$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']);
}
}
$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
];
}
}