2017-01-30 21:40:43 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Requests;
|
2016-05-01 15:04:55 +03:00
|
|
|
|
2016-08-23 13:42:02 +03:00
|
|
|
use App\Models\ExpenseCategory;
|
|
|
|
|
|
2017-01-30 18:05:31 +02:00
|
|
|
class ExpenseRequest extends EntityRequest
|
|
|
|
|
{
|
2016-05-01 15:04:55 +03:00
|
|
|
protected $entityType = ENTITY_EXPENSE;
|
|
|
|
|
|
|
|
|
|
public function entity()
|
|
|
|
|
{
|
|
|
|
|
$expense = parent::entity();
|
2016-08-23 13:42:02 +03:00
|
|
|
|
2016-05-05 10:15:51 +03:00
|
|
|
// eager load the documents
|
|
|
|
|
if ($expense && ! $expense->relationLoaded('documents')) {
|
2016-05-01 15:04:55 +03:00
|
|
|
$expense->load('documents');
|
|
|
|
|
}
|
2016-08-23 13:42:02 +03:00
|
|
|
|
2016-05-01 15:04:55 +03:00
|
|
|
return $expense;
|
|
|
|
|
}
|
2016-08-23 13:42:02 +03:00
|
|
|
|
|
|
|
|
public function sanitize()
|
|
|
|
|
{
|
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
2017-03-02 18:02:48 +02:00
|
|
|
if ($this->expense_category_id == '-1' && $this->user()->can('create', ENTITY_EXPENSE_CATEGORY)) {
|
|
|
|
|
$category = app('App\Ninja\Repositories\ExpenseCategoryRepository')->save([
|
|
|
|
|
'name' => $this->expense_category_name,
|
|
|
|
|
]);
|
|
|
|
|
$input['expense_category_id'] = $category->id;
|
|
|
|
|
} elseif ($this->expense_category_id) {
|
2016-08-23 13:42:02 +03:00
|
|
|
$input['expense_category_id'] = ExpenseCategory::getPrivateId($this->expense_category_id);
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-02 18:02:48 +02:00
|
|
|
if ($this->vendor_id == '-1' && $this->user()->can('create', ENTITY_VENDOR)) {
|
|
|
|
|
$vendor = app('App\Ninja\Repositories\VendorRepository')->save([
|
|
|
|
|
'name' => $this->vendor_name,
|
|
|
|
|
]);
|
2017-03-02 18:08:28 +02:00
|
|
|
// TODO change to private id once service is refactored
|
2017-03-02 18:02:48 +02:00
|
|
|
$input['vendor_id'] = $vendor->public_id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->replace($input);
|
|
|
|
|
|
2016-08-23 13:42:02 +03:00
|
|
|
return $this->all();
|
|
|
|
|
}
|
|
|
|
|
}
|