Use Advanced search for CIS & StV

This commit is contained in:
cgfhtw
2025-06-24 15:19:21 +02:00
parent 7b627484c2
commit b344b5925a
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -16,9 +16,9 @@ const app = Vue.createApp({
cssclass: "",
calcheightonly: true,
types: [
"mitarbeiter",
"employee",
"student",
"raum",
"room",
"organisationunit"
],
actions: {
@@ -112,7 +112,7 @@ const app = Vue.createApp({
},
methods: {
searchfunction: function(searchsettings) {
return this.$api.call(ApiSearchbar.search(searchsettings));
return this.$api.call(ApiSearchbar.searchAdvanced(searchsettings));
}
}
});
@@ -76,7 +76,7 @@ export default {
cssclass: "position-relative",
calcheightonly: true,
types: [
"studentStv",
"student",
"prestudent"
],
actions: {
@@ -139,7 +139,7 @@ export default {
this.$refs.stvList.reload();
},
searchfunction(params, config) {
return this.$api.call(ApiSearchbar.search(params), config);
return this.$api.call(ApiSearchbar.searchAdvanced(params), config);
}
},
created() {