feat: refs #7283 order by desc date
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-08-02 15:36:02 +02:00
parent afb2f8d111
commit bf7cd1530c
1 changed files with 2 additions and 2 deletions

View File

@ -189,8 +189,8 @@ BEGIN
SELECT * FROM sales
UNION ALL
SELECT * FROM orders
ORDER BY shipped,
(inventorySupplierFk = entityId) DESC,
ORDER BY shipped DESC,
(inventorySupplierFk = entityId) ASC,
alertLevel DESC,
isTicket,
`order` DESC,