Merge pull request '完善产品中的需求规格功能开发' (#762) from otto/microservices:product_refact into product_refact
This commit is contained in:
commit
e7a3f47115
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Reference in New Issue