mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
60 lines
1.3 KiB
PHP
60 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\Requests\Product;
|
|
|
|
use App\Http\Requests\Request;
|
|
use App\Models\Product;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class UpdateProductRequest 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()
|
|
{
|
|
//when updating you need to ignore the column ID
|
|
$this->sanitize();
|
|
|
|
return [
|
|
//'product_key' => 'unique:products,product_key,'.$this->product->id.',id,company_id,'.auth()->user()->companyId(),
|
|
'cost' => 'numeric',
|
|
'price' => 'numeric',
|
|
'quantity' => 'numeric',
|
|
];
|
|
}
|
|
|
|
|
|
public function sanitize()
|
|
{
|
|
$input = $this->all();
|
|
|
|
if(!isset($input['quantity']) || $input['quantity'] < 1)
|
|
$input['quantity'] = 1;
|
|
|
|
$this->replace($input);
|
|
|
|
return $this->all();
|
|
}
|
|
}
|
|
|