...
|
...
|
@@ -114,7 +114,7 @@ public class OrderShareActivityServiceImpl implements IOrderShareActivityService |
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public OrderShareBO getShareInfo(String ordercode, int uid) {
|
|
|
public OrderShareBO getShareInfo(String ordercode, int uid, String client_type) {
|
|
|
|
|
|
log.info("getShareInfo params is ordercode={},uid={}", ordercode, uid);
|
|
|
// 1、查询此活动
|
...
|
...
|
@@ -130,7 +130,7 @@ public class OrderShareActivityServiceImpl implements IOrderShareActivityService |
|
|
}
|
|
|
bo.setH5Title(activitydb.getH5Title());
|
|
|
bo.setActivityEndPic(activitydb.getActivityEndPic());
|
|
|
if (activitydb.getIsShowPic().equals(0)) {
|
|
|
if (!"h5".equals(client_type) && activitydb.getIsShowPic().equals(0)) {
|
|
|
// 不显示APP内弹框,即活动作废
|
|
|
log.warn("activity is disabled,params is ordercode={},uid={},flag=6",ordercode,uid);
|
|
|
bo.setFlag(6);
|
...
|
...
|
|