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

82 lines
2.2 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;
2022-08-21 01:13:06 +02:00
use App\Models\Project;
2020-09-23 02:46:35 +02:00
use App\Utils\Traits\ChecksEntityStatus;
use App\Utils\Traits\MakesHash;
use Illuminate\Validation\Rule;
class UpdateExpenseRequest extends Request
{
use MakesHash;
use ChecksEntityStatus;
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
return auth()->user()->can('edit', $this->expense);
}
public function rules()
{
/* Ensure we have a client name, and that all emails are unique*/
2022-01-25 03:43:44 +01:00
$rules = [];
2022-08-21 01:13:06 +02:00
2020-11-25 15:19:52 +01:00
if (isset($this->number)) {
2020-11-11 21:42:20 +01:00
$rules['number'] = Rule::unique('expenses')->where('company_id', auth()->user()->company()->id)->ignore($this->expense->id);
2020-11-25 15:19:52 +01:00
}
2020-09-23 02:46:35 +02:00
2020-10-22 23:00:49 +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
{
$input = $this->all();
2020-10-22 23:00:49 +02:00
$input = $this->decodePrimaryKeys($input);
2020-10-28 23:48:05 +01:00
if (array_key_exists('category_id', $input) && is_string($input['category_id'])) {
$input['category_id'] = $this->decodePrimaryKey($input['category_id']);
}
2021-01-08 11:19:26 +01:00
if (array_key_exists('documents', $input)) {
unset($input['documents']);
}
2020-12-14 12:18:54 +01: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-14 12:18:54 +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']);
}
}
2020-09-23 02:46:35 +02:00
$this->replace($input);
}
}