2019-05-02 13:07:38 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-05-02 13:07:38 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Quote;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2020-08-13 08:15:46 +02:00
|
|
|
use App\Http\ValidationRules\Quote\UniqueQuoteNumberRule;
|
2019-05-02 13:07:38 +02:00
|
|
|
use App\Models\Quote;
|
2020-02-15 10:06:30 +01:00
|
|
|
use App\Utils\Traits\CleanLineItems;
|
2019-12-17 23:40:15 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-05-02 13:07:38 +02:00
|
|
|
|
|
|
|
class StoreQuoteRequest extends Request
|
|
|
|
{
|
2019-12-17 23:40:15 +01:00
|
|
|
use MakesHash;
|
2020-02-15 10:06:30 +01:00
|
|
|
use CleanLineItems;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-05-02 13:07:38 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('create', Quote::class);
|
|
|
|
}
|
|
|
|
|
2019-12-17 23:40:15 +01:00
|
|
|
public function rules()
|
2019-05-02 13:07:38 +02:00
|
|
|
{
|
2020-06-22 23:48:45 +02:00
|
|
|
$rules = [];
|
|
|
|
|
|
|
|
$rules['client_id'] = 'required|exists:clients,id,company_id,'.auth()->user()->company()->id;
|
|
|
|
|
|
|
|
if ($this->input('documents') && is_array($this->input('documents'))) {
|
|
|
|
$documents = count($this->input('documents'));
|
|
|
|
|
|
|
|
foreach (range(0, $documents) as $index) {
|
2020-09-06 11:38:10 +02:00
|
|
|
$rules['documents.'.$index] = 'file|mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000';
|
2020-06-22 23:48:45 +02:00
|
|
|
}
|
|
|
|
} elseif ($this->input('documents')) {
|
|
|
|
$rules['documents'] = 'file|mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000';
|
|
|
|
}
|
|
|
|
|
2020-08-13 08:15:46 +02:00
|
|
|
$rules['number'] = new UniqueQuoteNumberRule($this->all());
|
2021-01-13 22:16:07 +01:00
|
|
|
$rules['line_items'] = 'array';
|
2020-08-13 08:15:46 +02:00
|
|
|
|
2020-06-22 23:48:45 +02:00
|
|
|
return $rules;
|
2019-05-02 13:07:38 +02:00
|
|
|
}
|
2021-01-25 11:54:36 +01:00
|
|
|
|
|
|
|
protected function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
|
|
$input = $this->decodePrimaryKeys($input);
|
|
|
|
|
|
|
|
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
|
|
|
|
$input['amount'] = 0;
|
|
|
|
$input['balance'] = 0;
|
|
|
|
|
|
|
|
$this->replace($input);
|
|
|
|
}
|
2019-05-02 13:07:38 +02:00
|
|
|
}
|