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

51 lines
1.2 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
*
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
*
* @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 [
'start_date' => 'string|date',
'end_date' => 'string|date',
'is_income_billed' => 'required|bail|bool',
'is_expense_billed' => 'required|bail|bool',
'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();
if(!array_key_exists('date_range', $input))
$input['date_range'] = 'all';
$this->replace($input);
}
2022-05-13 10:53:38 +02:00
}