member print
This commit is contained in:
parent
fded8a663a
commit
38bfa3dd75
2 changed files with 16 additions and 1 deletions
|
@ -152,6 +152,7 @@ export async function getMemberPrintoutById(req: Request, res: Response): Promis
|
|||
let qualifications = await MemberQualificationService.getAll(memberId);
|
||||
let positions = await MemberExecutivePositionService.getAll(memberId);
|
||||
let communications = await CommunicationService.getAll(memberId);
|
||||
let educations = await MemberEducationService.getAll(memberId);
|
||||
|
||||
let pdf = await PdfExport.renderFile({
|
||||
title: "Mitglieder-Ausdruck",
|
||||
|
@ -165,6 +166,7 @@ export async function getMemberPrintoutById(req: Request, res: Response): Promis
|
|||
qualifications,
|
||||
positions,
|
||||
communications,
|
||||
educations,
|
||||
},
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue