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 qualifications = await MemberQualificationService.getAll(memberId);
|
||||||
let positions = await MemberExecutivePositionService.getAll(memberId);
|
let positions = await MemberExecutivePositionService.getAll(memberId);
|
||||||
let communications = await CommunicationService.getAll(memberId);
|
let communications = await CommunicationService.getAll(memberId);
|
||||||
|
let educations = await MemberEducationService.getAll(memberId);
|
||||||
|
|
||||||
let pdf = await PdfExport.renderFile({
|
let pdf = await PdfExport.renderFile({
|
||||||
title: "Mitglieder-Ausdruck",
|
title: "Mitglieder-Ausdruck",
|
||||||
|
@ -165,6 +166,7 @@ export async function getMemberPrintoutById(req: Request, res: Response): Promis
|
||||||
qualifications,
|
qualifications,
|
||||||
positions,
|
positions,
|
||||||
communications,
|
communications,
|
||||||
|
educations,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
<br />
|
<br />
|
||||||
{{/each}} {{/if}} {{#if qualifications.length}}
|
{{/each}} {{/if}} {{#if qualifications.length}}
|
||||||
<br />
|
<br />
|
||||||
<h2>Qualifikationen</h2>
|
<h2>Qualifikationen / Funktionen</h2>
|
||||||
{{#each qualifications}}
|
{{#each qualifications}}
|
||||||
<div>
|
<div>
|
||||||
<h3>{{this.qualification.qualification}}: {{date this.date}}</h3>
|
<h3>{{this.qualification.qualification}}: {{date this.date}}</h3>
|
||||||
|
@ -69,6 +69,19 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
|
{{/each}} {{/if}} {{#if educations.length}}
|
||||||
|
<br />
|
||||||
|
<h2>Aus-/Fortbildungen</h2>
|
||||||
|
{{#each educations}}
|
||||||
|
<div>
|
||||||
|
<h3>{{this.education.education}}: {{date this.start}}{{#if this.end}} bis {{date this.end}}{{/if}}</h3>
|
||||||
|
{{#if this.place}}
|
||||||
|
<p>Ausbildungsort: {{this.place}}</p>
|
||||||
|
{{/if}}{{#if this.note}}
|
||||||
|
<p>Notiz: {{this.note}}</p>
|
||||||
|
{{/if}}
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
{{/each}} {{/if}}
|
{{/each}} {{/if}}
|
||||||
</body>
|
</body>
|
||||||
<style>
|
<style>
|
||||||
|
|
Loading…
Add table
Reference in a new issue