mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
48 lines
1.3 KiB
PHP
48 lines
1.3 KiB
PHP
<?php namespace App\Http\Requests;
|
|
|
|
use App\Models\Client;
|
|
|
|
class UpdateInvoiceAPIRequest extends InvoiceRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return $this->user()->can('edit', $this->entity());
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
if ($this->action == ACTION_ARCHIVE) {
|
|
return [];
|
|
}
|
|
|
|
$invoiceId = $this->entity()->id;
|
|
|
|
$rules = [
|
|
'invoice_items' => 'valid_invoice_items',
|
|
'invoice_number' => 'unique:invoices,invoice_number,' . $invoiceId . ',id,account_id,' . $this->user()->account_id,
|
|
'discount' => 'positive',
|
|
//'invoice_date' => 'date',
|
|
//'due_date' => 'date',
|
|
//'start_date' => 'date',
|
|
//'end_date' => 'date',
|
|
];
|
|
|
|
if ($this->user()->account->client_number_counter) {
|
|
$clientId = Client::getPrivateId(request()->input('client')['public_id']);
|
|
$rules['client.id_number'] = 'unique:clients,id_number,'.$clientId.',id,account_id,' . $this->user()->account_id;
|
|
}
|
|
|
|
return $rules;
|
|
}
|
|
}
|