We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f60c47c commit e7b7f2cCopy full SHA for e7b7f2c
src/output/invoice.js
@@ -102,8 +102,10 @@ ${closing}
102
warnings += `\n* ${warning.data.iid} ${warning.data.title}: Difference between stats and notes of ${warning.time}.`;
103
warnings += `<br/>Stats: ${stats}, Notes: ${notes}`
104
});
105
- this.warningHeadline('Warnings');
106
- this.warning(warnings+'\n');
+ if(warnings != '') {
+ this.warningHeadline('Warnings');
107
+ this.warning(warnings+'\n');
108
+ }
109
}
110
111
makeIssues() {
@@ -131,6 +133,9 @@ ${closing}
131
133
132
134
135
makeRecords() {
136
+ this.out += `
137
+
138
+<h1 style="page-break-before: always;"><br/><br/>Stundenrapport detailliert</h1>`;
139
this.headline('Details');
140
141
let times = [['date', 'project', 'iid', 'time']];
0 commit comments