1.修复经营异常异议流程问题;2.修复勘误流程无法审核问题

This commit is contained in:
lwd 2026-01-05 21:09:30 +08:00
parent 155315d815
commit 9251d39b07
2 changed files with 2 additions and 1 deletions

View File

@ -106,7 +106,7 @@ public class TSBizDissentServiceImpl extends ServiceImpl<TSBizDissentMapper, TSB
TSAbnList tsAbnList = abnListService.getById(tsBizDissentModel.getAbnlistid()); TSAbnList tsAbnList = abnListService.getById(tsBizDissentModel.getAbnlistid());
if (BaseDataConstant.BUSTNESS_TYPE_REM_ABN_OBJECTION.equals(taskListModel.getBustype())) { // 移出经营异常异议 if (BaseDataConstant.BUSTNESS_TYPE_REM_ABN_OBJECTION.equals(taskListModel.getBustype())) { // 移出经营异常异议
abnListService.update(tsAbnList, new LambdaUpdateWrapper<TSAbnList>() abnListService.update(null, new LambdaUpdateWrapper<TSAbnList>()
.set(TSAbnList::getOperatestatus, "1") .set(TSAbnList::getOperatestatus, "1")
.set(TSAbnList::getRemSponsor, null) .set(TSAbnList::getRemSponsor, null)
.set(TSAbnList::getRemdate, null) .set(TSAbnList::getRemdate, null)

View File

@ -130,6 +130,7 @@ public class WorkFlowServiceImpl implements WorkFlowService {
twfProcessNodeModel.setStatus(PROCESS_NODE_STATUS_CURRENT); twfProcessNodeModel.setStatus(PROCESS_NODE_STATUS_CURRENT);
twfProcessNodeModel.setCurruserid(userID); twfProcessNodeModel.setCurruserid(userID);
twfProcessNodeModel.setProcessid(processid); twfProcessNodeModel.setProcessid(processid);
twfProcessNodeModel.setLauptime(localDateTime);
ResultMap resultMap = new ResultMap(); ResultMap resultMap = new ResultMap();