|
@@ -790,6 +790,7 @@ public class PmDemandServiceImpl extends ServiceImpl<PmDemandMapper, PmDemand> i
|
|
|
PmDemand pmDemandUpdate = new PmDemand();
|
|
|
pmDemandUpdate.setDemandId(pmDemand.getDemandId());
|
|
|
pmDemandUpdate.setProjectStatus(PmProjectStatus.DEMAND_WAIT_AUDIT.getCode());
|
|
|
+ pmDemandUpdate.setWarnStatus(WarnStatus.NORMAL.getCode());
|
|
|
pmDemandUpdate.setRealDemandCommitTime(DateUtils.getNowDate());
|
|
|
pmDemandUpdate.setUpdateBy(pmDemandReqVo.getUpdateBy());
|
|
|
pmDemandUpdate.setUpdateTime(DateUtils.getNowDate());
|
|
@@ -1721,6 +1722,7 @@ public class PmDemandServiceImpl extends ServiceImpl<PmDemandMapper, PmDemand> i
|
|
|
pmDemandUpdate.setDemandId(demandId);
|
|
|
pmDemandUpdate.setProjectStatus(PmProjectStatus.COMPLETION_CONSTRUCTION.getCode());
|
|
|
pmDemandUpdate.setRealDeliverTime(pmProjectConstructionReqVo.getUpdateTime());
|
|
|
+ pmDemandUpdate.setWarnStatus(WarnStatus.NORMAL.getCode());
|
|
|
pmDemandUpdate.setUpdateTime(pmProjectConstructionReqVo.getUpdateTime());
|
|
|
pmDemandUpdate.setUpdateBy(pmProjectConstructionReqVo.getUpdateBy());
|
|
|
return this.updateById(pmDemandUpdate);
|