Backend ordered item search

Posted By Neil Thu 14 Mar 2013
Add to Favorites0
Author Message
Neil
 Posted Thu 14 Mar 2013
Supreme Being

Supreme Being - (123,561 reputation)Supreme Being - (123,561 reputation)Supreme Being - (123,561 reputation)Supreme Being - (123,561 reputation)Supreme Being - (123,561 reputation)Supreme Being - (123,561 reputation)Supreme Being - (123,561 reputation)Supreme Being - (123,561 reputation)Supreme Being - (123,561 reputation)

Group: Forum Members
Last Active: Sat 3 Nov 2018
Posts: 192, Visits: 5,220
When processing suppliers deliveries to fulfil orders we have to match items to orders awaiting dispatch. We use a query in the backend like this,


SELECT [IR_OrderNumberID],[IR_VersionCode],[IR_VersionName],[IR_Quantity]
FROM [DB_NAME].[dbo].[tblKartrisInvoiceRows]
WHERE [IR_VersionCode] like '%VERSION_CODE%'
ORDER BY [IR_OrderNumberID]


This returns a list of all orders placed that include the specified version. This means we can easily match deliveries and orders up if no other references have been used with the supplier.

A 'built in' system would be great (with a hyperlinked results table), with the ability to search open/closed orders, between specified dates etc.

Threaded View

Expand / Collapse

Similar Topics

Expand / Collapse

Reading This Topic

Expand / Collapse

Back To Top