137 lines
5.3 KiB
Vue
137 lines
5.3 KiB
Vue
<template>
|
|
<show-page>
|
|
<template #header>
|
|
{{ contract.type_formatted }} vom {{ contract.date }}
|
|
</template>
|
|
<template #info>
|
|
<div class="p-5 bg-white shadow rounded-md font-medium">
|
|
<div class="font-bold pb-1 mb-1 text-2xl border-b">
|
|
{{ contract.type_formatted }} vom {{ contract.date }}
|
|
</div>
|
|
<div class="grid grid-cols-4 gap-2 w-full">
|
|
<div class="lg:col-span-1 col-span-2">
|
|
Datum
|
|
</div>
|
|
<div class="lg:col-span-3 col-span-2">
|
|
{{ contract.date }}
|
|
</div>
|
|
<div class="lg:col-span-1 col-span-2">
|
|
Lieferdatum
|
|
</div>
|
|
<div class="lg:col-span-3 col-span-2">
|
|
{{ contract.delivery_date }}
|
|
</div>
|
|
<div v-if="contract.is_sell_contract && contract.insurance_type" class="lg:col-span-1 col-span-2">
|
|
Versicherung
|
|
</div>
|
|
<div v-if="contract.is_sell_contract && contract.insurance_type" class="lg:col-span-3 col-span-2">
|
|
{{ contract.insurance_type }}
|
|
</div>
|
|
<div class="lg:col-span-1 col-span-2">
|
|
Betrag
|
|
</div>
|
|
<div class="lg:col-span-3 col-span-2 font-bold">
|
|
{{ contract.price }}
|
|
</div>
|
|
<div class="lg:col-span-1 col-span-2">
|
|
Bezahlt
|
|
</div>
|
|
<div class="lg:col-span-3 col-span-2">
|
|
{{ contract.paid }}
|
|
</div>
|
|
<div class="lg:col-span-1 col-span-2">
|
|
Offener Betrag
|
|
</div>
|
|
<div class="lg:col-span-3 col-span-2">
|
|
{{ contract.left_to_pay }}
|
|
</div>
|
|
<div v-if="contract.notes" class="mt-3 col-span-4">
|
|
<p class="font-bold">Bemerkungen</p>
|
|
{{ contract.notes }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<template #actions>
|
|
<edit-button v-if="!contract.deleted_at" :href="route('contracts.edit', contract.id)" />
|
|
<print-button :href="route('contracts.print', contract.id)" />
|
|
<payments-upload v-if="!contract.deleted_at" :show_upload="!contract.deleted_at" :contract="contract" />
|
|
<delete-button v-if="!contract.deleted_at" :href="route('contracts.destroy', contract.id)" />
|
|
<restore-button v-if="contract.deleted_at" :href="route('contracts.restore', contract.id)" />
|
|
<div v-if="contract.deleted_at">
|
|
gelöscht: {{ contract.deleted_at }}
|
|
</div>
|
|
</template>
|
|
<template #more>
|
|
<div class="lg:col-span-7 col-span-12">
|
|
<h3 class="mb-3">Auto</h3>
|
|
<car-card :car="contract.car" hideEmpty="true" />
|
|
</div>
|
|
<div class="lg:col-span-5 col-span-12">
|
|
<h3 class="mb-3">{{ contactTitle }}</h3>
|
|
<contact-card :contact="contract.contact" />
|
|
</div>
|
|
<div class="xl:col-span-7 col-span-12 mt-4">
|
|
<documents-view :initial_documents="contract.documents" :id="contract.id" :show_upload="!contract.deleted_at" />
|
|
</div>
|
|
<div class="xl:col-span-5 col-span-12">
|
|
<payments-view :payments="contract.payments" :contract="contract" />
|
|
</div>
|
|
</template>
|
|
</show-page>
|
|
</template>
|
|
|
|
<script>
|
|
import ShowPage from '@/Components/ShowPage.vue';
|
|
import BreadCrumb from '@/Components/BreadCrumb.vue';
|
|
import DeleteButton from '@/Components/Buttons/DeleteButton.vue';
|
|
import RestoreButton from '@/Components/Buttons/RestoreButton.vue';
|
|
import CarCard from '@/Components/CarCard.vue';
|
|
import PrintButton from '@/Components/Buttons/PrintButton.vue';
|
|
import ContactCard from '@/Components/ContactCard.vue';
|
|
import EditButton from '@/Components/Buttons/EditButton.vue';
|
|
import DocumentsView from '@/Components/Documents/View.vue';
|
|
import PaymentsView from '@/Components/Payments/View.vue';
|
|
import PaymentsUpload from '@/Components/Payments/Upload.vue';
|
|
|
|
export default {
|
|
components: {
|
|
BreadCrumb,
|
|
ShowPage,
|
|
CarCard,
|
|
DeleteButton,
|
|
RestoreButton,
|
|
PrintButton,
|
|
ContactCard,
|
|
EditButton,
|
|
DocumentsView,
|
|
PaymentsView,
|
|
PaymentsUpload,
|
|
},
|
|
props: {
|
|
contract: Object,
|
|
},
|
|
computed: {
|
|
contactTitle() {
|
|
return this.contract.is_sell_contract ? 'Käufer' : 'Verkäufer';
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
currentRoute: 'contracts.show',
|
|
buyContractsColumns: [
|
|
{ key: 'contact', value: 'Verkäufer' },
|
|
{ key: 'date', value: 'Kaufdatum' },
|
|
{ key: 'price', value: 'Kaufpreis' },
|
|
],
|
|
sellContractsColumns: [
|
|
{ key: 'contact', value: 'Käufer' },
|
|
{ key: 'date', value: 'Verkaufsdatum' },
|
|
{ key: 'price', value: 'Verkaufspreis' },
|
|
{ key: 'insurance_type', value: 'Versicherungstyp' },
|
|
],
|
|
};
|
|
},
|
|
};
|
|
</script>
|