reintegrated summary of billings

This commit is contained in:
Jörg Henke
2023-10-17 11:14:50 +02:00
parent e7d9d74269
commit ee41117a57
2 changed files with 3 additions and 2 deletions

View File

@ -7,7 +7,7 @@ plugins {
apply plugin: 'io.spring.dependency-management'
group = 'de.jottyfan'
version = '1.3.5'
version = '1.3.6'
description = """timetrack"""

View File

@ -1,6 +1,7 @@
package de.jottyfan.timetrack.modules.done;
import static de.jottyfan.timetrack.db.done.Tables.T_DONE;
import static de.jottyfan.timetrack.db.done.Tables.V_BILLING;
import static de.jottyfan.timetrack.db.done.Tables.V_JOB;
import static de.jottyfan.timetrack.db.done.Tables.V_MODULE;
import static de.jottyfan.timetrack.db.done.Tables.V_PROJECT;
@ -147,7 +148,7 @@ public class DoneGateway {
if (includeNull) {
list.add(new VBillingRecord());
}
// list.addAll(getJooq().selectFrom(V_BILLING).orderBy(V_BILLING.NAME).fetchInto(VBillingRecord.class));
list.addAll(getJooq().selectFrom(V_BILLING).orderBy(V_BILLING.NAME).fetchInto(VBillingRecord.class));
return list;
}