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

@@ -507,6 +507,7 @@ Vue
title="Cari Yaşlandırmalı Cari Bakiye Listesi"
:rows="store.summaryRows"
:columns="summaryColumns"
v-model:pagination="summaryPagination"
row-key="group_key"
:loading="store.loading"
flat
@@ -516,7 +517,6 @@ Vue
separator="cell"
hide-bottom
:rows-per-page-options="[0]"
:pagination="{ rowsPerPage: 0 }"
:table-style="{ tableLayout: 'fixed', width: '100%' }"
class="balance-table"
>
@@ -628,6 +628,12 @@ const store = useAccountAgingBalanceStore()
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()