mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
68 lines
1.9 KiB
PHP
68 lines
1.9 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\Product;
|
|
|
|
use App\Http\Requests\Request;
|
|
use App\Models\Product;
|
|
|
|
class StoreProductRequest extends Request
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize() : bool
|
|
{
|
|
return auth()->user()->can('create', Product::class);
|
|
}
|
|
|
|
public function rules()
|
|
{
|
|
if ($this->file('documents') && is_array($this->file('documents'))) {
|
|
$rules['documents.*'] = $this->file_validation;
|
|
} elseif ($this->file('documents')) {
|
|
$rules['documents'] = $this->file_validation;
|
|
}
|
|
|
|
if ($this->file('file') && is_array($this->file('file'))) {
|
|
$rules['file.*'] = $this->file_validation;
|
|
} elseif ($this->file('file')) {
|
|
$rules['file'] = $this->file_validation;
|
|
}
|
|
|
|
$rules['cost'] = 'sometimes|numeric';
|
|
$rules['price'] = 'sometimes|numeric';
|
|
$rules['quantity'] = 'sometimes|numeric';
|
|
$rules['in_stock_quantity'] = 'sometimes|numeric';
|
|
$rules['stock_notification_threshold'] = 'sometimes|numeric';
|
|
$rules['stock_notification'] = 'sometimes|bool';
|
|
|
|
return $rules;
|
|
}
|
|
|
|
public function prepareForValidation()
|
|
{
|
|
$input = $this->all();
|
|
|
|
if (! isset($input['quantity']) || $input['quantity'] < 1) {
|
|
$input['quantity'] = 1;
|
|
}
|
|
|
|
if (array_key_exists('assigned_user_id', $input) && is_string($input['assigned_user_id'])) {
|
|
$input['assigned_user_id'] = $this->decodePrimaryKey($input['assigned_user_id']);
|
|
}
|
|
|
|
$this->replace($input);
|
|
}
|
|
}
|