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

62 lines
1.6 KiB
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Ninja\Presenters;
2015-11-12 21:36:28 +01:00
2017-01-22 11:09:29 +01:00
use Carbon;
2015-11-12 21:36:28 +01:00
use Utils;
2017-01-30 17:05:31 +01:00
class PaymentPresenter extends EntityPresenter
{
public function amount()
{
return Utils::formatMoney($this->entity->amount, $this->entity->client->currency_id);
}
public function completedAmount()
{
return Utils::formatMoney($this->entity->getCompletedAmount(), $this->entity->client->currency_id);
}
public function currencySymbol()
{
return Utils::getFromCache($this->entity->currency_id ? $this->entity->currency_id : DEFAULT_CURRENCY, 'currencies')->symbol;
}
2015-11-12 21:36:28 +01:00
public function client()
{
return $this->entity->client ? $this->entity->client->getDisplayName() : '';
}
public function payment_date()
{
return Utils::fromSqlDate($this->entity->payment_date);
}
2017-01-22 11:09:29 +01:00
public function month()
{
return Carbon::parse($this->entity->payment_date)->format('Y m');
}
2015-11-12 21:36:28 +01:00
public function method()
{
if ($this->entity->account_gateway) {
return $this->entity->account_gateway->gateway->name;
} elseif ($this->entity->payment_type) {
2017-01-29 21:16:04 +01:00
return trans('texts.payment_type_' . $this->entity->payment_type->name);
2015-11-12 21:36:28 +01:00
}
}
2017-09-12 12:43:59 +02:00
public function calendarEvent()
{
$data = parent::calendarEvent();
$payment = $this->entity;
$invoice = $payment->invoice;
$data->title = trans('texts.payment') . ' ' . $invoice->invoice_number . ' | ' . $this->amount() . ' | ' . $this->client();
$data->start = $payment->payment_date;
2017-09-12 16:16:18 +02:00
$data->borderColor = $data->backgroundColor = '#7FB800';
2017-09-12 12:43:59 +02:00
return $data;
}
2016-05-23 11:26:08 +02:00
}