|
@@ -859,7 +859,7 @@ public class InformationWriteQueryController extends BladeController {
|
|
|
@ApiOperation(value = "填报页单个上报")
|
|
|
public R<Boolean> taskOne(@RequestBody StartTaskVO startTaskVO) throws IOException {
|
|
|
//此时的ids是当前节点的primaryKeyId但并不是业务数据ID,需要根据ids和classify去查询具体的业务ID
|
|
|
- InformationQuery businessData = this.informationQueryService.getOne(Wrappers.<InformationQuery>lambdaQuery().eq(InformationQuery::getWbsId, startTaskVO.getIds().replaceAll(",", "")).eq(InformationQuery::getClassify, startTaskVO.getClassify().toString()));
|
|
|
+ InformationQuery businessData = this.informationQueryService.getOne(Wrappers.<InformationQuery>lambdaQuery().eq(InformationQuery::getWbsId, startTaskVO.getIds().replaceAll(",", "")).eq(InformationQuery::getClassify, startTaskVO.getClassify().toString()).eq(InformationQuery::getType,1));
|
|
|
|
|
|
//处理上报信息
|
|
|
if (businessData != null) {
|