kpsul - fix account balance ukf

This commit is contained in:
Aurélien Delobelle 2017-04-05 13:18:01 +02:00
parent 6bb9280b0d
commit 2e0de75471

View file

@ -309,7 +309,7 @@ class Account extends APIModelObject {
/** /**
* Balance converted to UKF according to cof status. * Balance converted to UKF according to cof status.
*/ */
get balance_ukf() { return amountToUKF(this.balance, this.is_cof); } get balance_ukf() { return amountToUKF(this.balance, this.is_cof, true); }
} }