2020-09-23 02:46:35 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-23 02:46:35 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Expense;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Http\ValidationRules\Expense\UniqueExpenseNumberRule;
|
|
|
|
use App\Models\Expense;
|
|
|
|
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
|
|
|
|
2021-03-20 00:06:44 +01:00
|
|
|
if ($this->number)
|
2020-12-11 21:51:10 +01:00
|
|
|
$rules['number'] = Rule::unique('expenses')->where('company_id', auth()->user()->company()->id);
|
2021-03-20 00:06:44 +01:00
|
|
|
|
2021-01-11 22:57:48 +01:00
|
|
|
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
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
return $this->globalRules($rules);
|
2020-09-23 02:46:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function prepareForValidation()
|
|
|
|
{
|
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-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']);
|
|
|
|
}
|
|
|
|
|
2020-12-13 21:58:18 +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-11 21:51:10 +01:00
|
|
|
}
|
|
|
|
|
2021-01-07 23:25:00 +01:00
|
|
|
if(array_key_exists('color', $input) && is_null($input['color']))
|
|
|
|
$input['color'] = '#fff';
|
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
$this->replace($input);
|
2020-09-23 02:46:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function messages()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'unique' => ctrans('validation.unique', ['attribute' => 'email']),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|