2017-01-30 20:40:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
2016-01-06 20:52:09 +01:00
|
|
|
|
|
|
|
use App\Events\ExpenseWasCreated;
|
2016-01-08 19:01:00 +01:00
|
|
|
use App\Events\ExpenseWasUpdated;
|
2017-01-30 20:40:43 +01:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
use Laracasts\Presenter\PresentableTrait;
|
|
|
|
use Utils;
|
2016-01-06 20:52:09 +01:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
2017-01-30 20:40:43 +01:00
|
|
|
* Class Expense.
|
2016-07-03 18:11:58 +02:00
|
|
|
*/
|
2016-01-06 20:52:09 +01:00
|
|
|
class Expense extends EntityModel
|
|
|
|
{
|
2016-01-07 16:14:11 +01:00
|
|
|
// Expenses
|
2016-01-06 20:52:09 +01:00
|
|
|
use SoftDeletes;
|
|
|
|
use PresentableTrait;
|
2016-01-15 11:31:12 +01:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
2016-02-18 11:02:30 +01:00
|
|
|
protected $dates = ['deleted_at'];
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
2016-01-06 20:52:09 +01:00
|
|
|
protected $presenter = 'App\Ninja\Presenters\ExpensePresenter';
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
2016-01-08 19:01:00 +01:00
|
|
|
protected $fillable = [
|
2016-01-21 21:36:49 +01:00
|
|
|
'client_id',
|
|
|
|
'vendor_id',
|
2016-02-01 23:07:09 +01:00
|
|
|
'expense_currency_id',
|
2016-10-02 09:10:28 +02:00
|
|
|
'expense_date',
|
2016-02-01 23:07:09 +01:00
|
|
|
'invoice_currency_id',
|
2016-01-08 19:01:00 +01:00
|
|
|
'amount',
|
2016-01-20 23:09:10 +01:00
|
|
|
'foreign_amount',
|
2016-01-08 19:01:00 +01:00
|
|
|
'exchange_rate',
|
|
|
|
'private_notes',
|
|
|
|
'public_notes',
|
2016-01-26 21:22:33 +01:00
|
|
|
'bank_id',
|
|
|
|
'transaction_id',
|
2016-07-05 20:49:47 +02:00
|
|
|
'expense_category_id',
|
2016-07-07 18:54:06 +02:00
|
|
|
'tax_rate1',
|
|
|
|
'tax_name1',
|
|
|
|
'tax_rate2',
|
|
|
|
'tax_name2',
|
2016-01-15 11:31:12 +01:00
|
|
|
];
|
2016-07-03 18:11:58 +02:00
|
|
|
|
2016-10-02 09:10:28 +02:00
|
|
|
public static function getImportColumns()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'client',
|
|
|
|
'vendor',
|
|
|
|
'amount',
|
|
|
|
'public_notes',
|
2016-10-05 22:46:15 +02:00
|
|
|
'expense_category',
|
2016-10-02 09:10:28 +02:00
|
|
|
'expense_date',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function getImportMap()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'amount|total' => 'amount',
|
2016-10-05 22:46:15 +02:00
|
|
|
'category' => 'expense_category',
|
2016-10-02 09:10:28 +02:00
|
|
|
'client' => 'client',
|
|
|
|
'vendor' => 'vendor',
|
|
|
|
'notes|details' => 'public_notes',
|
|
|
|
'date' => 'expense_date',
|
|
|
|
];
|
|
|
|
}
|
2017-01-30 20:40:43 +01:00
|
|
|
|
2016-07-05 20:49:47 +02:00
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function expense_category()
|
|
|
|
{
|
2016-07-06 20:35:16 +02:00
|
|
|
return $this->belongsTo('App\Models\ExpenseCategory')->withTrashed();
|
2016-07-05 20:49:47 +02:00
|
|
|
}
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
2016-01-06 20:52:09 +01:00
|
|
|
public function account()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\Models\Account');
|
|
|
|
}
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-01-06 20:52:09 +01:00
|
|
|
public function user()
|
|
|
|
{
|
2016-06-08 07:11:05 +02:00
|
|
|
return $this->belongsTo('App\Models\User')->withTrashed();
|
2016-01-06 20:52:09 +01:00
|
|
|
}
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-01-06 20:52:09 +01:00
|
|
|
public function vendor()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\Models\Vendor')->withTrashed();
|
|
|
|
}
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-01-21 20:15:30 +01:00
|
|
|
public function client()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\Models\Client')->withTrashed();
|
|
|
|
}
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-01-21 23:29:10 +01:00
|
|
|
public function invoice()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\Models\Invoice')->withTrashed();
|
|
|
|
}
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-03-24 23:15:52 +01:00
|
|
|
public function documents()
|
|
|
|
{
|
|
|
|
return $this->hasMany('App\Models\Document')->orderBy('id');
|
|
|
|
}
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-01-06 20:52:09 +01:00
|
|
|
public function getName()
|
|
|
|
{
|
2016-09-22 09:24:55 +02:00
|
|
|
if ($this->transaction_id) {
|
|
|
|
return $this->transaction_id;
|
|
|
|
} elseif ($this->public_notes) {
|
2017-01-30 20:40:43 +01:00
|
|
|
return mb_strimwidth($this->public_notes, 0, 16, '...');
|
2016-09-22 09:24:55 +02:00
|
|
|
} else {
|
|
|
|
return '#' . $this->public_id;
|
|
|
|
}
|
2016-01-08 19:01:00 +01:00
|
|
|
}
|
2016-01-15 11:31:12 +01:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-01-08 19:01:00 +01:00
|
|
|
public function getDisplayName()
|
|
|
|
{
|
|
|
|
return $this->getName();
|
2016-01-06 20:52:09 +01:00
|
|
|
}
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2016-01-08 19:01:00 +01:00
|
|
|
public function getRoute()
|
|
|
|
{
|
|
|
|
return "/expenses/{$this->public_id}";
|
|
|
|
}
|
2016-01-15 11:31:12 +01:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-01-06 20:52:09 +01:00
|
|
|
public function getEntityType()
|
|
|
|
{
|
|
|
|
return ENTITY_EXPENSE;
|
|
|
|
}
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
2016-02-17 12:06:03 +01:00
|
|
|
public function isExchanged()
|
2016-01-06 20:52:09 +01:00
|
|
|
{
|
2016-07-27 12:54:00 +02:00
|
|
|
return $this->invoice_currency_id != $this->expense_currency_id || $this->exchange_rate != 1;
|
2016-01-06 20:52:09 +01:00
|
|
|
}
|
2016-03-24 23:15:52 +01:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @return float
|
|
|
|
*/
|
2016-03-24 23:15:52 +01:00
|
|
|
public function convertedAmount()
|
|
|
|
{
|
|
|
|
return round($this->amount * $this->exchange_rate, 2);
|
|
|
|
}
|
2016-05-15 12:58:11 +02:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
2016-03-24 23:15:52 +01:00
|
|
|
public function toArray()
|
|
|
|
{
|
|
|
|
$array = parent::toArray();
|
2016-05-15 12:58:11 +02:00
|
|
|
|
2017-01-30 17:05:31 +01:00
|
|
|
if (empty($this->visible) || in_array('converted_amount', $this->visible)) {
|
|
|
|
$array['converted_amount'] = $this->convertedAmount();
|
|
|
|
}
|
2016-05-15 12:58:11 +02:00
|
|
|
|
2016-03-24 23:15:52 +01:00
|
|
|
return $array;
|
|
|
|
}
|
2016-05-15 12:58:11 +02:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @param $query
|
|
|
|
* @param null $bankdId
|
2017-01-30 20:40:43 +01:00
|
|
|
*
|
2016-07-03 18:11:58 +02:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-05-15 12:58:11 +02:00
|
|
|
public function scopeBankId($query, $bankdId = null)
|
|
|
|
{
|
|
|
|
if ($bankdId) {
|
|
|
|
$query->whereBankId($bankId);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $query;
|
|
|
|
}
|
2016-10-27 16:26:42 +02:00
|
|
|
|
|
|
|
public function amountWithTax()
|
|
|
|
{
|
|
|
|
return Utils::calculateTaxes($this->amount, $this->tax_rate1, $this->tax_rate2);
|
|
|
|
}
|
2016-11-18 14:31:43 +01:00
|
|
|
|
|
|
|
public static function getStatuses($entityType = false)
|
|
|
|
{
|
2016-11-20 15:08:36 +01:00
|
|
|
$statuses = [];
|
2016-11-18 14:31:43 +01:00
|
|
|
$statuses[EXPENSE_STATUS_LOGGED] = trans('texts.logged');
|
|
|
|
$statuses[EXPENSE_STATUS_INVOICED] = trans('texts.invoiced');
|
|
|
|
$statuses[EXPENSE_STATUS_PAID] = trans('texts.paid');
|
|
|
|
|
|
|
|
return $statuses;
|
|
|
|
}
|
2016-12-26 19:09:49 +01:00
|
|
|
|
|
|
|
public static function calcStatusLabel($shouldBeInvoiced, $invoiceId, $balance)
|
|
|
|
{
|
|
|
|
if ($invoiceId) {
|
|
|
|
if (floatval($balance) > 0) {
|
|
|
|
$label = 'invoiced';
|
|
|
|
} else {
|
|
|
|
$label = 'paid';
|
|
|
|
}
|
|
|
|
} elseif ($shouldBeInvoiced) {
|
|
|
|
$label = 'pending';
|
|
|
|
} else {
|
|
|
|
$label = 'logged';
|
|
|
|
}
|
|
|
|
|
|
|
|
return trans("texts.{$label}");
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function calcStatusClass($shouldBeInvoiced, $invoiceId, $balance)
|
|
|
|
{
|
|
|
|
if ($invoiceId) {
|
|
|
|
if (floatval($balance) > 0) {
|
|
|
|
return 'default';
|
|
|
|
} else {
|
|
|
|
return 'success';
|
|
|
|
}
|
|
|
|
} elseif ($shouldBeInvoiced) {
|
|
|
|
return 'warning';
|
|
|
|
} else {
|
|
|
|
return 'primary';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function statusClass()
|
|
|
|
{
|
|
|
|
$balance = $this->invoice ? $this->invoice->balance : 0;
|
|
|
|
|
|
|
|
return static::calcStatusClass($this->should_be_invoiced, $this->invoice_id, $balance);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function statusLabel()
|
|
|
|
{
|
|
|
|
$balance = $this->invoice ? $this->invoice->balance : 0;
|
|
|
|
|
|
|
|
return static::calcStatusLabel($this->should_be_invoiced, $this->invoice_id, $balance);
|
|
|
|
}
|
2016-01-06 20:52:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Expense::creating(function ($expense) {
|
|
|
|
$expense->setNullValues();
|
|
|
|
});
|
|
|
|
|
|
|
|
Expense::created(function ($expense) {
|
|
|
|
event(new ExpenseWasCreated($expense));
|
|
|
|
});
|
|
|
|
|
|
|
|
Expense::updating(function ($expense) {
|
|
|
|
$expense->setNullValues();
|
|
|
|
});
|
|
|
|
|
|
|
|
Expense::updated(function ($expense) {
|
|
|
|
event(new ExpenseWasUpdated($expense));
|
|
|
|
});
|
|
|
|
|
2016-01-15 11:31:12 +01:00
|
|
|
Expense::deleting(function ($expense) {
|
|
|
|
$expense->setNullValues();
|
|
|
|
});
|