invoiceninja/app/Http/Requests/Report/ProfitLossRequest.php

52 lines
1.3 KiB
PHP
Raw Permalink Normal View History

2022-05-13 18:53:38 +10:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-29 09:21:40 +11:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2022-05-13 18:53:38 +10: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
*/
public function authorize() : bool
{
return auth()->user()->isAdmin();
}
public function rules()
{
return [
2022-12-14 16:41:05 +11: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 18:53:38 +10:00
'is_income_billed' => 'required|bail|bool',
2022-09-23 16:54:22 +10:00
'is_expense_billed' => 'bool',
2022-05-13 18:53:38 +10:00
'include_tax' => 'required|bail|bool',
2022-05-26 16:58:14 +10:00
'date_range' => 'sometimes|string',
'send_email' => 'bool',
2022-05-13 18:53:38 +10:00
];
}
2022-05-26 16:58:14 +10:00
public function prepareForValidation()
{
$input = $this->all();
2023-02-07 20:10:47 +11:00
if (! array_key_exists('date_range', $input) || $input['date_range'] == '') {
2022-05-26 16:58:14 +10:00
$input['date_range'] = 'all';
}
2022-05-26 16:58:14 +10:00
$this->replace($input);
}
2022-05-13 18:53:38 +10:00
}