Update OfferBookViewModel.java

This commit is contained in:
Pac 2019-11-17 18:50:58 -03:00 committed by GitHub
parent fb96ad3550
commit 2e85195299
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -429,7 +429,7 @@ class OfferBookViewModel extends ActivatableViewModel {
String result = "";
if (item != null) {
Offer offer = item.getOffer();
result = Res.get("shared.paymentMethod") + " " + Res.get(offer.getPaymentMethod().getId());
result = Res.getWithCol("shared.paymentMethod") + " " + Res.get(offer.getPaymentMethod().getId());
result += "\n" + Res.getWithCol("shared.currency") + " " + CurrencyUtil.getNameAndCode(offer.getCurrencyCode());
String countryCode = offer.getCountryCode();