Merge remote-tracking branch 'origin/master'

This commit is contained in:
M_Kececi
2026-03-10 17:51:31 +03:00
parent d590732f38
commit aba71341b9
24 changed files with 299 additions and 160 deletions

View File

@@ -424,6 +424,7 @@
title="Cari Bakiye Listesi"
:rows="store.summaryRows"
:columns="summaryColumns"
v-model:pagination="summaryPagination"
row-key="group_key"
:loading="store.loading"
flat
@@ -433,7 +434,6 @@
separator="cell"
hide-bottom
:rows-per-page-options="[0]"
:pagination="{ rowsPerPage: 0 }"
:table-style="{ tableLayout: 'fixed', width: '100%' }"
class="balance-table"
>
@@ -531,6 +531,12 @@ const store = useCustomerBalanceListStore()
const expanded = ref({})
const allDetailsOpen = ref(false)
const filtersCollapsed = ref(false)
const summaryPagination = ref({
page: 1,
rowsPerPage: 0,
sortBy: 'ana_cari_kodu',
descending: false
})
const $q = useQuasar()
const { canRead, canExport } = usePermission()