Browse Source

修改统计库存商品数量的BUG

master
lzh 2 years ago
parent
commit
e50d4b565e
  1. 2
      yxt_supervise/supervise-portal/supervise-portal-biz/src/main/java/com/yxt/supervise/portal/biz/gdinventory/GdInventoryOkMapper.java

2
yxt_supervise/supervise-portal/supervise-portal-biz/src/main/java/com/yxt/supervise/portal/biz/gdinventory/GdInventoryOkMapper.java

@ -96,6 +96,6 @@ public interface GdInventoryOkMapper extends BaseMapper<GdInventoryOk> {
@Select("select IFNULL(sum(prodValue),0) from gd_inventory_ok where warehouseCode='199'")
double countVal199();
@Select("select prodCode,IFNULL(sum(prodNum),0) pnum from gd_inventory_ok group by prodCode")
@Select("select prodCode,CONVERT(IFNULL(sum(prodNum),0),CHAR) pnum from gd_inventory_ok group by prodCode")
List<Map<String, String>> numberOfProduct();
}

Loading…
Cancel
Save