Update IndekKinerjaServiceImpl.java

Penambahan informasi flag satu harga tarif
This commit is contained in:
salmanoersabhk 2022-11-18 10:14:39 +07:00
parent 4e990fbd47
commit c71f23f1ab

View File

@ -3266,6 +3266,7 @@ public class IndekKinerjaServiceImpl extends BaseVoServiceImpl implements IndekK
mapResult1.put("poin", point);
mapResult1.put("pointQty", formatPointQty);
mapResult1.put("kontribusi", formatRpKontribusi);
mapResult1.put("isSatuTarif", isSatuTarif);
result.add(mapResult1);
}
@ -3357,6 +3358,7 @@ public class IndekKinerjaServiceImpl extends BaseVoServiceImpl implements IndekK
mapResult2.put("poin", point);
mapResult2.put("pointQty", formatPointQty);
mapResult2.put("kontribusi", formatRpKontribusi);
mapResult2.put("isSatuTarif", isSatuTarif);
result.add(mapResult2);
}
@ -4411,6 +4413,7 @@ public class IndekKinerjaServiceImpl extends BaseVoServiceImpl implements IndekK
mapResult1.put("totalPoint", df.format(totalPoint));
mapResult1.put("hargas", CurrencyUtil.getPriceInINA(harga).replace("Rp.", ""));
mapResult1.put("maxDay", maxday);
mapResult1.put("isSatuTarif", isSatuTarif);
result.add(mapResult1);
}
@ -4483,6 +4486,7 @@ public class IndekKinerjaServiceImpl extends BaseVoServiceImpl implements IndekK
mapResult2.put("totalPoint", df.format(totalPoint));
mapResult2.put("hargas", CurrencyUtil.getPriceInINA(harga).replace("Rp.", ""));
mapResult2.put("maxDay", maxday);
mapResult2.put("isSatuTarif", isSatuTarif);
result.add(mapResult2);
}