diff --git a/src/pages/InvoiceIn/Card/InvoiceInBasicData.vue b/src/pages/InvoiceIn/Card/InvoiceInBasicData.vue index fd5ea0931..83b1aa25e 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInBasicData.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInBasicData.vue @@ -116,6 +116,7 @@ function deleteFile(dmsFk) { <template #form="{ data }"> <VnRow> <VnSelect + :required="true" :label="t('supplierFk')" v-model="data.supplierFk" option-value="id" @@ -244,6 +245,8 @@ function deleteFile(dmsFk) { </VnRow> <VnRow> <VnSelect + :required="true" + :is-clearable="false" :label="t('Currency')" v-model="data.currencyFk" :options="currencies" @@ -253,6 +256,8 @@ function deleteFile(dmsFk) { /> <VnSelect + :required="true" + :is-clearable="false" v-if="companiesRef" :label="t('Company')" v-model="data.companyFk" diff --git a/src/pages/InvoiceIn/InvoiceInList.vue b/src/pages/InvoiceIn/InvoiceInList.vue index 6469f446d..0af2e68b2 100644 --- a/src/pages/InvoiceIn/InvoiceInList.vue +++ b/src/pages/InvoiceIn/InvoiceInList.vue @@ -114,6 +114,7 @@ const cols = computed(() => [ title: t('components.smartCard.openSummary'), icon: 'preview', type: 'submit', + isPrimary: true, action: (row) => viewSummary(row.id, InvoiceInSummary), }, {