记得上下班打卡 | git大法好,push需谨慎

Commit 44464dc2 authored by anjiabin's avatar anjiabin

修改订单创建逻辑

parent f0e3ec11
......@@ -75,6 +75,9 @@ public class DragonOrdersServiceImpl implements IDragonOrdersService {
@Override
public boolean manulNotify(String code) {
DragonOrdersDto ordersDto = dataUtils.getPayOrderByCode(code);
if(StringUtil.isEmpty(ordersDto)){
throw new LiquidnetServiceException(DragonErrorCodeEnum.TRADE_ERROR_NOT_EXISTS.getCode(),DragonErrorCodeEnum.TRADE_ERROR_NOT_EXISTS.getMessage());
}
//通知商户
dragonPayBiz.sendNotify(dragonPayBiz.buildPayNotifyReqBo(ordersDto));
return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment