|
@@ -345,10 +345,11 @@ public class TaskController extends BladeController {
|
|
|
@ApiImplicitParam(name = "contractId", value = "合同段ID", required = true)
|
|
|
})
|
|
|
public R<List<String>> queryBatchListTwo(String projectId, String contractId,String type){
|
|
|
- //如果type为1内页台账不需要去查询首件批次,type为2只查标记为首件的,type为3只查首件
|
|
|
if (StringUtils.isBlank(type)) {
|
|
|
+ //为空,以information为主表查询填报资料批次
|
|
|
return R.data(this.taskService.queryBatchListTwo(projectId, contractId));
|
|
|
}else{
|
|
|
+ //如果type为1内页台账不需要去查询首件批次,type为2只查标记为首件的,type为3只查首件
|
|
|
return R.data(this.taskService.queryBatchListThree(projectId, contractId,type));
|
|
|
}
|
|
|
}
|