订单查询返回单价
This commit is contained in:
parent
fdc3c1c729
commit
e2db8e0a3f
|
|
@ -13,4 +13,5 @@ public class SkuInfoPo {
|
|||
private BigDecimal priceAmount;
|
||||
private BigDecimal packAmount;
|
||||
private String categoryId;
|
||||
private BigDecimal price;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -630,7 +630,8 @@ select * from tb_order_info where trade_day = #{day} and table_id = #{masterId}
|
|||
d.product_sku_name AS productSkuName,
|
||||
'' AS categoryId,
|
||||
d.price_amount as priceAmount,
|
||||
d.pack_amount as packAmount
|
||||
d.pack_amount as packAmount,
|
||||
d.price as price
|
||||
FROM
|
||||
tb_order_detail d
|
||||
where d.order_id=#{orderId}
|
||||
|
|
|
|||
Loading…
Reference in New Issue