2022-06-29 03:37:40 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2022-06-29 03:37:40 +02:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Preview;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Models\PurchaseOrder;
|
|
|
|
use App\Utils\Traits\CleanLineItems;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
|
|
|
|
class PreviewPurchaseOrderRequest extends Request
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
use CleanLineItems;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
2023-02-28 12:07:58 +01:00
|
|
|
return auth()->user()->hasIntersectPermissionsOrAdmin(['create_purchase_order', 'edit_purchase_order', 'view_purchase_order']);
|
2022-06-29 03:37:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
$rules = [];
|
|
|
|
|
|
|
|
$rules['number'] = ['nullable'];
|
|
|
|
|
|
|
|
return $rules;
|
|
|
|
}
|
|
|
|
|
2022-07-15 14:59:25 +02:00
|
|
|
public function prepareForValidation()
|
2022-06-29 03:37:40 +02:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
|
|
$input = $this->decodePrimaryKeys($input);
|
|
|
|
|
|
|
|
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
|
|
|
|
$input['amount'] = 0;
|
|
|
|
$input['balance'] = 0;
|
2023-02-16 02:36:09 +01:00
|
|
|
$input['number'] = ctrans('texts.live_preview') . " #". rand(0, 1000);
|
2022-06-29 03:37:40 +02:00
|
|
|
|
|
|
|
$this->replace($input);
|
|
|
|
}
|
|
|
|
}
|