Added Zahlungsart

This commit is contained in:
2025-10-05 16:56:25 +02:00
parent 625bb4be4a
commit 473980d6b4
2 changed files with 42 additions and 0 deletions

View File

@@ -347,6 +347,18 @@ export const useDataStore = defineStore('data', () => {
inputType: "number",
inputColumn: "Allgemeines",
sortable: true
},{
key: "custom_payment_type",
label: "Zahlungsart",
inputType: "select",
selectValueAttribute:"key",
selectOptionAttribute: "label",
selectManualOptions: [
{label:'Überweisung', key: 'transfer'},
{label:'SEPA Lastschrift', key: 'direct-debit'},
],
inputColumn: "Allgemeines",
sortable: true
}, {
key: "customSurchargePercentage",
label: "Individueller Aufschlag",