提交代码

dev
胡锐 5 days ago
parent 2f64415c6e
commit e1119c6bc5
  1. 3
      service/src/main/java/com/hfkj/service/order/OrderCreateService.java

@ -24,6 +24,7 @@ import com.hfkj.sysenum.merchant.MerchantStatusEnum;
import com.hfkj.sysenum.gas.GasOrderReceiptStatusEnum;
import com.hfkj.sysenum.gas.OrderOilStatus;
import com.hfkj.sysenum.merchant.MerchantAccountRecordSourceTypeEnum;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
@ -159,7 +160,7 @@ public class OrderCreateService {
gasOrder.setGasSettlePrice(gasSettlePrice);
// 代理商appid
if (orderChild.getAgentAppId() != null) {
if (StringUtils.isNotBlank(orderChild.getAgentAppId())) {
// 代理商参数
BsAgentApiParam apiParam = agentApiParamService.getParamByAppId(orderChild.getAgentAppId());
if (apiParam == null) {

Loading…
Cancel
Save