Crates.io | invoicer |
lib.rs | invoicer |
version | 0.0.0 |
source | src |
created_at | 2022-05-18 07:56:11.798607 |
updated_at | 2022-05-18 07:56:11.798607 |
description | A niftly little helper program creating netto rechnungen and kostenvoranschläge. |
homepage | https://github.com/konifay/invoicer |
repository | https://github.com/konifay/invoicer |
max_upload_size | |
id | 588833 |
size | 1,763 |
A small helper tool to collect and concatenate receipts data with tax and value annotations from a csv or command-line.
Create a fully sanitized reimbursement request with
shinypenny --csv ./monopoly.csv
or
shinypenny --csv ./monopoly.csv reimbursement_request.pdf
or for a single data entry, you can pass all items via command-line
flags see shinypenny --help
.
There are certain artifacts included, i.e. fonts and pivot image.
google-roboto-fonts-2.138-6.fc32.noarch
and is pubished under Apache-2.0
.Apache-2.0 OR MIT
.Configure the destination bank account by setting these two vars
accordingly in your shinypenny.toml
configuration file
name = "Roger Ronjason"
iban = "NO1876..........909"
[company]
name = "Big $ Corp"
address = "Strahlemax Str. 20, 1111 Irgendwo"
which resides in (given your username is Alice
)
/home/alice/.config/
Linux
C:/Users/Alice/AppData/Roaming
Windows
/Users/Alice/Library/Application Support
Mac OS
The format is determined by the header row, which can be omitted if the order as kept in the example below. If the columns are re-ordered, the header tags must be provided with the names as shown below.
By default |
is used as separator, if parsing fails with that assumption, a secondary parse attempt is made with ;
.
Numbers and decimals may be delimited with .
characters independent of the locale - ,
is not a valid decimal separator, see the rust f64
grammar - this will change with v0.4.0
onwards and 3,5
will be accepted as well.
Receipt paths are relative to the cwd
.
date |company |description |netto |tax |brutto|path
2020-09-20|watercorp |Device: Superblaster 2k21 |100.00|0.05| 95 |spensiv.pdf
2020-09-20|OfflineBooks|How to create a wormhole. |100 |0.05| 95.00|funny.pdf
2020-09-20|OfflineBooks|Yaks, to shave or not to | 10 |0.16| 9.40|001_receipt.pdf
2020-09-20|Prepers. Inc|Doomsday prep day |111 |0.16| 93.24|dpd.pdf
but also with €
and %
annotations.
date |company |description |netto |tax |brutto|path
2020-09-20|watercorp |Device: Superblaster 2k21 |100 €|5 %| 95 |spensiv.tiff
2020-09-20|OfflineBooks|How to create a wormhole. |100 €|0.05| 95.00 €|funny.jpeg
2020-09-20|OfflineBooks|Yaks, to shave or not to | 10 |16 %| 9.40|001_receipt.pdf
2020-09-20|Prepers. Inc|Doomsday prep day |111 |0.16| 93.24|dpd.png
This is a purely necessity driven project.
0.00
values with a -
within the tableIf you need a particular feature, please open an issue before filing a pull request.