-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathbilling.example.yaml
74 lines (66 loc) · 2.14 KB
/
billing.example.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
# Information about the bill, company, and person billing
business:
name: "My Software Company"
person: "Billie Bob McAwesome"
address: "1234 Awesome Street, Funny Town, Postal 16, Ireland"
image_file: "assets/MySoftware.png"
# To whom the bill is to be presented
bill_to:
email: "[email protected]"
name: "Example Co, Inc."
street: "1213 Company Ave, Ste 16"
city_state_zip: "New York, NY 10010"
country: "USA"
# Description fields for the bill
bill:
department: "Awesome Engineering Dept"
currency: "EUR"
payment_terms: "Net 30"
due_date: "{{ endOfNextMonth }}"
# This controls whether or not the date in the upper right is rounded
# to the end of the month or not. false = rounded
use_exact_date: false
# You may have a number of billables, either services or goods.
# If you have more than will fit on the page, it will get ugly.
billables:
- quantity: 1
description: "Services rendered as awesome consultant for period {{ billingPeriod }}"
unit_price: 1234.56
currency: €
- quantity: 20
description: "Floppy disks"
unit_price: 10.23
currency: €
# You may enter tax as a percentage here (from 0 to 1.0). This will
# be applied to all items on the invoice.
tax:
default_percentage: 0.1
tax_name: "GST" # Default "Tax". Some countries use GST, some VAT, etc
# Where to send the money!
bank:
# Any fields you don't specify here, will be left entirely off
# the invoice. Some countries use sort codes and some SWIFT or
# BIC codes, for example. You might not have a bank address.
transfer_type: "Wire"
name: "Acme Bank"
address: "-"
account_type: "Checking"
iban: "DE99 5555 5555 5555 5555 55"
sort_code: "12-12-12"
#swift_bic: "ABCXYZ"
# Branding colors to use on the bill, assumes a light color
# and a dark color. If you use two dark colors, it will be ugly.
colors:
color_light:
r: 117
g: 180
b: 209
color_dark:
r: 16
g: 46
b: 95
# You can use the CLI to configure these. If present here, these
# values will override the CLI.
#app:
# output_dir: "./invoices"