Skip to content
Snippets Groups Projects
Commit 471fe79c authored by Robert Goldmann's avatar Robert Goldmann
Browse files

Fixed #529 - don't set template ID to null in controller, use ftl instead

parent 3cd83bc3
Branches
Tags
No related merge requests found
Pipeline #3607 canceled
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<groupId>de.deadlocker8</groupId> <groupId>de.deadlocker8</groupId>
<artifactId>BudgetMaster</artifactId> <artifactId>BudgetMaster</artifactId>
<version>2.4.1</version> <version>2.4.2</version>
<name>BudgetMaster</name> <name>BudgetMaster</name>
<repositories> <repositories>
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
<app.versionDate>${maven.build.timestamp}</app.versionDate> <app.versionDate>${maven.build.timestamp}</app.versionDate>
<maven.build.timestamp.format>dd.MM.yy</maven.build.timestamp.format> <maven.build.timestamp.format>dd.MM.yy</maven.build.timestamp.format>
<app.versionCode>24</app.versionCode> <app.versionCode>25</app.versionCode>
<app.author>Robert Goldmann</app.author> <app.author>Robert Goldmann</app.author>
<project.outputDirectory>build/${project.version}</project.outputDirectory> <project.outputDirectory>build/${project.version}</project.outputDirectory>
......
...@@ -126,8 +126,6 @@ public class TemplateController extends BaseController ...@@ -126,8 +126,6 @@ public class TemplateController extends BaseController
final Template template = templateOptional.get(); final Template template = templateOptional.get();
template.setID(null);
templateService.prepareTemplateForNewTransaction(template, true); templateService.prepareTemplateForNewTransaction(template, true);
boolean isPayment = true; boolean isPayment = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment