Added UST Input for Services

This commit is contained in:
2025-03-03 10:56:25 +01:00
parent 79c1d2d361
commit 7980efec50

View File

@@ -1525,6 +1525,18 @@ export const useDataStore = defineStore('data', () => {
label: "Verkaufspreis",
component: sellingPrice,
},
{
key: "taxPercentage",
label: "Umsatzsteuer",
inputType: "select",
selectOptionAttribute: "label",
selectValueAttribute: 'key',
selectManualOptions: [
{label: "19 %", key: 19},
{label: "7 %", key: 7},
{label: "0 %", key: 0}]
//TODO: Default Value
},
{
key: "servicecategories",
label: "Leistungskategorien",