Merge pull request '完善产品中的需求规格功能开发' (#762) from otto/microservices:product_refact into product_refact

This commit is contained in:
otto 2024-12-12 11:11:46 +08:00
commit e7a3f47115
1 changed files with 2 additions and 2 deletions

View File

@ -580,7 +580,7 @@ public class PmsProductRequirementServiceImpl implements IPmsProductRequirementS
@Override
public JSONObject selectReqSpecsAssociatedPlanData(Long reqSpecsId) {
PmsProductRequirement reqSpecs = selectPmsProductRequirementById(reqSpecsId, true);
PmsProductRequirement reqSpecs = selectPmsProductRequirementById(reqSpecsId, false);
if (reqSpecs.getPmsProjectId() == null) {
return null;
}
@ -655,7 +655,7 @@ public class PmsProductRequirementServiceImpl implements IPmsProductRequirementS
if (record != null) {
break;
}
fromReq = fromReq.getFromId() != null ? selectPmsProductRequirementById(fromReq.getFromId(), true) : null;
fromReq = fromReq.getFromId() != null ? selectPmsProductRequirementById(fromReq.getFromId(), false) : null;
}
if (record != null) {
productReqSpecsDetailVo.setReviewTime(record.getOperatingTime());