|
@@ -272,7 +272,11 @@ public class BuildSceneServiceImpl implements IBuildSceneService {
|
|
|
|
|
|
this.writeSceneJson(sceneCode, videosJson,sceneEditInfo, sceneEditInfoExt, sceneEditControls, scenePlus,scenePlusExt,company);
|
|
|
|
|
|
- createQrCode(sceneCode, scenePlusExt, ObjectUtils.isEmpty(company) ? null : company.getQrLogo());
|
|
|
+ String qrLogo = !ObjectUtils.isEmpty(company) && !ObjectUtils.isEmpty(company.getQrLogo()) ? company.getQrLogo() : null;
|
|
|
+
|
|
|
+ qrLogo = ObjectUtils.isEmpty(qrLogo) && !ObjectUtils.isEmpty(sceneEditInfoExt.getShareLogoImg()) ? fYunFileConfig.getHost().concat(sceneEditInfoExt.getShareLogoImg()) : null;
|
|
|
+
|
|
|
+ createQrCode(sceneCode, scenePlusExt, qrLogo);
|
|
|
|
|
|
//计算成功,通知APP
|
|
|
Integer pushChannel = fdageData.getInteger("pushChannel");
|