Page 1 of 1

orders products sort in admin side

Posted: Wed Mar 13, 2019 4:30 am
by hilmikeltin
i want to sort ordered products from A to Z. admin can see the products in order, and seect them from the shelf. it is described admin orders.php as array. should i sort the in controller/order.php or model/order.php. how can i sort array?

Re: orders products sort in admin side

Posted: Wed Mar 13, 2019 12:32 pm
by MarketInSG
you will need to modify the SQL in admin/model/sale/order.php getOrderProducts by adding the below to the query

Code: Select all

ORDER BY name

Re: orders products sort in admin side

Posted: Wed Mar 13, 2019 7:58 pm
by paulfeakins
MarketInSG wrote:
Wed Mar 13, 2019 12:32 pm
you will need to modify the SQL in admin/model/sale/order.php
You should do this with vQmod or OCMOD really.

Re: orders products sort in admin side

Posted: Thu Mar 14, 2019 2:39 am
by hilmikeltin
thx MarketInSG, worked perfect and easy. regards

Re: orders products sort in admin side

Posted: Thu Mar 14, 2019 4:23 pm
by MarketInSG
Glad to be of help :)