This commit is contained in:
parent
661f7bacd6
commit
28905063b2
|
@ -33,7 +33,7 @@ const dataKey = 'InvoiceOutList';
|
||||||
|
|
||||||
async function fetchClientAddress(id) {
|
async function fetchClientAddress(id) {
|
||||||
const { data } = await axios.get(
|
const { data } = await axios.get(
|
||||||
`Clients/${id}/addresses?filter[order]=isActive DESC`
|
`Clients/${id}/addresses?filter[order]=isActive DESC`,
|
||||||
);
|
);
|
||||||
addressOptions.value = data;
|
addressOptions.value = data;
|
||||||
}
|
}
|
||||||
|
@ -190,7 +190,7 @@ watchEffect(selectedRows);
|
||||||
order: ['id DESC'],
|
order: ['id DESC'],
|
||||||
}"
|
}"
|
||||||
>
|
>
|
||||||
<template #rightMenu>
|
<template #advanced-menu>
|
||||||
<InvoiceOutFilter data-key="InvoiceOutList" />
|
<InvoiceOutFilter data-key="InvoiceOutList" />
|
||||||
</template>
|
</template>
|
||||||
<template #body>
|
<template #body>
|
||||||
|
@ -304,7 +304,7 @@ watchEffect(selectedRows);
|
||||||
!scope.opt
|
!scope.opt
|
||||||
?.isActive
|
?.isActive
|
||||||
? t(
|
? t(
|
||||||
'inactive'
|
'inactive',
|
||||||
)
|
)
|
||||||
: ''
|
: ''
|
||||||
} `
|
} `
|
||||||
|
|
Loading…
Reference in New Issue