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