2022-01-27 02:36:42 +01: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-01-27 02:36:42 +01:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Quote;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Http\ValidationRules\Quote\ConvertableQuoteRule;
|
|
|
|
|
|
|
|
class BulkActionQuoteRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2023-09-07 06:20:32 +02:00
|
|
|
$rules = [
|
|
|
|
'action' => 'sometimes|in:convert_to_invoice,convert_to_project,email,bulk_download,bulk_print,clone_to_invoice,approve,download,restore,archive,delete,send_email,mark_sent',
|
|
|
|
];
|
2022-01-27 02:36:42 +01:00
|
|
|
|
2023-10-26 04:57:44 +02:00
|
|
|
if (in_array($input['action'], ['convert,convert_to_invoice'])) {
|
2022-06-21 11:57:17 +02:00
|
|
|
$rules['action'] = [new ConvertableQuoteRule()];
|
|
|
|
}
|
2022-01-27 02:36:42 +01:00
|
|
|
|
|
|
|
return $rules;
|
|
|
|
}
|
|
|
|
}
|