ソースを参照

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

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());
}
}

// 下架更新


読み込み中…
キャンセル
保存