mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
57 lines
1.6 KiB
PHP
57 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use App\Models\ExpenseCategory;
|
|
|
|
class ExpenseRequest extends EntityRequest
|
|
{
|
|
protected $entityType = ENTITY_EXPENSE;
|
|
|
|
public function entity()
|
|
{
|
|
$expense = parent::entity();
|
|
|
|
// eager load the documents
|
|
if ($expense && ! $expense->relationLoaded('documents')) {
|
|
$expense->load('documents');
|
|
}
|
|
|
|
return $expense;
|
|
}
|
|
|
|
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) {
|
|
$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);
|
|
|
|
return $this->all();
|
|
}
|
|
}
|