Bläddra i källkod

Simplified invoice template.

master
Pavel Šimerda 9 år sedan
förälder
incheckning
bfa0d11075
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. +2
    -2
      lib/invoice/db/invoices.py

+ 2
- 2
lib/invoice/db/invoices.py Visa fil

@@ -13,12 +13,12 @@ class Invoices(List):
When editing data files, you can use the following When editing data files, you can use the following
directives: directives:


Item -- price, followed by ':' and description
Item -- price, followed by ':', optional whitespace and item description
Due -- Due date YYYY-MM-DD Due -- Due date YYYY-MM-DD
Note -- a note at the and of the invoice Note -- a note at the and of the invoice
""" """
data_template = """\ data_template = """\
Item: 0000: Item summary
Item:
""" """
_directory = "income" _directory = "income"
_regex = re.compile("^(?P<date>[0-9]{8})-(?P<number>[0-9]{3})-(?P<company_name>[a-z0-9-]+)$") _regex = re.compile("^(?P<date>[0-9]{8})-(?P<number>[0-9]{3})-(?P<company_name>[a-z0-9-]+)$")


Laddar…
Avbryt
Spara