Commit eafbae68 by 朱亚洁

feat:[1003798]小程序流程优化-跳转小程序不过首页闪屏

parent 9c44d947
...@@ -4999,6 +4999,13 @@ public class BookGroupBizImpl implements BookGroupBiz { ...@@ -4999,6 +4999,13 @@ public class BookGroupBizImpl implements BookGroupBiz {
appletRecord.setAdviserId(byId.getCreatedByUserLogin()); appletRecord.setAdviserId(byId.getCreatedByUserLogin());
appletRecord.setChannelId(byId.getChannelPartyId()); appletRecord.setChannelId(byId.getChannelPartyId());
appletRecordBiz.insert(appletRecord); appletRecordBiz.insert(appletRecord);
//现代纸书是否开启小睿流程
BookAdviserDto bookAdviserDto = bookAdviserDao.getBase(byId.getAdviserBookId(), byId.getChannelPartyId(), byId.getCreatedByUserLogin());
if (null != bookAdviserDto && YesOrNoEnums.YES.getValue().equals(bookAdviserDto.getIsOpenRobotProcess())) {
dto.setOpenWeapp(true);
} else {
dto.setOpenWeapp(false);
}
} }
return dto; return dto;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment