summaryrefslogtreecommitdiff
path: root/lasku.py
blob: c4fa3556e91a9d3b6e276b2be169d7ad7d574235 (plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#!/usr/bin/env python3


import os
import sys

import yaml


def debug(*args):
    sys.stderr.write('{}\n'.format(' '.join(str(x) for x in args)))

def round(f):
    return int(f + 0.5)

def euros(cents):
    return '%.02f' % (cents / 100.0)


class Item:

    def __init__(self, itemdict):
        self.dict = dict(itemdict)

        bignum = 99999999
        self.dict.update({
            'unit_net_cents': bignum,
            'unit_vat_cents': bignum,
            'unit_cents': bignum,
            'total_net_cents': bignum,
            'total_vat_cents': bignum,
            'total_cents': bignum,
        })

        self.compute()
        self.check()

        self.dict.update({
            'unit_net_euros': euros(self['unit_net_cents']),
            'unit_vat_euros': euros(self['unit_vat_cents']),
            'unit_euros': euros(self['unit_cents']),
            'total_net_euros': euros(self['total_net_cents']),
            'total_vat_euros': euros(self['total_vat_cents']),
            'total_euros': euros(self['total_cents']),
        })

    def __getitem__(self, key):
        return self.dict[key]

    def __setitem__(self, key, value):
        self.dict[key] = value

    def items(self):
        return self.dict.items()

    def check(self):
        count = self['count']
        vatpc = int(self['vatpc'] / 100.0)
        unit_net_cents = self['unit_net_cents']
        unit_vat_cents = self['unit_vat_cents']
        unit_cents = self['unit_cents']
        total_net_cents = self['total_net_cents']
        total_vat_cents = self['total_vat_cents']
        total_cents = self['total_cents']

        assert unit_net_cents * count == total_net_cents, \
            '{} * {} != {}'.format(unit_net_cents, count, total_net_cents)

        assert unit_net_cents + unit_vat_cents == unit_cents, \
            '{} + {} != {}'.format(unit_net_cents, unit_vat_cents, unit_cents)

        assert total_cents == count * (unit_net_cents + unit_vat_cents), \
            '{} != {} * ({} + {})'.format(
                total_net_cents, count, unit_net_cents, unit_vat_cents)

        if vatpc > 0:
            assert unit_cents == unit_net_cents + unit_vat_cents, \
                '{} != {} + {}'.format(unit_cents, unit_net_cents, unit_vat_cents)

            assert total_vat_cents == count * unit_vat_cents, \
                '{} != {} * {}'.format(total_vat_cents, count, unit_net_cents)

            assert round(total_cents * vatpc) == total_vat_cents, \
                '{} * {} != {}'.format(
                    total_cents, vatpc, total_vat_cents)

    def compute(self):
        count = self['count']
        vatpc = float(self['vatpc']) / 100.0

        unit_net_cents = self['unit_net_cents'] = round(self['unit'] * 100.0)
        unit_vat_cents = self['unit_vat_cents'] = round(
            unit_net_cents * vatpc / (1 - vatpc))
        unit_cents = self['unit_cents'] = unit_net_cents + unit_vat_cents

        self['total_net_cents'] = unit_net_cents * count
        self['total_vat_cents'] = unit_vat_cents * count
        self['total_cents'] = count * unit_cents

item_template = (
    r'\raggedbottom #number# & '
    r'\parbox[t]{5.5cm}{#desc#\\#date#} & '
    r'\raggedbottom #count# & '
    r'\raggedbottom #unit_net_euros# & '
    r'\raggedbottom #unit_euros# & '
    r'\raggedbottom #vatpc#\% & '
    r'\raggedbottom #total_net_euros# & '
    r'\raggedbottom #total_vat_euros# & '
    r'\raggedbottom #total_euros# \\[2.2ex]'
)


def cat(filename):
    with open(filename) as f:
        return f.read()


def substitute_all(text, subst):
    for key, value in subst.items():
        pattern = '#{}#'.format(key)
        text = str(value).join(text.split(pattern))
    return text


dirname = os.path.dirname(__file__)
filename = os.path.join(dirname, 'template.tex')
text = cat(filename)

with open(sys.argv[1]) as f:
    company = yaml.safe_load(f)
with open(sys.argv[2]) as f:
    invoice = yaml.safe_load(f)

items = invoice['invoiceitems']
values = dict(company)
values.update(invoice)

itemtext = ''
sum_net_cents = 0
sum_vat_cents = 0
sum_cents = 0

for item in items:
    it = Item(item)
    itemtext += substitute_all(item_template, it)
    sum_net_cents += it['total_net_cents']
    sum_vat_cents += it['total_vat_cents']
    sum_cents += it['total_cents']

values['itemtext'] = itemtext
values['totalraw'] = euros(sum_net_cents)
values['totalvat'] = euros(sum_vat_cents)
values['totalsum'] = euros(sum_cents)

values['amount'] = values['totalsum']

text = substitute_all(text, values)
sys.stdout.write(text)