FIX - Order list det sortfield default

This commit is contained in:
Anthony Berton 2023-01-17 11:36:03 +01:00
parent 4cf4da973c
commit 957e8538a4

View File

@ -137,10 +137,10 @@ $offset = $limit * $page;
$pageprev = $page - 1;
$pagenext = $page + 1;
if (!$sortfield) {
$sortfield = 'c.ref';
$sortfield = 'pr.ref';
}
if (!$sortorder) {
$sortorder = 'DESC';
$sortorder = 'ASSC';
}
$show_shippable_command = GETPOST('show_shippable_command', 'aZ09');