Commit 5e83e193 by 蒋小洋

查询订单列表返回可开票金额

parent d3d7d3e2
...@@ -1321,6 +1321,7 @@ public class OrderAdapter { ...@@ -1321,6 +1321,7 @@ public class OrderAdapter {
//取餐码用日订单序号代替- v1.5.4变更为四位随机数 //取餐码用日订单序号代替- v1.5.4变更为四位随机数
responseVo.setTakeCode(ordersBean.getOtherCode()); responseVo.setTakeCode(ordersBean.getOtherCode());
responseVo.setAmount(ordersBean.getAmount()); responseVo.setAmount(ordersBean.getAmount());
responseVo.setActualPayAmount(orderBean.getActualPayAmount());
OrderViewStatusDto orderViewStatusDto = getOrderViewStatusDesc(ordersBean, wxAppId); OrderViewStatusDto orderViewStatusDto = getOrderViewStatusDesc(ordersBean, wxAppId);
//围餐需求 订单中存在未称重的商品称重商品则金额为0 //围餐需求 订单中存在未称重的商品称重商品则金额为0
if (IappIdType.WC_XCX.getCode().equals(iAppId)) { if (IappIdType.WC_XCX.getCode().equals(iAppId)) {
......
...@@ -93,6 +93,10 @@ public class QueryOrderResponseVo { ...@@ -93,6 +93,10 @@ public class QueryOrderResponseVo {
* 订单金额 * 订单金额
*/ */
private Long amount; private Long amount;
/*
* 实际支付金额,可开票金额
*/
private Long actualPayAmount;
/** /**
* 商品总金额 不包括满减,配送费,包装费 * 商品总金额 不包括满减,配送费,包装费
*/ */
......
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