Fix für #71
This commit is contained in:
@@ -230,19 +230,7 @@ export const useDataStore = defineStore('data', () => {
|
|||||||
label: "Anrede",
|
label: "Anrede",
|
||||||
inputType: "text",
|
inputType: "text",
|
||||||
inputChangeFunction: function (row) {
|
inputChangeFunction: function (row) {
|
||||||
row.name = ""
|
row.name = `${row.salutation + " "}${row.title+ " "}${row.firstname+ " "}${row.lastname}`;
|
||||||
if(row.salutation) {
|
|
||||||
row.name += `${row.salutation}`
|
|
||||||
}
|
|
||||||
if(row.title) {
|
|
||||||
row.name += ` ${row.title}`
|
|
||||||
}
|
|
||||||
if(row.firstname) {
|
|
||||||
row.name += ` ${row.firstname}`
|
|
||||||
}
|
|
||||||
if(row.lastname) {
|
|
||||||
row.name += ` ${row.lastname}`
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
disabledFunction: function (item) {
|
disabledFunction: function (item) {
|
||||||
return item.isCompany
|
return item.isCompany
|
||||||
@@ -258,19 +246,7 @@ export const useDataStore = defineStore('data', () => {
|
|||||||
label: "Titel",
|
label: "Titel",
|
||||||
inputType: "text",
|
inputType: "text",
|
||||||
inputChangeFunction: function (row) {
|
inputChangeFunction: function (row) {
|
||||||
row.name = ""
|
row.name = `${row.salutation + " "}${row.title+ " "}${row.firstname+ " "}${row.lastname}`;
|
||||||
if(row.salutation) {
|
|
||||||
row.name += `${row.salutation}`
|
|
||||||
}
|
|
||||||
if(row.title) {
|
|
||||||
row.name += ` ${row.title}`
|
|
||||||
}
|
|
||||||
if(row.firstname) {
|
|
||||||
row.name += ` ${row.firstname}`
|
|
||||||
}
|
|
||||||
if(row.lastname) {
|
|
||||||
row.name += ` ${row.lastname}`
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
disabledFunction: function (item) {
|
disabledFunction: function (item) {
|
||||||
return item.isCompany
|
return item.isCompany
|
||||||
@@ -285,19 +261,7 @@ export const useDataStore = defineStore('data', () => {
|
|||||||
title: true,
|
title: true,
|
||||||
inputType: "text",
|
inputType: "text",
|
||||||
inputChangeFunction: function (row) {
|
inputChangeFunction: function (row) {
|
||||||
row.name = ""
|
row.name = `${row.salutation + " "}${row.title+ " "}${row.firstname+ " "}${row.lastname}`;
|
||||||
if(row.salutation) {
|
|
||||||
row.name += `${row.salutation}`
|
|
||||||
}
|
|
||||||
if(row.title) {
|
|
||||||
row.name += ` ${row.title}`
|
|
||||||
}
|
|
||||||
if(row.firstname) {
|
|
||||||
row.name += ` ${row.firstname}`
|
|
||||||
}
|
|
||||||
if(row.lastname) {
|
|
||||||
row.name += ` ${row.lastname}`
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
disabledFunction: function (item) {
|
disabledFunction: function (item) {
|
||||||
return item.isCompany
|
return item.isCompany
|
||||||
@@ -312,19 +276,7 @@ export const useDataStore = defineStore('data', () => {
|
|||||||
title: true,
|
title: true,
|
||||||
inputType: "text",
|
inputType: "text",
|
||||||
inputChangeFunction: function (row) {
|
inputChangeFunction: function (row) {
|
||||||
row.name = ""
|
row.name = `${row.salutation + " "}${row.title+ " "}${row.firstname+ " "}${row.lastname}`;
|
||||||
if(row.salutation) {
|
|
||||||
row.name += `${row.salutation}`
|
|
||||||
}
|
|
||||||
if(row.title) {
|
|
||||||
row.name += ` ${row.title}`
|
|
||||||
}
|
|
||||||
if(row.firstname) {
|
|
||||||
row.name += ` ${row.firstname}`
|
|
||||||
}
|
|
||||||
if(row.lastname) {
|
|
||||||
row.name += ` ${row.lastname}`
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
disabledFunction: function (item) {
|
disabledFunction: function (item) {
|
||||||
return item.isCompany
|
return item.isCompany
|
||||||
|
|||||||
Reference in New Issue
Block a user