fix: fixed CustomerTicket table order

This commit is contained in:
PAU ROVIRA ROSALENY 2025-04-01 07:42:30 +00:00
parent 9f05984e80
commit 79fdaffbc8
1 changed files with 1 additions and 2 deletions
src/pages/Customer/components

View File

@ -49,7 +49,6 @@ const filter = {
},
],
where: { clientFk: $props.id ?? route.params.id },
order: ['shipped DESC', 'id'],
limit: 30,
};
@ -191,7 +190,7 @@ const getItemPackagingType = (ticketSales) => {
:without-header="true"
auto-load
:row-click="rowClick"
order="shipped DESC, id"
order="shipped DESC, id DESC"
:disable-option="{ card: true, table: true }"
class="full-width"
:disable-infinite-scroll="true"