Added CustomSurchargePercentage

Added RowEdit Modal
This commit is contained in:
2025-03-03 11:31:44 +01:00
parent 57b631ad72
commit c96ff65bc7
2 changed files with 83 additions and 16 deletions

View File

@@ -216,6 +216,10 @@ export const useDataStore = defineStore('data', () => {
key: "customPaymentDays",
label: "Zahlungsziel in Tagen",
inputType: "number"
}, {
key: "customSurchargePercentage",
label: "Individueller Aufschlag",
inputType: "number"
}, {
key: "infoData.street",
label: "Straße + Hausnummer",
@@ -1520,6 +1524,7 @@ export const useDataStore = defineStore('data', () => {
inputType: "select",
selectDataType: "units",
selectOptionAttribute: "name",
required: true,
selectSearchAttributes: ['name'],
},
{
@@ -2286,6 +2291,8 @@ export const useDataStore = defineStore('data', () => {
name = "Farbe"
}else if(key === "customPaymentDays") {
name = "Zahlungsziel in Tagen"
}else if(key === "customSurchargePercentage") {
name = "Individueller Aufschlag"
}else if(key === "powerInKW") {
name = "Leistung"
} else if(key === "driver") {