Skip to content

Instantly share code, notes, and snippets.

@jralls
Created April 29, 2019 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jralls/3c7a0420574be5d8b8e084c3f04a0d36 to your computer and use it in GitHub Desktop.
Save jralls/3c7a0420574be5d8b8e084c3f04a0d36 to your computer and use it in GitHub Desktop.
Saved report scheme options from book.gcm
(let ((options (gnc:report-template-new-options/report-guid "c4173ac99b2b448289bf4d11c731af13" "Balance Sheet")))
(let ((option (gnc:lookup-option options "General" "Report Title")))
((lambda (option)
(if option ((gnc:option-setter option) "佳匯旅行社有限公司"))) option))
(let ((option (gnc:lookup-option options "General" "Report name")))
((lambda (option)
(if option ((gnc:option-setter option) "佳匯旅行社有限公司"))) option))
(if (defined? 'gnc:restore-report-by-guid-with-custom-template)
(gnc:restore-report-by-guid-with-custom-template 0 "c4173ac99b2b448289bf4d11c731af13" "Balance Sheet" "" options)
(gnc:restore-report-by-guid 0 "c4173ac99b2b448289bf4d11c731af13" "Balance Sheet" options)) )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment