forked from angelo/java-retail-app
Compare commits
No commits in common. "65b789561f8948da998502dd7fd2c7d788e91a44" and "ccbf6d1b3787b8a45a74fd32e227c3ba7dec0735" have entirely different histories.
65b789561f
...
ccbf6d1b37
|
|
@ -54,7 +54,6 @@
|
|||
bp.product_code,
|
||||
bp.product_name,
|
||||
bp.shipping_channel,
|
||||
bp.wms_code,,
|
||||
sdi.SPECS_NAME,
|
||||
sdi.quantity,
|
||||
soi.order_status,
|
||||
|
|
@ -220,7 +219,6 @@
|
|||
bp.product_code,
|
||||
bp.product_name,
|
||||
bp.shipping_channel,
|
||||
bp.wms_code,
|
||||
sdi.SPECS_NAME,
|
||||
sdi.quantity,
|
||||
soi.order_status,
|
||||
|
|
|
|||
|
|
@ -1161,7 +1161,7 @@
|
|||
|
||||
<!-- 查询新零售购买指定商品数量(新) -->
|
||||
<select id="getRetailWaresQuantityNew" resultType="int">
|
||||
select nvl(sum(soi.wares_quantity * bw.box_num), 0) wares_quantity
|
||||
select nvl(sum(soi.wares_quantity), 0) wares_quantity
|
||||
from sa_order so
|
||||
left join sa_order_items soi
|
||||
on soi.pk_order = so.pk_id
|
||||
|
|
|
|||
Loading…
Reference in New Issue