added order number to projects #107 (#108)

This commit is contained in:
Kevin Papst
2018-01-25 21:42:18 +01:00
committed by GitHub
parent 7f5b5ac254
commit 1958bb9d09
11 changed files with 76 additions and 87 deletions

View File

@@ -226,7 +226,7 @@ class InvoiceController extends AbstractController
*/
public function invoiceAction(InvoiceModel $model)
{
return $this->render('invoice/print.html.twig', [
return $this->render('invoice/renderer/print.html.twig', [
'model' => $model,
]);
}
@@ -237,7 +237,7 @@ class InvoiceController extends AbstractController
*/
public function timesheetAction(InvoiceModel $model)
{
return $this->render('invoice/timesheet.html.twig', [
return $this->render('invoice/renderer/timesheet.html.twig', [
'model' => $model,
]);
}