VbzCart/queries/qryOrders Active
from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Details
- Returns: all orders which are currently active. For now, this just shows orders which haven't been pulled , but later it will look at the order state. As simple as it is, it's still useful to have this as a separate query because:
- Removing unneeded records before sending data helps to reduce bandwidth a little bit when called from a remote process
- Serves as a reference which can be used unaltered even after the method of determining whether an order is "active" changes
- Requires: core_orders
- History:
- 2008-11-20 Added requirement that WhenClosed (new field) must also be NULL
SQL
<section begin=sql /><mysql>CREATE OR REPLACE VIEW qryOrders_Active AS SELECT * FROM core_orders WHERE
(ID_Pull IS NULL) AND (WhenClosed IS NULL);</mysql>
<section end=sql />
