Added Trailing to Datatypes
Added Description Loading in LinkedDocument
This commit is contained in:
@@ -178,6 +178,7 @@ const setupPage = async () => {
|
|||||||
itemInfo.value.customer = linkedDocument.customer
|
itemInfo.value.customer = linkedDocument.customer
|
||||||
itemInfo.value.project = linkedDocument.project
|
itemInfo.value.project = linkedDocument.project
|
||||||
itemInfo.value.contact = linkedDocument.contact
|
itemInfo.value.contact = linkedDocument.contact
|
||||||
|
itemInfo.value.description = linkedDocument.description
|
||||||
|
|
||||||
setCustomerData()
|
setCustomerData()
|
||||||
|
|
||||||
@@ -928,7 +929,6 @@ const setRowData = (row) => {
|
|||||||
</UButton>
|
</UButton>
|
||||||
</template>
|
</template>
|
||||||
</UDashboardNavbar>
|
</UDashboardNavbar>
|
||||||
|
|
||||||
<UDashboardPanelContent>
|
<UDashboardPanelContent>
|
||||||
<UTabs class="p-5" :items="tabItems" @change="onChangeTab" v-if="loaded">
|
<UTabs class="p-5" :items="tabItems" @change="onChangeTab" v-if="loaded">
|
||||||
<template #item="{item}">
|
<template #item="{item}">
|
||||||
|
|||||||
@@ -674,12 +674,14 @@ export const useDataStore = defineStore('data', () => {
|
|||||||
key: "purchasePrice",
|
key: "purchasePrice",
|
||||||
label: "Einkaufspreis",
|
label: "Einkaufspreis",
|
||||||
component: purchasePrice,
|
component: purchasePrice,
|
||||||
inputType: "number"
|
inputType: "number",
|
||||||
|
inputTrailing: "EUR"
|
||||||
},{
|
},{
|
||||||
key: "sellingPrice",
|
key: "sellingPrice",
|
||||||
label: "Verkaufpreispreis",
|
label: "Verkaufpreispreis",
|
||||||
component: sellingPrice,
|
component: sellingPrice,
|
||||||
inputType: "number"
|
inputType: "number",
|
||||||
|
inputTrailing: "EUR"
|
||||||
},{
|
},{
|
||||||
key: "taxPercentage",
|
key: "taxPercentage",
|
||||||
label: "Umsatzsteuer",
|
label: "Umsatzsteuer",
|
||||||
|
|||||||
Reference in New Issue
Block a user