1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-15 23:52:33 +01:00
invoiceninja/app/Http/Requests/Credit/UpdateCreditRequest.php

112 lines
3.3 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2024-04-12 06:15:41 +02:00
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Http\Requests\Credit;
2020-11-25 15:19:52 +01:00
use App\Http\Requests\Request;
use App\Utils\Traits\ChecksEntityStatus;
use App\Utils\Traits\CleanLineItems;
use App\Utils\Traits\MakesHash;
2021-03-19 23:51:52 +01:00
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
*/
2024-01-14 05:05:00 +01:00
public function authorize(): bool
{
2023-08-08 12:39:46 +02:00
/** @var \App\Models\User $user */
$user = auth()->user();
return $user->can('edit', $this->credit);
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
2023-08-08 12:39:46 +02:00
/** @var \App\Models\User $user */
$user = auth()->user();
$rules = [];
2024-01-14 05:05:00 +01:00
2023-03-18 08:24:56 +01:00
if ($this->file('documents') && is_array($this->file('documents'))) {
2024-03-19 00:46:57 +01:00
$rules['documents.*'] = $this->fileValidation();
2023-03-18 08:24:56 +01:00
} elseif ($this->file('documents')) {
2024-03-19 00:46:57 +01:00
$rules['documents'] = $this->fileValidation();
2024-06-14 09:09:44 +02:00
} else {
2024-02-16 19:57:15 +01:00
$rules['documents'] = 'bail|sometimes|array';
2023-03-18 08:24:56 +01:00
}
2023-02-27 10:12:59 +01:00
if ($this->file('file') && is_array($this->file('file'))) {
2024-03-19 00:46:57 +01:00
$rules['file.*'] = $this->fileValidation();
2023-02-27 10:12:59 +01:00
} elseif ($this->file('file')) {
2024-03-19 00:46:57 +01:00
$rules['file'] = $this->fileValidation();
}
2023-12-11 12:42:50 +01:00
$rules['number'] = ['bail', 'sometimes', 'nullable', Rule::unique('credits')->where('company_id', $user->company()->id)->ignore($this->credit->id)];
2024-01-14 05:05:00 +01:00
2023-12-04 22:57:43 +01:00
$rules['client_id'] = ['bail', 'sometimes',Rule::in([$this->credit->client_id])];
2021-01-13 22:16:07 +01:00
$rules['line_items'] = 'array';
2024-05-06 03:48:44 +02:00
2024-05-13 10:08:01 +02:00
$rules['date'] = 'bail|sometimes|date:Y-m-d';
$rules['discount'] = 'sometimes|numeric|max:99999999999999';
2022-02-27 07:49:49 +01:00
$rules['is_amount_discount'] = ['boolean'];
2022-11-05 05:13:08 +01:00
$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';
2023-08-08 12:39:46 +02:00
$rules['exchange_rate'] = 'bail|sometimes|numeric';
$rules['amount'] = ['sometimes', 'bail', 'numeric', 'max:99999999999999'];
2023-07-16 12:34:31 +02:00
return $rules;
}
2022-06-24 03:55:41 +02:00
public function prepareForValidation()
{
$input = $this->all();
$input = $this->decodePrimaryKeys($input);
2024-04-15 01:14:11 +02:00
if(isset($input['partial']) && $input['partial'] == 0) {
$input['partial_due_date'] = null;
}
2021-03-26 20:43:52 +01:00
if (isset($input['line_items'])) {
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
$input['amount'] = $this->entityTotalAmount($input['line_items']);
2021-03-26 20:43:52 +01:00
}
2023-07-16 12:34:31 +02:00
if (array_key_exists('exchange_rate', $input) && is_null($input['exchange_rate'])) {
$input['exchange_rate'] = 1;
}
2020-08-14 14:21:46 +02:00
$input['id'] = $this->credit->id;
$this->replace($input);
}
}