mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
Fix for refund payment currency symbol
This commit is contained in:
parent
3752d6eb66
commit
f79db38c1b
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user