Changed isDUL method
This commit is contained in:
parent
51ec8a098d
commit
f91fee9a18
1 changed files with 1 additions and 1 deletions
|
|
@ -143,7 +143,7 @@ public class PersonService {
|
|||
} catch (NumberFormatException e) {
|
||||
idType2 = null;
|
||||
}
|
||||
return (idType != null && idType <= 30) || (idType2 != null && (idType2 >= 1 || idType2 <= 999));
|
||||
return (idType != null && idType <= 30 && idType != 12) || (idType2 != null && (idType2 >= 1 || idType2 <= 999));
|
||||
}
|
||||
|
||||
private boolean requiredFieldPresent(NameData nameData, PassportData passportData) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue