2021-07-26 00:22:29 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Preview;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Http\ValidationRules\Project\ValidProjectForClient;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use App\Utils\Traits\CleanLineItems;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Validation\Rule;
|
|
|
|
|
|
|
|
class PreviewInvoiceRequest extends Request
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
use CleanLineItems;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('create', Invoice::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
$rules = [];
|
|
|
|
|
2021-08-05 11:50:25 +02:00
|
|
|
// $rules['client_id'] = 'bail|required|exists:clients,id,company_id,'.auth()->user()->company()->id;
|
2021-07-26 00:22:29 +02:00
|
|
|
|
|
|
|
$rules['number'] = ['nullable'];
|
|
|
|
|
|
|
|
return $rules;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function prepareForValidation()
|
|
|
|
{
|
|
|
|
$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;
|
2021-07-27 11:38:40 +02:00
|
|
|
$input['number'] = ctrans('texts.live_preview') . " #". rand(0,1000);
|
2021-07-26 00:22:29 +02:00
|
|
|
|
|
|
|
$this->replace($input);
|
|
|
|
}
|
|
|
|
}
|