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
|
|
|
|
*/
|
2024-01-14 05:05:00 +01:00
|
|
|
public function authorize(): bool
|
2022-01-27 02:36:42 +01:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2023-09-07 06:20:32 +02:00
|
|
|
$rules = [
|
2023-11-18 08:45:26 +01:00
|
|
|
'action' => 'sometimes|in:template,convert_to_invoice,convert_to_project,email,bulk_download,bulk_print,clone_to_invoice,approve,download,restore,archive,delete,send_email,mark_sent',
|
|
|
|
'ids' => 'required|array',
|
|
|
|
'template' => 'sometimes|string',
|
|
|
|
'template_id' => 'sometimes|string',
|
|
|
|
'send_email' => 'sometimes|bool'
|
2023-09-07 06:20:32 +02:00
|
|
|
];
|
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;
|
|
|
|
}
|
|
|
|
}
|