|
@@ -482,7 +482,6 @@ public class PmDemandServiceImpl extends ServiceImpl<PmDemandMapper, PmDemand> i
|
|
|
vo.setFlay(flay);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
results.setRecords(pmDemandResVos);
|
|
|
}
|
|
@@ -1009,10 +1008,15 @@ public class PmDemandServiceImpl extends ServiceImpl<PmDemandMapper, PmDemand> i
|
|
|
Integer i = baseExpertMapper.insertBaseUnitInformation(baseUnitInformation);
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
+ PmDemand pmDemandUpdate = new PmDemand();
|
|
|
+ pmDemand.setDemandId(pmDemand.getDemandId());
|
|
|
+ pmDemand.setHasExpert("1");
|
|
|
+ this.updateById(pmDemandUpdate);
|
|
|
+
|
|
|
return true;
|
|
|
}
|
|
|
|
|
@@ -1197,6 +1201,12 @@ public class PmDemandServiceImpl extends ServiceImpl<PmDemandMapper, PmDemand> i
|
|
|
pmDemandExpertRef.setUpdateTime(pmDemandExpertRef.getCreateTime());
|
|
|
pmDemandExpertRefList.add(pmDemandExpertRef);
|
|
|
}
|
|
|
+
|
|
|
+ PmDemand pmDemandUpdate = new PmDemand();
|
|
|
+ pmDemand.setDemandId(pmDemand.getDemandId());
|
|
|
+ pmDemand.setHasExpert("1");
|
|
|
+ this.updateById(pmDemandUpdate);
|
|
|
+
|
|
|
return pmDemandExpertRefService.saveOrUpdateBatch(pmDemandExpertRefList);
|
|
|
}
|
|
|
}
|
|
@@ -1494,6 +1504,7 @@ public class PmDemandServiceImpl extends ServiceImpl<PmDemandMapper, PmDemand> i
|
|
|
PmDemand pmDemandUpdate = new PmDemand();
|
|
|
pmDemandUpdate.setDemandId(pmBidFailureReqVo.getDemandId());
|
|
|
pmDemandUpdate.setProjectStatus(PmProjectStatus.WAIT_ANNOUNCEMENT.getCode());
|
|
|
+ pmDemandUpdate.setHasExpert("0");
|
|
|
pmDemandUpdate.setUpdateTime(pmBidFailureReqVo.getUpdateTime());
|
|
|
pmDemandUpdate.setUpdateBy(pmBidFailureReqVo.getUpdateBy());
|
|
|
return this.updateById(pmDemandUpdate);
|