https://github.com/ixti/gnucash-invoice
Easy to use invoice printer for GnuCash.
https://github.com/ixti/gnucash-invoice
Last synced: 11 months ago
JSON representation
Easy to use invoice printer for GnuCash.
- Host: GitHub
- URL: https://github.com/ixti/gnucash-invoice
- Owner: ixti
- License: gpl-3.0
- Created: 2012-11-24T16:46:08.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2018-07-28T17:19:15.000Z (almost 8 years ago)
- Last Synced: 2025-06-07T04:46:50.597Z (12 months ago)
- Language: Ruby
- Size: 193 KB
- Stars: 11
- Watchers: 3
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# GnuCash::Invoice
GnuCash invoice printer for human beings.
## Installation
$ gem install gnucash-invoice
## Usage
GnuCash invoice printer currently supports SQLite and the usage is dead simple.
List all invoices that can be printed:
$ gnucash-invoice --dbpath /path/to/db.sqlite3
#00004 Customer A (2012-11-24)
#00005 Customer B (2012-11-24)
...
Print out invoice by it's number:
$ gnucash-invoice --dbpath /path/to/db.sqlite3 00004 > invoice-00004.html
Here's how generated invoice will look like:
---

---
## TODO
* TESTS!!!
* Fix models backend to allow specify db host:port
* ??? Add backend for old-school XML format
* Use currency from an account book instead of hardcoded
* ??? Export into FreshBooks
* Built-in several templates
* Allow specify foot notice (using markdown)
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request