mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
webcad拆单新增部件房名、柜名
This commit is contained in:
+7
-3
@@ -1493,9 +1493,13 @@ public class WebCadOrderImportFactory {
|
|||||||
Integer cadGroupId = block.getComponentId();
|
Integer cadGroupId = block.getComponentId();
|
||||||
Long plateComponentId = null;
|
Long plateComponentId = null;
|
||||||
if (ObjectUtil.isNotNull(cadGroupId)) {
|
if (ObjectUtil.isNotNull(cadGroupId)) {
|
||||||
OrderComponentDO component = componentGroupMap.get(cadGroupId);
|
OrderComponentDO componentDO = componentGroupMap.get(cadGroupId);
|
||||||
if (ObjectUtil.isNotNull(component)) {
|
if (ObjectUtil.isNotNull(componentDO)) {
|
||||||
plateComponentId = component.getId();
|
plateComponentId = componentDO.getId();
|
||||||
|
|
||||||
|
componentDO.setBodyId(orderBodyDO.getId());
|
||||||
|
componentDO.setRoomName(orderBodyDO.getRoomName());
|
||||||
|
componentDO.setBodyName(orderBodyDO.getName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user