|
|
@@ -181,6 +181,8 @@ public class SceneEditInfoServiceImpl extends ServiceImpl<ISceneEditInfoMapper,
|
|
|
private IJmgaService jmgaService;
|
|
|
@Resource
|
|
|
private RabbitMqProducer mqProducer;
|
|
|
+ @Autowired
|
|
|
+ private IHaixinService haixinService;
|
|
|
|
|
|
@Transactional
|
|
|
@Override
|
|
|
@@ -304,6 +306,7 @@ public class SceneEditInfoServiceImpl extends ServiceImpl<ISceneEditInfoMapper,
|
|
|
sceneJson.setSceneKind(scenePlusExt.getSceneKind());
|
|
|
sceneJson.setModelKind(scenePlusExt.getModelKind());
|
|
|
sceneJson.setOrientation(scenePlusExt.getOrientation());
|
|
|
+ sceneJson.setHasFloorplanAi(scenePlus.getHasFloorplanAi());
|
|
|
if(StrUtil.isNotEmpty(scenePlusExt.getVideos())){
|
|
|
sceneJson.setVideos(scenePlusExt.getVideos());
|
|
|
}
|
|
|
@@ -383,6 +386,13 @@ public class SceneEditInfoServiceImpl extends ServiceImpl<ISceneEditInfoMapper,
|
|
|
scenePlus.setHouseType(this.existsHouseType(bucket, num));
|
|
|
scenePlusService.updateById(scenePlus);
|
|
|
|
|
|
+ //发送cad图给海鑫
|
|
|
+ try {
|
|
|
+ haixinService.sendCadImgToHaixin(num);
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("平面图推送失败,num:{}", num, e);
|
|
|
+ }
|
|
|
+
|
|
|
if(!oldVersion.equals(newVersion)){
|
|
|
Map<String, Object> map = new HashMap<>();
|
|
|
try {
|