mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
76 lines
2.1 KiB
PHP
76 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Ninja\Presenters;
|
|
|
|
use Carbon;
|
|
use Utils;
|
|
|
|
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->client->currency_id ? $this->entity->client->currency_id : DEFAULT_CURRENCY, 'currencies')->symbol;
|
|
}
|
|
|
|
public function client()
|
|
{
|
|
return $this->entity->client ? $this->entity->client->getDisplayName() : '';
|
|
}
|
|
|
|
public function payment_date()
|
|
{
|
|
return Utils::fromSqlDate($this->entity->payment_date);
|
|
}
|
|
|
|
public function month()
|
|
{
|
|
return Carbon::parse($this->entity->payment_date)->format('Y m');
|
|
}
|
|
|
|
public function payment_type()
|
|
{
|
|
if ($this->payer_id) {
|
|
return 'PayPal';
|
|
} else {
|
|
return $this->entity->payment_type ? $this->entity->payment_type->name : trans('texts.manual_entry');
|
|
}
|
|
}
|
|
|
|
public function method()
|
|
{
|
|
if ($this->entity->account_gateway) {
|
|
return $this->entity->account_gateway->gateway->name;
|
|
} elseif ($this->entity->payment_type) {
|
|
return trans('texts.payment_type_' . $this->entity->payment_type->name);
|
|
}
|
|
}
|
|
|
|
public function calendarEvent($subColors = false)
|
|
{
|
|
$data = parent::calendarEvent();
|
|
$payment = $this->entity;
|
|
$invoice = $payment->invoice;
|
|
|
|
$data->title = trans('texts.payment') . ' ' . $invoice->invoice_number . ' | ' . $this->completedAmount() . ' | ' . $this->client();
|
|
$data->start = $payment->payment_date;
|
|
|
|
if ($subColors) {
|
|
$data->borderColor = $data->backgroundColor = Utils::brewerColor($payment->payment_status_id);
|
|
} else {
|
|
$data->borderColor = $data->backgroundColor = '#5fa213';
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
}
|