198 lines
4.4 KiB
Vue
198 lines
4.4 KiB
Vue
<script setup>
|
|
import HistoryDisplay from "~/components/HistoryDisplay.vue";
|
|
|
|
definePageMeta({
|
|
middleware: "auth"
|
|
})
|
|
|
|
const dataStore = useDataStore()
|
|
const supabase = useSupabaseClient()
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
const toast = useToast()
|
|
const id = ref(route.params.id ? route.params.id : null )
|
|
|
|
//Store
|
|
const {customers, contracts } = storeToRefs(useDataStore())
|
|
|
|
let currentItem = ref(null)
|
|
|
|
|
|
|
|
//Working
|
|
const mode = ref(route.params.mode || "show")
|
|
const itemInfo = ref({
|
|
name: "",
|
|
customer: null,
|
|
active: true
|
|
})
|
|
|
|
//Functions
|
|
const setupPage = () => {
|
|
if(mode.value === "show" || mode.value === "edit"){
|
|
currentItem.value = dataStore.getContractById(Number(useRoute().params.id))
|
|
}
|
|
|
|
if(mode.value === "edit") itemInfo.value = currentItem.value
|
|
|
|
if(mode.value === "create") {
|
|
let query = route.query
|
|
|
|
if(query.customer) itemInfo.value.customer = Number(query.customer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const editCustomer = async () => {
|
|
router.push(`/contracts/edit/${currentItem.value.id}`)
|
|
setupPage()
|
|
}
|
|
|
|
const cancelEditorCreate = () => {
|
|
if(currentItem.value) {
|
|
router.push(`/contracts/show/${currentItem.value.id}`)
|
|
} else {
|
|
router.push(`/contracts/`)
|
|
}
|
|
}
|
|
|
|
setupPage()
|
|
</script>
|
|
|
|
<template>
|
|
<h1
|
|
class="text-center my-3 font-bold text-2xl"
|
|
v-if="currentItem"
|
|
>{{currentItem.name}}</h1>
|
|
<UTabs
|
|
v-if="currentItem && mode == 'show'"
|
|
:items="[{label: 'Informationen'}, {label: 'Logbuch'}, {label: 'Dokumente'}]"
|
|
>
|
|
<template #item="{item}">
|
|
<UCard class="mt-5">
|
|
<div v-if="item.label === 'Informationen'">
|
|
<Toolbar>
|
|
<UButton
|
|
v-if="mode == 'show' && currentItem.id"
|
|
@click="editCustomer"
|
|
>
|
|
Bearbeiten
|
|
</UButton>
|
|
</Toolbar>
|
|
|
|
<UBadge
|
|
v-if="currentItem.active"
|
|
>
|
|
Vertrag aktiv
|
|
</UBadge>
|
|
<UBadge
|
|
v-else
|
|
color="red"
|
|
>
|
|
Vertrag gesperrt
|
|
</UBadge>
|
|
|
|
<div class="text-wrap">
|
|
<p>Kundennummer: <nuxt-link :to="`/customers/show/${currentItem.customer}`">{{dataStore.getCustomerById(currentItem.customer).name}}</nuxt-link></p>
|
|
</div>
|
|
|
|
<UDivider
|
|
class="my-2"
|
|
/>
|
|
|
|
Beschreibung:<br>
|
|
{{currentItem.description}}<br>
|
|
</div>
|
|
<div v-else-if="item.label === 'Logbuch'">
|
|
<HistoryDisplay
|
|
type="contract"
|
|
v-if="currentItem"
|
|
:element-id="currentItem.id"
|
|
/>
|
|
</div>
|
|
<div v-else-if="item.label === 'Dokumente'">
|
|
<Toolbar>
|
|
<DocumentUpload
|
|
type="contract"
|
|
:element-id="currentItem.id"
|
|
/>
|
|
</Toolbar>
|
|
<DocumentList
|
|
:documents="dataStore.getDocumentsByContractId(currentItem.id)"
|
|
/>
|
|
</div>
|
|
</UCard>
|
|
</template>
|
|
</UTabs>
|
|
<UCard v-else-if="mode == 'edit' || mode == 'create'" >
|
|
|
|
<UFormGroup
|
|
label="Name:"
|
|
>
|
|
<UInput
|
|
v-model="itemInfo.name"
|
|
/>
|
|
</UFormGroup>
|
|
|
|
<UFormGroup
|
|
label="Kunde:"
|
|
>
|
|
<USelectMenu
|
|
v-model="itemInfo.customer"
|
|
option-attribute="name"
|
|
value-attribute="id"
|
|
:options="customers"
|
|
searchable
|
|
:search-attributes="['name']"
|
|
>
|
|
<template #label>
|
|
{{dataStore.getCustomerById(itemInfo.customer) ? dataStore.getCustomerById(itemInfo.customer).name : "Kein Kunde ausgewählt" }}
|
|
</template>
|
|
</USelectMenu>
|
|
</UFormGroup>
|
|
|
|
<UFormGroup
|
|
label="Vertrag aktiv:"
|
|
>
|
|
<UCheckbox
|
|
v-model="itemInfo.active"
|
|
/>
|
|
</UFormGroup>
|
|
<UFormGroup
|
|
label="Beschreibung:"
|
|
>
|
|
<UTextarea
|
|
v-model="itemInfo.description"
|
|
/>
|
|
</UFormGroup>
|
|
|
|
|
|
<template #footer>
|
|
<UButton
|
|
v-if="mode === 'edit'"
|
|
@click="dataStore.updateItem('contracts',itemInfo)"
|
|
>
|
|
Speichern
|
|
</UButton>
|
|
<UButton
|
|
v-else-if="mode === 'create'"
|
|
@click="dataStore.createNewItem('contracts',itemInfo)"
|
|
>
|
|
Erstellen
|
|
</UButton>
|
|
<UButton
|
|
@click="cancelEditorCreate"
|
|
color="red"
|
|
class="ml-2"
|
|
>
|
|
Abbrechen
|
|
</UButton>
|
|
</template>
|
|
|
|
</UCard>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |