mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Bug #678848 - Customer/Vendor reports off-by-one on start date
Additionally removes a superfluous module load BP git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22248 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
e0e41d221f
commit
b21a649717
@ -28,7 +28,6 @@
|
||||
|
||||
(use-modules (srfi srfi-1))
|
||||
(use-modules (gnucash gnc-module))
|
||||
(use-modules (gnucash printf))
|
||||
(use-modules (gnucash main)) ; for gnc:debug
|
||||
|
||||
(gnc:module-load "gnucash/report/report-system" 0)
|
||||
@ -351,7 +350,7 @@
|
||||
(if reverse?
|
||||
(set! value (gnc-numeric-neg value)))
|
||||
|
||||
(if (gnc:timepair-later start-date date)
|
||||
(if (gnc:timepair-le start-date date)
|
||||
(begin
|
||||
|
||||
; Adds 'balance' row if needed
|
||||
|
Loading…
Reference in New Issue
Block a user