1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 15:13:29 +01:00
invoiceninja/app/Http/Requests/ExpenseRequest.php

57 lines
1.6 KiB
PHP
Raw Normal View History

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