mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
[Bug 742332] - German tax report uses US tax quarters and not real quarters.
Due a copy and paste the German tax report was still using the US quarters. This wrong as the latter are not real quarters as in Germany. To fix this we simply set tax-qtr-real-qtr-year to 0 to force real quarters. Thus changes to taxtxf.scm can be easily ported to taxtxf-de_DE.scm
This commit is contained in:
committed by
Geert Janssens
parent
1b227b1abc
commit
a3cf7f2868
@@ -115,9 +115,10 @@
|
||||
(define (lx-collector level action arg1 arg2)
|
||||
((vector-ref levelx-collector (- level 1)) action arg1 arg2))
|
||||
|
||||
;; IRS asked congress to make the tax quarters the same as real quarters
|
||||
;; This is the year it is effective. THIS IS A Y10K BUG!
|
||||
(define tax-qtr-real-qtr-year 10000)
|
||||
;; Unlike to the US the German tax quarters are real quarters.
|
||||
;; To allow for easily incorporating changes from the US version
|
||||
;; we simply set tax-qtr-real-qtr-year to 0.
|
||||
(define tax-qtr-real-qtr-year 0)
|
||||
|
||||
(define (tax-options-generator)
|
||||
(define options (gnc:new-options))
|
||||
|
||||
Reference in New Issue
Block a user