|
@@ -69,7 +69,9 @@ public class IntermediateContractServiceImpl extends ServiceImpl<IntermediateCon
|
|
|
Page<IntermediateContractVo> page;
|
|
|
if(dto.getIsSet()==1){//未创建
|
|
|
String ids = this.getAllIds();
|
|
|
- wrapper.notIn("d.id",Arrays.asList(ids.split(",")));
|
|
|
+ if(StringUtils.isNotEmpty(ids)){
|
|
|
+ wrapper.notIn("d.id",Arrays.asList(ids.split(",")));
|
|
|
+ }
|
|
|
//卖方公司过滤
|
|
|
page = this.baseMapper.getPage(dto.getPage(), wrapper);
|
|
|
}else{//已创建
|