Headerfunctions in headerAPI auslagern

This commit is contained in:
ma0068
2025-06-11 15:28:19 +02:00
parent 2eef05e593
commit 8c69bc1682
3 changed files with 41 additions and 22 deletions
+37
View File
@@ -0,0 +1,37 @@
/**
* Copyright (C) 2025 fhcomplete.org
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
export default {
getHeader(person_id){
return {
method: 'get',
url: 'api/frontend/v1/vertraege/vertraege/getHeader/' + person_id,
};
},
getPersonAbteilung(person_id){
return {
method: 'get',
url: 'api/frontend/v1/vertraege/vertraege/getPersonAbteilung/' + person_id,
};
},
getLeitungOrg(oekurzbz){
return {
method: 'get',
url: 'api/frontend/v1/vertraege/vertraege/getLeitungOrg/' + oekurzbz,
};
},
}
@@ -132,24 +132,6 @@ export default {
url: 'api/frontend/v1/vertraege/vertraege/getMitarbeiter/',
};
},
getHeader(person_id){
return {
method: 'get',
url: 'api/frontend/v1/vertraege/vertraege/getHeader/' + person_id,
};
},
getPersonAbteilung(person_id){
return {
method: 'get',
url: 'api/frontend/v1/vertraege/vertraege/getPersonAbteilung/' + person_id,
};
},
getLeitungOrg(oekurzbz){
return {
method: 'get',
url: 'api/frontend/v1/vertraege/vertraege/getLeitungOrg/' + oekurzbz,
};
},
getMitarbeiterUid(person_id){
return {
method: 'get',
@@ -1,4 +1,4 @@
import ApiCoreVertraege from "../../api/factory/vertraege/vertraege.js";
import ApiDetailHeader from "../../api/factory/detailHeader.js";
export default {
name: 'DetailHeader',
@@ -76,7 +76,7 @@ export default {
methods: {
getHeader(person_id) {
return this.$api
.call(ApiCoreVertraege.getHeader(person_id))
.call(ApiDetailHeader.getHeader(person_id))
.then(result => {
this.headerDataMa = result.data;
@@ -85,7 +85,7 @@ export default {
},
loadDepartmentData(person_id) {
return this.$api
.call(ApiCoreVertraege.getPersonAbteilung(person_id))
.call(ApiDetailHeader.getPersonAbteilung(person_id))
.then(result => {
this.departmentData = result.data;
})
@@ -93,7 +93,7 @@ export default {
},
getLeitungOrg(oekurzbz){
return this.$api
.call(ApiCoreVertraege.getLeitungOrg(oekurzbz))
.call(ApiDetailHeader.getLeitungOrg(oekurzbz))
.then(result => {
this.leitungData = result.data;
})