1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

Fix for refund payment currency symbol

This commit is contained in:
Hillel Coren 2018-03-22 15:31:23 +02:00
parent 3752d6eb66
commit f79db38c1b

View File

@ -19,7 +19,7 @@ class PaymentPresenter extends EntityPresenter
public function currencySymbol()
{
return Utils::getFromCache($this->entity->currency_id ? $this->entity->currency_id : DEFAULT_CURRENCY, 'currencies')->symbol;
return Utils::getFromCache($this->entity->client->currency_id ? $this->entity->client->currency_id : DEFAULT_CURRENCY, 'currencies')->symbol;
}
public function client()