removing currency display for meters
This commit is contained in:
@@ -122,6 +122,9 @@ public class ZesaConfirmationHotProcessor implements TransactionProcessorInterfa
|
||||
Map<String, Object> details = (Map<String, Object>) customerData.get("details");
|
||||
if (details != null) {
|
||||
for (Map.Entry<String, Object> 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()));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user