新增通过采购订单明细id获取明细
This commit is contained in:
@@ -29,6 +29,10 @@ public class TemplateInstanceDataRespVO {
|
||||
@ExcelProperty("字段标识;关联字段库")
|
||||
private String fldKy;
|
||||
|
||||
@Schema(description = "字段結構", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||
@ExcelProperty("字段結構;")
|
||||
private String fldDoc;
|
||||
|
||||
@Schema(description = "用户填写的值", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||
@ExcelProperty("用户填写的值")
|
||||
private String fldVal;
|
||||
|
||||
@@ -48,4 +48,8 @@ public class TemplateInstanceDataDO extends BusinessBaseDO {
|
||||
@TableField(exist = false)
|
||||
private String fldName;
|
||||
|
||||
@TableField(exist = false)
|
||||
private String fldDoc;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -417,6 +417,7 @@ public class TemplateInstanceServiceImpl implements TemplateInstanceService {
|
||||
tmplTpListByValKeys.forEach(tmplTpFldDO -> {
|
||||
if (templateInstanceDataRespVO.getFldKy().equals(tmplTpFldDO.getFldKy())) {
|
||||
templateInstanceDataRespVO.setFldName(tmplTpFldDO.getFldName());
|
||||
templateInstanceDataRespVO.setFldDoc(tmplTpFldDO.getFldDoc());
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user