Difference between revisions of "VbzCart/queries/qryItems needed forStock"

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
(Created page with '==About== * '''History''': ** '''2010-01-02''' Created * '''Used by''': VbzAdminStkItems::Needed() - restock request creation in VbzAdmin * '''Requires''': {{vbzcart/query|qryStk…')
 
("returns" explanation)
Line 1: Line 1:
 
==About==
 
==About==
 +
* '''Returns''': catalog items we need to order more of in order to satisfy stock minima
 +
** Items may be needed for other reasons, but they will not be listed here unless they satisfy that criterion.
 
* '''History''':
 
* '''History''':
 
** '''2010-01-02''' Created
 
** '''2010-01-02''' Created

Revision as of 13:55, 5 December 2010

About

  • Returns: catalog items we need to order more of in order to satisfy stock minima
    • Items may be needed for other reasons, but they will not be listed here unless they satisfy that criterion.
  • History:
    • 2010-01-02 Created
  • Used by: VbzAdminStkItems::Needed() - restock request creation in VbzAdmin
  • Requires:
  1. REDIRECT Template:l/vc/query

SQL

<mysql>CREATE OR REPLACE VIEW qryItems_needed_forStock AS SELECT

 i.ID,
 i.QtyMin_Stk,
 s.QtyForSale

FROM cat_items AS i

 LEFT JOIN qryStkItms_for_sale AS s
 ON s.ID_Item=i.ID

WHERE i.isForSale AND ((i.QtyMin_Stk - s.QtyForSale) > 0);</mysql>