fix: refs #8667 balance field
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
375dbf3a9f
commit
7329d096d2
|
@ -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 }}
|
||||
|
|
Loading…
Reference in New Issue