Tab Archive: Documentdropdown for Printing

- define structure for single print array
- fill array with documents according to Fas Dropdown Drucken
- event for adding documents from extension/addons
This commit is contained in:
ma0068
2025-08-27 14:11:03 +02:00
parent 6d7429eb8e
commit 3a5c4444cb
8 changed files with 754 additions and 8 deletions
+1 -1
View File
@@ -39,5 +39,5 @@ export default {
url: 'api/frontend/v1/stv/archiv/delete',
params: {akte_id, studiengang_kz}
};
}
},
};
+14
View File
@@ -73,4 +73,18 @@ export default {
params
};
},
getDocumentDropdown(params){
console.log(params);
return {
method: 'get',
url: 'api/frontend/v1/stv/dokumente/getDocumentDropDown/' + params.prestudent_id + '/' + params.studiensemester_kurzbz + '/' + params.studiengang_kz,
};
},
getDocumentDropdownMulti(studentUids){
return {
method: 'get',
url: 'api/frontend/v1/stv/dokumente/getDocumentDropDownMulti/',
params: {studentUids}
};
}
}