Browse Source

Bank validation data related implmentation left on bank name

master
Preyea Regmi 5 years ago
parent
commit
c0ec4f8691
  1. 4
      app/src/main/java/com/gmeremit/online/gmeremittance_native/recipientV3/presenter/recipientaddeditV3/RecipientDetailValidatorV3.java

4
app/src/main/java/com/gmeremit/online/gmeremittance_native/recipientV3/presenter/recipientaddeditV3/RecipientDetailValidatorV3.java

@ -567,7 +567,7 @@ public class RecipientDetailValidatorV3 {
/** /**
* Update corresponding drop down list values before call this api
* Update corresponding drop down list values before calling this api
* Apply validation to corresponding widget * Apply validation to corresponding widget
* If Business requirement is to override existing data, do it here before updating the corresponding view * If Business requirement is to override existing data, do it here before updating the corresponding view
* *
@ -588,7 +588,7 @@ public class RecipientDetailValidatorV3 {
EditTextConfigurationFactory.getKeyboardTypeFromKeyword(rule.getKeyboardType(), rule.isLocalKeyboardAllowed(), EditTextConfigurationFactory.getKeyboardTypeFromKeyword(rule.getKeyboardType(), rule.isLocalKeyboardAllowed(),
rule.getMaxFieldLengthInt())); rule.getMaxFieldLengthInt()));
if (isFieldRequired) { if (isFieldRequired) {
//TODO Update validate flag to true if has data
//TODO Update validate flag to true if has data also check for dependency check updateBank method
validationRuleModelMap.put(FIELD_BANK_NAME, rule); validationRuleModelMap.put(FIELD_BANK_NAME, rule);
} else { } else {
recipientInfo.setAgent(null); recipientInfo.setAgent(null);

Loading…
Cancel
Save