qms报表管理
This commit is contained in:
parent
4c111ddd60
commit
c026c910d8
|
|
@ -142,7 +142,7 @@ public class QmdReportManagementControllerService {
|
|||
vo.setPdiComponentId(item.getComponentsId());
|
||||
vo.setPdiComponentName(component == null ? null : component.getComponentName());
|
||||
vo.setInspectionItemId(item.getId());
|
||||
vo.setInspectionItemName(item.getInspectionContent());
|
||||
vo.setInspectionContent(item.getInspectionContent());
|
||||
vo.setVersions(joinVersions(itemVersionsMap.get(pdiItemKey(item, component))));
|
||||
return vo;
|
||||
})
|
||||
|
|
@ -227,7 +227,7 @@ public class QmdReportManagementControllerService {
|
|||
vo.setInspectionPointId(point.getId());
|
||||
vo.setInspectionPointName(point.getInspectionPointName());
|
||||
vo.setInspectionItemId(item.getId());
|
||||
vo.setInspectionItemName(item.getInspectionContent());
|
||||
vo.setInspectionContent(item.getInspectionContent());
|
||||
vo.setVersions(joinVersions(itemVersionsMap.get(pqcItemKey(point, item))));
|
||||
return vo;
|
||||
})
|
||||
|
|
|
|||
|
|
@ -55,9 +55,9 @@ public class QmdReportManagementVO {
|
|||
private Long inspectionItemId;
|
||||
|
||||
/**
|
||||
* 检测项名称
|
||||
* 检查内容
|
||||
*/
|
||||
private String inspectionItemName;
|
||||
private String inspectionContent;
|
||||
|
||||
/**
|
||||
* 有该检测项的版本号
|
||||
|
|
@ -99,9 +99,9 @@ public class QmdReportManagementVO {
|
|||
private Long inspectionItemId;
|
||||
|
||||
/**
|
||||
* 检测项名称
|
||||
* 检查内容
|
||||
*/
|
||||
private String inspectionItemName;
|
||||
private String inspectionContent;
|
||||
|
||||
/**
|
||||
* 有该检测项的版本号
|
||||
|
|
|
|||
Loading…
Reference in New Issue