Commit 065497b8 by chongfu.liang

Merge remote-tracking branch 'origin/qa' into qa

parents 270c72ba 957a617e
...@@ -1490,8 +1490,16 @@ public class MCCafeOrderServiceImpl implements MCCafeOrderService { ...@@ -1490,8 +1490,16 @@ public class MCCafeOrderServiceImpl implements MCCafeOrderService {
req.setOrderCode(orderBean.getOid()); req.setOrderCode(orderBean.getOid());
orderSdkService.updateCostCouponCode(req,LogTreadLocal.getTrackingNo()); orderSdkService.updateCostCouponCode(req,LogTreadLocal.getTrackingNo());
List<OrderBean.AccountBean> accountList = orderBean.getAccountList().stream().filter(
account -> (withOrderBuyCouponCode.equals(account.getAccountId()))
).collect(Collectors.toList());
if(CollectionUtils.isNotEmpty(accountList)) {
accountList.forEach(o -> o.setAccountId(buyCouponCode));
}
} catch (Exception e){ } catch (Exception e){
LogUtil.error("getProducts_exception", null, null, e); LogUtil.error("买券异常", null, null, e);
} }
} }
......
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