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 - (109,813 reputation)Supreme Being - (109,813 reputation)Supreme Being - (109,813 reputation)Supreme Being - (109,813 reputation)Supreme Being - (109,813 reputation)Supreme Being - (109,813 reputation)Supreme Being - (109,813 reputation)Supreme Being - (109,813 reputation)Supreme Being - (109,813 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.
Paul
 Posted Mon 18 Mar 2013
große Käse

große Käse - (449,900 reputation)große Käse - (449,900 reputation)große Käse - (449,900 reputation)große Käse - (449,900 reputation)große Käse - (449,900 reputation)große Käse - (449,900 reputation)große Käse - (449,900 reputation)große Käse - (449,900 reputation)große Käse - (449,900 reputation)

Group: Administrators
Last Active: Fri 15 Sep 2023
Posts: 806, Visits: 2,737
That's interesting... i had a support issue last couple of days with an order on a particular item but from the details provided by the customer on the item could not find which order it was.

As well as integrating it into the existing orders search functionlity, it might be useful in the general search too if we could keep the performance ok.

Will add to the 'to do' list, we've improved the cross linking between customers and support tickets, and I think linking up products with orders that they appear in is a natural extension of this.


--
If my post solves your issue, can you 'Mark as Answer' so it's easier for other users to find in future.

If you would like to be informed of new features, new releases, developments and occasional special bonuses, please sign up to our mailing list: http://bit.ly/19sKMZb

Similar Topics

Expand / Collapse

Reading This Topic

Expand / Collapse

Back To Top