Added Customer, Vendor to Events

This commit is contained in:
2025-03-09 17:39:25 +01:00
parent 41aa40b237
commit 5fb62313d4

View File

@@ -1712,6 +1712,20 @@ export const useDataStore = defineStore('data', () => {
selectSearchAttributes: ['name'], selectSearchAttributes: ['name'],
selectMultiple: true, selectMultiple: true,
component: inventoryitemgroupsWithLoad component: inventoryitemgroupsWithLoad
},{
key: "customer",
label: "Kunde",
inputType: "select",
selectDataType: "customers",
selectOptionAttribute: "name",
selectSearchAttributes: ['name'],
},{
key: "vendor",
label: "Lieferant",
inputType: "select",
selectDataType: "vendors",
selectOptionAttribute: "name",
selectSearchAttributes: ['name'],
},{ },{
key: "profiles", key: "profiles",
label: "Beteiligte Benutzer", label: "Beteiligte Benutzer",