Release 1.19.5 (#3265)

This commit is contained in:
Kevin Papst
2022-04-26 18:48:43 +02:00
committed by GitHub
parent 41e8e196ec
commit 76899d2fdb
133 changed files with 849 additions and 683 deletions

View File

@@ -37,11 +37,18 @@ abstract class AbstractTwigRenderer implements RendererInterface
$language = $model->getTemplate()->getLanguage();
$formatLocale = $model->getFormatter()->getLocale();
$template = '@invoice/' . basename($document->getFilename());
$entries = [];
foreach ($model->getCalculator()->getEntries() as $entry) {
$entries[] = $model->itemToArray($entry);
}
$options = [
// model should not be used in the future, but we can likely not remove it
'model' => $model,
// new since 1.16.7 - templates should only use the pre-generated values
'invoice' => $model->toArray(),
// new since 1.19.5 - templates should only use the pre-generated values
'entries' => $entries
];
return $this->renderTwigTemplateWithLanguage($this->twig, $template, $options, $language, $formatLocale);