|
|
@@ -797,14 +797,14 @@ public class FeeRuleSchemeServiceNewImpl implements FeeRuleSchemeNewService {
|
|
|
* @return
|
|
|
*/
|
|
|
private boolean checkBoxEqual(PtlAgreementProductCostsAttrLink ptlAgreementProductCostsAttrLink, String value) {
|
|
|
- if (ptlAgreementProductCostsAttrLink.getMin().contains(value)) {
|
|
|
+ if (ptlAgreementProductCostsAttrLink.getMin().equals(value)) {
|
|
|
return true;
|
|
|
}
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
private boolean checkBoxEqual(PtlAgreementUndwrtRulesAttrLink ptlAgreementUndwrtRulesAttrLink, String value) {
|
|
|
- if (!ptlAgreementUndwrtRulesAttrLink.getMin().contains(value)) {
|
|
|
+ if (!ptlAgreementUndwrtRulesAttrLink.getMin().equals(value)) {
|
|
|
return true;
|
|
|
}
|
|
|
return false;
|