diff options
-rw-r--r-- | README.md | 32 |
1 files changed, 32 insertions, 0 deletions
@@ -14,6 +14,37 @@ file in `$XDG_CONFIG_HOME/fracture/config` (`XDG_CONFIG_HOME` falls back to `$HOME/.config`). If configuration file is already set it will load the current configuration file for you to edit. +You can use this example file as start: + +```ini +[invoice] +id_format = "%%d/%%d/%%d/%%04d" %% (series, date.year, int(date.month/3+1), id) +template = template.latex + +# Currency related, just the amount of decimal places and the currency to use. +currency = € +currency_decimal = 2 + +[series] +# This are the series *I* have, you can use any. +1 = Telecom +2 = Teaching +3 = Publishing +4 = Correction + +[taxes] +# This are the extra taxes that you may apply to your earnings. +# Both key and value are used later. +IRPF = -0.15 + +[vat] +# Those names are not used, but are good for you to know what you mean +general = 0.21 +reducido = 0.10 +superreducido = 0.04 +exento = 0.00 +``` + ## Storage Storage is done in the configuration directory (for the moment). @@ -24,3 +55,4 @@ store the invoice in the database. ## TODO +There is stuff to do but I didn't list it yet. |