Преглед изворни кода

[消息][修改]:券错误处理

release_toaliyun_real
Stormeye Wu пре 6 година
родитељ
комит
d95aec3eb5
1 измењених фајлова са 5 додато и 1 уклоњено
  1. +5
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxGameServiceImpl.java

+ 5
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxGameServiceImpl.java Прегледај датотеку

@@ -253,7 +253,11 @@ public class WxGameServiceImpl implements WxGameService {
JSONObject obj = (JSONObject)couponIds.get(i);
Long couponId = obj.getLong("couponId");
int weight = obj.getIntValue("weight");
saveOrUpdateCouponChannel(couponId, wxCouponChannelsMap, record);
try {
saveOrUpdateCouponChannel(couponId, wxCouponChannelsMap, record);
} catch (MallinkException e) {
logger.error(e.getMessage());
}
}

// 下架更新


Loading…
Откажи
Сачувај