Default Sort In Orders View

Is it possible to, by default, sort orders by oldest first? Colleagues often forget to do this, it results in orders staying at the bottom of the queue as they're constantly processing newest first. If we could set a default sort per saved search that would be even better.

Hello.

Maybe you would like to use our addon:

https://cs-cart.pl/moduly/narzedzia/independent-sorting-in-the-panel/?sl=en¤cy=USD

Best regards

Robert.

Is it possible to, by default, sort orders by oldest first? Colleagues often forget to do this, it results in orders staying at the bottom of the queue as they're constantly processing newest first. If we could set a default sort per saved search that would be even better.

app/functions/fn.cart.php

replace

$sorting = db_sort($params, $sortings, 'date', 'desc');

with

$sorting = db_sort($params, $sortings, 'date', 'asc');

If you are familiar with hooks, use My changes module and hooks in the fn_get_orders function