Skip to content

Commit

Permalink
Fix: Set Opening Time of next invoice in closeBilling
Browse files Browse the repository at this point in the history
  • Loading branch information
zoernert committed Feb 13, 2024
1 parent a8d6f92 commit d14e302
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/services/debit.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ module.exports = {
}
current_debit.finalReading = rt;
// Collect all clearances in Time Frame
current_debit.invoice.opening = 0 // TODO Set with previous credit note
current_debit.invoice.opening = new Date().getTime(); // TODO Set with previous credit note

let offset = 0;
let results = 100;
Expand Down

0 comments on commit d14e302

Please sign in to comment.