gnucash maint: [income-gst-statement] amend comments

Christopher Lam clam at code.gnucash.org
Sat Mar 9 04:14:49 EST 2019


Updated	 via  https://github.com/Gnucash/gnucash/commit/f99ca362 (commit)
	from  https://github.com/Gnucash/gnucash/commit/15e47ec9 (commit)



commit f99ca362f70509ae01cda6c3cb5e18cbd9b35892
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Sat Mar 9 17:12:13 2019 +0800

    [income-gst-statement] amend comments
    
    move comment 1 line up to prevent long #comment in gnucash.pot

diff --git a/gnucash/report/standard-reports/income-gst-statement.scm b/gnucash/report/standard-reports/income-gst-statement.scm
index 0e139c223..456d8875e 100644
--- a/gnucash/report/standard-reports/income-gst-statement.scm
+++ b/gnucash/report/standard-reports/income-gst-statement.scm
@@ -194,14 +194,15 @@ for taxes paid on expenses, and type LIABILITY for taxes collected on sales.")
        (gross-balance (lambda (s) (myadd (gross-sales s) (myneg (gross-purchases s)))))
        (net-balance (lambda (s) (myadd (sales-without-tax s) (myneg (purchases-without-tax s)))))
        (tax-payable (lambda (s) (myadd (tax-on-sales s) (myneg (tax-on-purchases s))))))
+
+    ;; each column will be a vector
+    ;; (vector heading              - string
+    ;;         calculator-function  - (calculator-function split) to obtain amount
+    ;;         reverse-column?      - #t for sales, #f for purchases
+    ;;         subtotal?            - #t - all columns need subtotals
+    ;;         start-dual-column?   - unused in GST report
+    ;;         friendly-heading-fn  - unused in GST report
     (append
-     ;; each column will be a vector
-     ;; (vector heading                                      ;; string
-     ;;         calculator-function                          ;; (calculator-function split) to obtain amount
-     ;;         reverse-column?                              ;; #t for sales, #f for purchases
-     ;;         subtotal?                                    ;; #t - all columns need subtotals
-     ;;         start-dual-column?                           ;; unused in GST report
-     ;;         friendly-heading-fn                          ;; unused in GST report
      ;; Translators: "Gross Sales" refer to Net Sales + GST/VAT on Sales
      (list (vector (_ "Gross Sales")
                    gross-sales



Summary of changes:
 gnucash/report/standard-reports/income-gst-statement.scm | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)



More information about the gnucash-changes mailing list