Added Sorting to createddocument Loading

This commit is contained in:
2025-01-10 14:15:39 +01:00
parent 8a00dffce0
commit 630d04fb46

View File

@@ -162,7 +162,7 @@ const items = ref([])
const selectedItem = ref(0) const selectedItem = ref(0)
const setupPage = async () => { const setupPage = async () => {
items.value = await useSupabaseSelect("createddocuments","*, customer(id,name), statementallocations(id,amount)","documentDate") items.value = await useSupabaseSelect("createddocuments","*, customer(id,name), statementallocations(id,amount)","documentNumber")
} }
setupPage() setupPage()