Revert "Start for Dev Branch"

This reverts commit acf5d1c2ea
This commit is contained in:
2024-12-20 17:49:24 +00:00
parent acf5d1c2ea
commit 8abfce0fa1
16 changed files with 170 additions and 598 deletions

View File

@@ -1,41 +0,0 @@
<script setup>
const lexofficeActiveFunctions = ref({
sendInvoicesToLexoffice: true,
})
</script>
<template>
<UDashboardNavbar title="Integrationen"></UDashboardNavbar>
<UDashboardPanelContent>
<UAccordion
class="p-5"
color="primary"
variant="soft"
size="sm"
:items="[{ label: 'Lexoffice', content: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit' }]"
>
<template #item="{item}">
<div v-if="item.label === 'Lexoffice'">
Scopes:
<UCheckbox v-model="lexofficeActiveFunctions.sendInvoicesToLexoffice" name="notifications" label="Rechnungen an Lexoffice übertragen" />
<UButton>
Kunden importieren
</UButton>
<UButton>
Lieferanten importieren
</UButton>
</div>
</template>
</UAccordion>
</UDashboardPanelContent>
</template>
<style scoped>
</style>