mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
87 lines
2.5 KiB
PHP
87 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Http\Requests\Credit;
|
|
|
|
use App\Http\Requests\Request;
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
|
use App\Utils\Traits\CleanLineItems;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class UpdateCreditRequest extends Request
|
|
{
|
|
use MakesHash;
|
|
use CleanLineItems;
|
|
use ChecksEntityStatus;
|
|
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize() : bool
|
|
{
|
|
return auth()->user()->can('edit', $this->credit);
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
$rules = [];
|
|
|
|
if ($this->input('documents') && is_array($this->input('documents'))) {
|
|
$documents = count($this->input('documents'));
|
|
|
|
foreach (range(0, $documents) as $index) {
|
|
$rules['documents.'.$index] = 'file|mimes:png,ai,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000';
|
|
}
|
|
} elseif ($this->input('documents')) {
|
|
$rules['documents'] = 'file|mimes:png,ai,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000';
|
|
}
|
|
|
|
if ($this->number) {
|
|
$rules['number'] = Rule::unique('credits')->where('company_id', auth()->user()->company()->id)->ignore($this->credit->id);
|
|
}
|
|
|
|
$rules['line_items'] = 'array';
|
|
$rules['discount'] = 'sometimes|numeric';
|
|
$rules['is_amount_discount'] = ['boolean'];
|
|
$rules['tax_rate1'] = 'bail|sometimes|numeric';
|
|
$rules['tax_rate2'] = 'bail|sometimes|numeric';
|
|
$rules['tax_rate3'] = 'bail|sometimes|numeric';
|
|
$rules['tax_name1'] = 'bail|sometimes|string|nullable';
|
|
$rules['tax_name2'] = 'bail|sometimes|string|nullable';
|
|
$rules['tax_name3'] = 'bail|sometimes|string|nullable';
|
|
|
|
return $rules;
|
|
}
|
|
|
|
public function prepareForValidation()
|
|
{
|
|
$input = $this->all();
|
|
|
|
$input = $this->decodePrimaryKeys($input);
|
|
|
|
if (isset($input['line_items'])) {
|
|
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
|
|
}
|
|
|
|
$input['id'] = $this->credit->id;
|
|
|
|
$this->replace($input);
|
|
}
|
|
}
|