VbzCart/queries/qryStk byItem byBin
Jump to navigation
Jump to search
Details
- Returns: Same records as
- REDIRECT Template:l/vc/query, but grouped by Item and Bin (so we have totals for each Item in each Bin)
- Requires: v_stk_lines_remaining
- Used by: v_stk_byItemAndBin_wInfo
SQL
<mysql>CREATE OR REPLACE VIEW v_stk_byItemAndBin AS
SELECT ID_Item, ID_Bin, SUM(QtyForSale) AS QtyForSale, SUM(QtyForShip) AS QtyForShip, SUM(QtyExisting) AS QtyExisting FROM v_stk_lines_remaining GROUP BY ID_Item, ID_Bin HAVING SUM(QtyExisting)>0;</mysql>