Show supporters in motion pdf

This commit is contained in:
Emanuel Schütze 2019-07-08 21:39:38 +02:00 committed by Sean Engelhardt
parent 6e8aa75162
commit 9a08ba59b0

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([