Explorar el Código

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

release_toaliyun_real
Stormeye Wu hace 6 años
padre
commit
d95aec3eb5
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  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 Ver fichero

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

// 下架更新


Cargando…
Cancelar
Guardar