Skip to content

Commit 704ae12

Browse files
author
Andreas Müller
committed
removed project from detail table in invoice
1 parent cf1ec45 commit 704ae12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/output/invoice.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ ${closing}
221221
<h1 style="page-break-before: always;"><br/><br/>Stundenrapport detailliert</h1>`;
222222
this.headline('Details');
223223

224-
let times = [['date', 'project', 'iid', 'time']];
224+
let times = [['date', 'iid', 'time']];
225225
let days = Object.keys(this.days);
226226
days.sort();
227227
days.forEach(
@@ -235,7 +235,7 @@ ${closing}
235235
iids.sort();
236236
iids.forEach(
237237
iid => {
238-
times.push([refD, p, iid, this.config.toHumanReadable(day[p][iid], 'records')]);
238+
times.push([refD, iid, this.config.toHumanReadable(day[p][iid], 'records')]);
239239
});
240240
});
241241
});

0 commit comments

Comments
 (0)