|
|
@@ -3194,8 +3194,14 @@ public class FeeRuleSchemeServiceNewImpl implements FeeRuleSchemeNewService {
|
|
|
}
|
|
|
|
|
|
private boolean checkBoxEqual(PtlAgreementUndwrtRulesAttrLink ptlAgreementUndwrtRulesAttrLink, String value) {
|
|
|
- if (!ptlAgreementUndwrtRulesAttrLink.getMin().contains(value)) {
|
|
|
- return true;
|
|
|
+ if(ptlAgreementUndwrtRulesAttrLink.getAttrCode().equals("NatureOfUse")){
|
|
|
+ if(!ptlAgreementUndwrtRulesAttrLink.getMin().equals(value)){
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ }else {
|
|
|
+ if (!ptlAgreementUndwrtRulesAttrLink.getMin().contains(value)) {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
}
|
|
|
return false;
|
|
|
}
|