|
@@ -387,6 +387,9 @@ public class TBSopInfoServiceImpl extends ServiceImpl<TBSopInfoMapper, TBSopInfo
|
|
}
|
|
}
|
|
for (Map.Entry<String, List<FormWidgetMetadataParam>> entry : formWidgetMetadataParamLinkedMultiValueMap.entrySet()) {
|
|
for (Map.Entry<String, List<FormWidgetMetadataParam>> entry : formWidgetMetadataParamLinkedMultiValueMap.entrySet()) {
|
|
List<FormWidgetMetadataParam> formWidgetMetadataParamList = entry.getValue();
|
|
List<FormWidgetMetadataParam> formWidgetMetadataParamList = entry.getValue();
|
|
|
|
+ if (Objects.isNull(sopInfoListParam.getFormWidgetMetadataOperation())) {
|
|
|
|
+ sopInfoListParam.setFormWidgetMetadataOperation(FormWidgetMetadataOperation.AND);
|
|
|
|
+ }
|
|
if (formWidgetMetadataParamList.size() > 1) {
|
|
if (formWidgetMetadataParamList.size() > 1) {
|
|
StringJoiner conditionJoin = new StringJoiner("").add(sopInfoListParam.getFormWidgetMetadataOperation().getCode()).add(" ( ");
|
|
StringJoiner conditionJoin = new StringJoiner("").add(sopInfoListParam.getFormWidgetMetadataOperation().getCode()).add(" ( ");
|
|
for (int y = 0; y < formWidgetMetadataParamList.size(); y++) {
|
|
for (int y = 0; y < formWidgetMetadataParamList.size(); y++) {
|