mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Use xaccSplitGetReconcile instead of (zero? date)
(zero? date) not a good test for reconcile status. Use xaccSplitGetReconcile(split)=='y'. This is a better test.
This commit is contained in:
parent
cd8f2b7c7e
commit
01e604d8ee
@ -974,10 +974,9 @@ tags within description, notes or memo. ")
|
||||
(lambda (split transaction-row?)
|
||||
(gnc:make-html-table-cell/markup
|
||||
"date-cell"
|
||||
(let ((date (xaccSplitGetDateReconciled split)))
|
||||
(if (zero? date)
|
||||
""
|
||||
(qof-print-date date)))))))
|
||||
(if (eq? (xaccSplitGetReconcile split) #\y)
|
||||
(qof-print-date (xaccSplitGetDateReconciled split))
|
||||
"")))))
|
||||
|
||||
(add-if (column-uses? 'num)
|
||||
(vector (if (and BOOK-SPLIT-ACTION
|
||||
|
Loading…
Reference in New Issue
Block a user