1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/app/Http/Requests/Product/UpdateProductRequest.php

55 lines
1.2 KiB
PHP
Raw Normal View History

2019-04-03 05:22:13 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
2019-04-03 05:22:13 +02:00
namespace App\Http\Requests\Product;
use App\Http\Requests\Request;
use App\Models\Product;
use App\Utils\Traits\ChecksEntityStatus;
2019-04-03 05:22:13 +02:00
use Illuminate\Support\Facades\Log;
class UpdateProductRequest extends Request
{
use ChecksEntityStatus;
2019-04-03 05:22:13 +02:00
/**
* 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()
{
return [
2019-10-04 13:01:52 +02:00
//'product_key' => 'unique:products,product_key,'.$this->product->id.',id,company_id,'.auth()->user()->companyId(),
2019-07-04 06:31:01 +02:00
'cost' => 'numeric',
'price' => 'numeric',
2019-09-04 14:01:19 +02:00
'quantity' => 'numeric',
2019-04-03 05:22:13 +02:00
];
}
2019-10-04 13:57:33 +02:00
protected function prepareForValidation()
2019-10-04 13:57:33 +02:00
{
$input = $this->all();
if (!isset($input['quantity']) || $input['quantity'] < 1) {
2019-10-04 13:57:33 +02:00
$input['quantity'] = 1;
}
2019-10-04 13:57:33 +02:00
$this->replace($input);
}
2019-04-03 05:22:13 +02:00
}