2017-09-14 22:21:00 +03:00
|
|
|
<?php
|
|
|
|
|
2019-12-31 15:49:09 +03:00
|
|
|
namespace App\Http\Requests\Sale;
|
2017-09-14 22:21:00 +03:00
|
|
|
|
2019-11-16 10:21:14 +03:00
|
|
|
use App\Abstracts\Http\FormRequest;
|
2018-08-06 18:41:58 +03:00
|
|
|
use Date;
|
2017-09-14 22:21:00 +03:00
|
|
|
|
2019-11-16 10:21:14 +03:00
|
|
|
class Invoice extends FormRequest
|
2017-09-14 22:21:00 +03:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
// Check if store or update
|
|
|
|
if ($this->getMethod() == 'PATCH') {
|
2019-11-16 10:21:14 +03:00
|
|
|
$id = is_numeric($this->invoice) ? $this->invoice : $this->invoice->getAttribute('id');
|
2017-09-14 22:21:00 +03:00
|
|
|
} else {
|
|
|
|
$id = null;
|
|
|
|
}
|
|
|
|
|
2019-11-16 10:21:14 +03:00
|
|
|
$attachment = 'nullable';
|
|
|
|
|
|
|
|
if ($this->request->get('attachment', null)) {
|
|
|
|
$attachment = 'mimes:' . config('filesystems.mimes') . '|between:0,' . config('filesystems.max_size') * 1024;
|
|
|
|
}
|
|
|
|
|
2017-09-14 22:21:00 +03:00
|
|
|
// Get company id
|
2019-11-16 10:21:14 +03:00
|
|
|
$company_id = $this->request->get('company_id', 1);
|
2017-09-14 22:21:00 +03:00
|
|
|
|
|
|
|
return [
|
|
|
|
'invoice_number' => 'required|string|unique:invoices,NULL,' . $id . ',id,company_id,' . $company_id . ',deleted_at,NULL',
|
2018-06-23 15:59:13 +03:00
|
|
|
'invoice_status_code' => 'required|string',
|
2018-09-05 16:43:50 +03:00
|
|
|
'invoiced_at' => 'required|date_format:Y-m-d H:i:s',
|
|
|
|
'due_at' => 'required|date_format:Y-m-d H:i:s',
|
2018-08-30 16:06:41 +03:00
|
|
|
'amount' => 'required',
|
2019-11-16 10:21:14 +03:00
|
|
|
'items.*.name' => 'required|string',
|
|
|
|
'items.*.quantity' => 'required',
|
|
|
|
'items.*.price' => 'required|amount',
|
|
|
|
'items.*.currency' => 'required|string|currency',
|
2018-06-27 19:28:56 +03:00
|
|
|
'currency_code' => 'required|string|currency',
|
2018-06-23 15:59:13 +03:00
|
|
|
'currency_rate' => 'required',
|
2019-11-16 10:21:14 +03:00
|
|
|
'contact_id' => 'required|integer',
|
|
|
|
'contact_name' => 'required|string',
|
2018-04-23 22:17:20 +03:00
|
|
|
'category_id' => 'required|integer',
|
2019-11-16 10:21:14 +03:00
|
|
|
'attachment' => $attachment,
|
2017-09-14 22:21:00 +03:00
|
|
|
];
|
|
|
|
}
|
2018-08-06 18:41:58 +03:00
|
|
|
|
|
|
|
public function withValidator($validator)
|
|
|
|
{
|
|
|
|
if ($validator->errors()->count()) {
|
|
|
|
// Set date
|
|
|
|
$invoiced_at = Date::parse($this->request->get('invoiced_at'))->format('Y-m-d');
|
|
|
|
$due_at = Date::parse($this->request->get('due_at'))->format('Y-m-d');
|
|
|
|
|
|
|
|
$this->request->set('invoiced_at', $invoiced_at);
|
|
|
|
$this->request->set('due_at', $due_at);
|
|
|
|
}
|
|
|
|
}
|
2018-09-03 13:24:27 +03:00
|
|
|
|
|
|
|
public function messages()
|
|
|
|
{
|
|
|
|
return [
|
2019-11-16 10:21:14 +03:00
|
|
|
'items.*.name.required' => trans('validation.required', ['attribute' => mb_strtolower(trans('general.name'))]),
|
|
|
|
'items.*.quantity.required' => trans('validation.required', ['attribute' => mb_strtolower(trans('invoices.quantity'))]),
|
|
|
|
'items.*.price.required' => trans('validation.required', ['attribute' => mb_strtolower(trans('invoices.price'))]),
|
|
|
|
'items.*.currency.required' => trans('validation.custom.invalid_currency'),
|
|
|
|
'items.*.currency.string' => trans('validation.custom.invalid_currency'),
|
2018-09-03 13:24:27 +03:00
|
|
|
];
|
|
|
|
}
|
2017-09-14 22:21:00 +03:00
|
|
|
}
|