VbzCart/queries/qryStk lines remaining byBin

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search

About

  • OBSOLETE: replaced by vcqtStockBinsInfo methods
  • Returns: list of bins, with stock quantities for each (for sale, for shipping, existing)
  • Requires:
  1. REDIRECT Template:l/vc/query
  • Used by: qryStk_Bins_w_info
  • History:
    • 2009-04-29 Created for Special:VbzAdmin
    • 2009-11-29 Updated to reflect name change of source query
    • 2017-03-24 obsoleted

SQL

<mysql>CREATE OR REPLACE VIEW qryStk_lines_remaining_byBin AS

 SELECT
   ID_Bin,
   SUM(QtyForSale) AS QtyForSale,
   SUM(QtyForShip) AS QtyForShip,
   SUM(QtyExisting) AS QtyExisting
 FROM qryStk_lines_remaining
 GROUP BY ID_Bin;</mysql>