1
0
Fork 0
mirror of https://github.com/Findus23/invoices.git synced 2024-09-19 15:13:47 +02:00

added useful tables with field descriptions

This commit is contained in:
fkarg 2020-09-22 14:01:51 +02:00
parent ffd7b2ddf0
commit 2dab90e9ed

View file

@ -1,30 +1,78 @@
# Invoices
## Config
## Config: config.yaml
The main config is in a file called `config.yaml`:
### Field descriptions
| Field | Type | description |
|:---|:---:|:---|
| `default_hourly_rate` | int | The hourly rate you bill for in this receipt. |
| `default_recipient` | string | Filename (before the `.yaml`) of your default recipient. |
| `description` | string | Description of the work you did. |
| `title` | string | Title of the invoice. |
| `hours` | int | Probably: number of hours worked. Will be asked regardless, for some reason. |
| `invoice_dir` | string | Directory in which the invoice will be generated. Needs to exist prior to execution. |
| `last_id` | int | Since invoices need to have unique IDs, this number will be increased by one. After that, the config will be written back to the file. This deletes any prior comments. |
| `bank_fee` | int | Optional. If there are some bank fees you can invoice. |
### Example
```config.yaml
default_hourly_rate: 50 # what you expect to get for each hour worked
default_recipient: <rname> # filename of recipient in `recipients`
description: some description # not sure where it shows up
description: some description # description of what you've been working on
hours: 31 # worked hours
invoice_dir: invoice # directory needs to exist
last_id: 3 # will get updated after generating invoice
```
## Recipients
## Recipients: recipients/\<rname.yaml\>
For every recipient `rname`, have a `recipients/<rname>.yaml` file structured
like this:
### Field descriptions
| Field | Type | description |
|:---|:---:|:---|
| `name` | string | Your recipients name. |
| `address` | string | Your recipients business address. Both street and number. |
| `zip` | int | ZIP code of your recipients address. |
| `city` | string | City correlating to the zip code. |
| `country` | string | Country of your recipients business address. |
<!--
| `IBAN` | string | The IBAN of your bank account. |
| `BIC` | string | The BIC of your bank account. |
| `bank` | string | The name of your bank. |
-->
### Example
```recipients/<rname>.yaml
recipient: ?? line required?
name: <name>
address: <address>
zip: <zip>
city: <city>
cityShort: O ??
country: Deutschland
IBAN: <IBAN>
BIC: <BIC>
name: <name>
address: <address>
zip: <zip>
city: <city>
cityShort: O ??
country: Deutschland
IBAN: <IBAN>
BIC: <BIC>
```
## From
## Your own information: from.yaml
Have a file called `from.yaml` with your own information structured like this:
### Field descriptions
| Field | Type | description |
|:---|:---:|:---|
| `name` | string | Your full name. |
| `address` | string | Your Address. Both street and number. |
| `zip` | int | Your area ZIP code. |
| `city` | string | The city you live in. |
| `cityShort | string | Shortened version of your city name. |
| `countryDE` | strang | Name of your country in german, used for an invoice in german. |
| `countryEN` | strang | Name of your country in english, used for an invoice in english. |
| `IBAN` | string | The IBAN of your bank account. |
| `BIC` | string | The BIC of your bank account. |
| `bank` | string | The name of your bank. |
### Example
```from.yaml
name: <name>
address: <address>