fix: refs #8667 balance field
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Jon Elias 2025-03-25 11:50:53 +01:00
parent 375dbf3a9f
commit 7329d096d2
1 changed files with 3 additions and 1 deletions

View File

@ -124,7 +124,6 @@ const columns = computed(() => [
align: 'left',
name: 'balance',
label: t('Balance'),
format: ({ row }) => toCurrency(balances[row]?.balance),
cardVisible: true,
},
{
@ -248,6 +247,9 @@ const showBalancePdf = ({ id }) => {
:disable-option="{ card: true }"
auto-load
>
<template #column-balance="{ rowIndex }">
{{ toCurrency(balances[rowIndex]?.balance) }}
</template>
<template #column-workerFk="{ row }">
<span class="link" @click.stop>
{{ row.userName }}