Added UST Input for Services
This commit is contained in:
@@ -1525,6 +1525,18 @@ export const useDataStore = defineStore('data', () => {
|
|||||||
label: "Verkaufspreis",
|
label: "Verkaufspreis",
|
||||||
component: sellingPrice,
|
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",
|
key: "servicecategories",
|
||||||
label: "Leistungskategorien",
|
label: "Leistungskategorien",
|
||||||
|
|||||||
Reference in New Issue
Block a user