A couple of days ago I released my free invoicing app for Hive called Hivevoice. It allows you to create invoices and get paid in HIVE or HBD.
The initial release relied on SQLite as the database which contained the invoices and invoice items. Which worked fine, but Hive is an amazing blockchain in that it supports all types of data ranging from custom JSON operations to transfer memos (that can also contain JSON), comments and posts. So I switched it to store the invoices as encrypted post data instead.
You can see an example of an invoice I created here.
It's an encrypted post only visible by the person who sent the invoice and the recipient of said invoice. I leverage a custom tag that I check for when I query Hive for invoices and it works beautifully.
This means SQLite is more of a cache of sorts now and Hive is the single source of truth for invoices. Which means the app itself won't really hold onto anything and everything remains secure and private.
Leading on from this was a feature I wanted from the beginning: QR codes. Allowing users to share payment QR codes containing HIVE/HBD payment information, invoice sharing using QR codes for invoice links and finally QR codes for Hive account addresses for easy mobile wallet scanning.
I'm also currently working on putting this up somewhere and allowing you to use it without having to worry about self-hosting. That has taken a beackseat to polishing the open source code first, but it's coming.
The source code is on GitHub here with detailed instructions for running it yourself: https://github.com/Vheissu/hivevoice