call list improvements (WIP)

- add extended recommendation label
- remove motion blocks, use the column for 'notes'
- don't break up tables
This commit is contained in:
Maximilian Krambach 2019-04-12 12:28:18 +02:00
parent f622d9b546
commit 5f35fe8460
1 changed files with 4 additions and 3 deletions

View File

@ -607,7 +607,7 @@ export class MotionPdfService {
style: 'tableHeader'
},
{
text: this.translate.instant('Motion block'),
text: this.translate.instant('Notes'),
style: 'tableHeader'
}
]
@ -643,6 +643,7 @@ export class MotionPdfService {
table: {
widths: ['auto', 'auto', 'auto', '*', 'auto', 'auto'],
headerRows: 1,
dontBreakRows: true,
body: callListTableBody.concat(callListRows)
},
layout: {
@ -675,9 +676,9 @@ export class MotionPdfService {
{ text: motion.submitters.length ? motion.submitters.map(s => s.short_name).join(', ') : '' },
{ text: motion.title },
{
text: motion.recommendation ? this.translate.instant(motion.recommendation.recommendation_label) : ''
text: motion.recommendation ? this.motionRepo.getExtendedRecommendationLabel(motion) : ''
},
{ text: motion.motion_block ? motion.motion_block.title : '' }
{ text: '' }
];
}