refactor: refs #8930 update amount column configuration
This commit is contained in:
parent
b2584c021b
commit
eb8e0d1334
|
@ -44,6 +44,8 @@ const columns = computed(() => [
|
|||
align: 'left',
|
||||
name: 'amount',
|
||||
label: t('invoiceIn.list.amount'),
|
||||
component: 'number',
|
||||
create: true,
|
||||
format: (row) => toCurrency(row.amount),
|
||||
cardVisible: true,
|
||||
},
|
||||
|
@ -101,12 +103,12 @@ async function unassignVehicle(id) {
|
|||
<VehicleDescriptorProxy :id="row?.vehicleFk" />
|
||||
</span>
|
||||
</template>
|
||||
<template #more-create-dialog="{ data }">
|
||||
<!-- <template #more-create-dialog="{ data }">
|
||||
<VnInputNumber
|
||||
:label="t('invoiceIn.list.amount')"
|
||||
v-model="data.amount"
|
||||
required
|
||||
/>
|
||||
</template>
|
||||
</template> -->
|
||||
</VnTable>
|
||||
</template>
|
||||
|
|
Loading…
Reference in New Issue