Merge pull request #4832 from emanuelschuetze/supporters-in-pdf

Show supporters in motion pdf
This commit is contained in:
Sean 2019-07-11 11:45:02 +02:00 committed by GitHub
commit af538436e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

View File

@ -254,6 +254,26 @@ export class MotionPdfService {
]);
}
// supporters
const minSupporters = this.configService.instant<number>('motions_min_supporters');
if (minSupporters && motion.supporters.length > 0) {
const supporters = motion.supporters
.map(supporter => {
return supporter.full_name;
})
.join(', ');
metaTableBody.push([
{
text: `${this.translate.instant('Supporters')}:`,
style: 'boldText'
},
{
text: supporters
}
]);
}
// state
if (!infoToExport || infoToExport.includes('state')) {
metaTableBody.push([