fix: 修复导出excel数据中名字字段数据为空的问题
This commit is contained in:
parent
119e0d5faa
commit
8010099b94
|
|
@ -292,7 +292,7 @@ public class DQBomImportService {
|
|||
parent.setLevel(data.getLevel());
|
||||
parent.setDrawingNo(data.getDrawingNo());
|
||||
parent.setMaterialNo(data.getMaterialNo());
|
||||
parent.setMaterialDesc(data.getMaterialName());
|
||||
parent.setMaterialDesc(data.getMaterialDesc());
|
||||
parent.setMaterialTexture(data.getMaterialTexture());
|
||||
parent.setMaterialUnit(data.getMaterialUnit());
|
||||
parent.setUnitWeight(data.getUnitWeight());
|
||||
|
|
@ -334,7 +334,7 @@ public class DQBomImportService {
|
|||
child.setParentRowId(parentRowIdMap.getOrDefault(data.getLevel() - 1, 0L));
|
||||
child.setIdentityNo(child.getParentRowId() + "_" + child.getRowId());
|
||||
child.setLevel(data.getLevel());
|
||||
child.setMaterialDesc(data.getMaterialName());
|
||||
child.setMaterialDesc(data.getMaterialDesc());
|
||||
child.setMaterialTexture(data.getMaterialTexture());
|
||||
child.setMaterialUnit(data.getMaterialUnit());
|
||||
child.setUnitWeight(data.getUnitWeight());
|
||||
|
|
|
|||
Loading…
Reference in New Issue