0
0
Fork 0

fix: fixed rectificative class

This commit is contained in:
Jon Elias 2025-01-20 14:39:32 +01:00
parent 5ed5554495
commit f1fb2f9904
1 changed files with 16 additions and 2 deletions

View File

@ -58,7 +58,7 @@ const actions = {
const correctionFormData = reactive({
invoiceReason: 2,
invoiceType: 2,
invoiceClass: 6,
invoiceClass: 8,
});
const canEditProp = (props) =>
hasAny([{ model: 'InvoiceIn', props, accessType: 'WRITE' }]);
@ -269,7 +269,21 @@ const createInvoiceInCorrection = async () => {
option-value="id"
option-label="description"
:required="true"
/>
>
<template #option="{ itemProps, opt }">
<QItem v-bind="itemProps">
{{ console.log('opt: ', opt) }}
<QItemSection>
<QItemLabel
>{{ opt.id }} -
{{ opt.description }}</QItemLabel
>
</QItemSection>
</QItem>
<div></div>
</template>
</VnSelect>
<VnSelect
:label="`${useCapitalize(t('globals.reason'))}`"
v-model="correctionFormData.invoiceReason"