Many Changes

This commit is contained in:
2024-02-01 22:17:56 +01:00
parent 34d1eb9c71
commit bd09d07698
12 changed files with 91 additions and 29 deletions

View File

@@ -27,8 +27,10 @@ const itemInfo = ref({
const tabItems = [{
label: 'Informationen',
}, {
},/* {
label: 'Eingangsrechnungen',
},*/ {
label: 'Dokumente',
}]
const incomingInvoicesColumns = [
@@ -154,6 +156,18 @@ setupPage()
</UTable>
</div>
<div v-else-if="item.label === 'Dokumente'">
<InputGroup>
<DocumentUpload
type="vehicle"
:element-id="currentItem.id"
/>
</InputGroup>
<DocumentList
:documents="dataStore.getDocumentsByContractId(currentItem.id)"
/>
</div>
</template>
</UTabs>