mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
33 lines
767 B
PHP
33 lines
767 B
PHP
<?php namespace App\Ninja\Presenters;
|
|
|
|
use Utils;
|
|
use Laracasts\Presenter\Presenter;
|
|
|
|
class ExpensePresenter extends Presenter {
|
|
|
|
// Expenses
|
|
public function vendor()
|
|
{
|
|
return $this->entity->vendor ? $this->entity->vendor->getDisplayName() : '';
|
|
}
|
|
|
|
public function expense_date()
|
|
{
|
|
return Utils::fromSqlDate($this->entity->expense_date);
|
|
}
|
|
|
|
public function converted_amount()
|
|
{
|
|
return round($this->entity->amount * $this->entity->exchange_rate, 2);
|
|
}
|
|
|
|
public function invoiced_amount()
|
|
{
|
|
return $this->entity->invoice_id ? $this->converted_amount() : 0;
|
|
}
|
|
|
|
public function link()
|
|
{
|
|
return link_to('/expenses/' . $this->entity->public_id, $this->entity->name);
|
|
}
|
|
} |