void fixing

This commit is contained in:
kizzy 2026-03-26 10:38:18 +07:00
parent e10e10a793
commit c503b95027

View File

@ -350,6 +350,9 @@ public class FieldUtils {
if(payDetail.getTransCVM() == TransCVM.OFFLINE_PIN) {
value += "9";
} else {
if(payDetail.getTransactionType() == VOID.value) {
value += "0";
} else {
if (payDetail.getPINCipher() != null && !payDetail.getPINCipher().trim().isEmpty()) {
value += "1";
@ -358,6 +361,8 @@ public class FieldUtils {
}
}
}
field.setDataStr(value);