invoiceninja/app/Http/Requests/ExpenseRequest.php

49 lines
1.4 KiB
PHP
Raw Normal View History

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
// 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();
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);
}
if ($this->vendor_id == '-1' && $this->user()->can('create', ENTITY_VENDOR)) {
$vendor = app('App\Ninja\Repositories\VendorRepository')->save([
'name' => $this->vendor_name,
]);
// TODO change to private id once service is refactored
$input['vendor_id'] = $vendor->public_id;
}
$this->replace($input);
2016-08-23 13:42:02 +03:00
return $this->all();
}
}