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

55 lines
1.4 KiB
PHP
Raw Normal View History

2022-05-13 10:53:38 +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)
2022-05-13 10:53:38 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Http\Requests\Report;
use App\Http\Requests\Request;
class ProfitLossRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
2024-01-14 05:05:00 +01:00
public function authorize(): bool
2022-05-13 10:53:38 +02:00
{
2023-11-29 13:23:34 +01:00
/** @var \App\Models\User $user */
$user = auth()->user();
return $user->isAdmin();
2022-05-13 10:53:38 +02:00
}
public function rules()
{
return [
2022-12-14 06:41:05 +01:00
'start_date' => 'bail|nullable|required_if:date_range,custom|string|date',
'end_date' => 'bail|nullable|required_if:date_range,custom|string|date',
2022-05-13 10:53:38 +02:00
'is_income_billed' => 'required|bail|bool',
2022-09-23 08:54:22 +02:00
'is_expense_billed' => 'bool',
2022-05-13 10:53:38 +02:00
'include_tax' => 'required|bail|bool',
2022-05-26 08:58:14 +02:00
'date_range' => 'sometimes|string',
'send_email' => 'bool',
2022-05-13 10:53:38 +02:00
];
}
2022-05-26 08:58:14 +02:00
public function prepareForValidation()
{
$input = $this->all();
2023-02-07 10:10:47 +01:00
if (! array_key_exists('date_range', $input) || $input['date_range'] == '') {
2022-05-26 08:58:14 +02:00
$input['date_range'] = 'all';
}
2022-05-26 08:58:14 +02:00
$this->replace($input);
}
2022-05-13 10:53:38 +02:00
}