Explorar el Código

[券][修改][作废券不用判断商户是否配置了分账账号]

release_toaliyun_real
gongbiao hace 7 años
padre
commit
101cf9a13f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxCouponServiceImpl.java

+ 1
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxCouponServiceImpl.java Ver fichero

@@ -207,7 +207,7 @@ public class WxCouponServiceImpl implements WxCouponService {

List<JSONObject> merchantParamList = JSONObject.parseArray(record.getMerchantParams(), JSONObject.class);
//有价券判断商户是否配置了分账账号
if (record.getSalePrice() > 0) {
if (record.getSalePrice() != null && record.getSalePrice() > 0) {
StringBuffer sb = new StringBuffer();
boolean flag = false;
for (int i = 0, size = merchantParamList.size(); i < size; i++) {


Cargando…
Cancelar
Guardar