From 7ded6b2861c1505f30197f9355757d3ffa3cecd8 Mon Sep 17 00:00:00 2001 From: Prince Date: Mon, 8 Jun 2026 21:36:31 +0200 Subject: [PATCH] removing currency display for meters --- .../ZesaConfirmationHotProcessor.java | 3 + .../resources/liquibase-diff-changeLog.xml | 95 ++++++++++++++++++- 2 files changed, 96 insertions(+), 2 deletions(-) diff --git a/src/main/java/zw/qantra/tm/domain/services/processors/confirmations/hotrecharge/ZesaConfirmationHotProcessor.java b/src/main/java/zw/qantra/tm/domain/services/processors/confirmations/hotrecharge/ZesaConfirmationHotProcessor.java index 912f72f..e8f6bb2 100644 --- a/src/main/java/zw/qantra/tm/domain/services/processors/confirmations/hotrecharge/ZesaConfirmationHotProcessor.java +++ b/src/main/java/zw/qantra/tm/domain/services/processors/confirmations/hotrecharge/ZesaConfirmationHotProcessor.java @@ -122,6 +122,9 @@ public class ZesaConfirmationHotProcessor implements TransactionProcessorInterfa Map details = (Map) customerData.get("details"); if (details != null) { for (Map.Entry entry : details.entrySet()) { + // don't show customer ZWG value. It leads to confusion + if(entry.getValue().toString().equals("ZWG")) + continue; additionalDataList.add(Map.of("name", entry.getKey(), "value", entry.getValue().toString())); } } diff --git a/src/main/resources/liquibase-diff-changeLog.xml b/src/main/resources/liquibase-diff-changeLog.xml index 22a26d0..22c9a79 100644 --- a/src/main/resources/liquibase-diff-changeLog.xml +++ b/src/main/resources/liquibase-diff-changeLog.xml @@ -1,8 +1,99 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +