- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
private boolean isVincodeDisabled() {
if (Long.valueOf(PaymentValidationStatus.vin_code_incorrect.getValue()).equals(paymentDTO.getErrorCode())) {
return false;
} else if (paymentDTO.getVincode() == null) {
return true;
} else {
return false;
}
}
Комментарии (0) RSS
Добавить комментарий