forked from Evernight/lazy-beancount
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgen_accounts.py
257 lines (231 loc) · 9.38 KB
/
gen_accounts.py
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
#!/usr/bin/env python3
from typing import Optional
import datetime
import io
from dataclasses import dataclass, field
from collections import namedtuple
from datetime import datetime, timedelta
import click
import yaml
ACCOUNTS_OPENING_DATE = "1970-01-01"
ACCOUNTS_GEN_BY_TYPE = {
'cash': [
'Assets:@',
'Equity:OpeningBalances:@',
'Income:Unattributed:@',
'Income:Uncategorized:@',
'Expenses:Unattributed:@',
'Expenses:Uncategorized:@'
],
'opaque_funds': [
'Assets:@',
'Equity:OpeningBalances:@',
'Income:@:PnL'
],
'opaque_funds_valuation': [
'Assets:@',
'Equity:OpeningBalances:@',
'Income:@:PnL'
],
'investments': [
'Assets:@',
'Equity:OpeningBalances:@',
],
'liabilities': [
'Liabilities:@',
'Equity:OpeningBalances:@',
'Expenses:Unattributed:@'
]
}
ACCOUNT_TYPES = ACCOUNTS_GEN_BY_TYPE.keys()
@dataclass
class LeafConfig:
type: str = field()
name: str = field()
currencies: list[str] = field()
booking_method: Optional[str] = field()
@dataclass
class ParsedConfig:
account_configs: list = field()
opening_balances_date: datetime = field()
def generate_accounts_recursive(account_type, node, cur_name, last_parent_key=None):
# print(f'Gen {account_type} {cur_name}')
if isinstance(node, list):
result = []
for item in node:
result.extend(generate_accounts_recursive(account_type, item, cur_name))
return result
elif isinstance(node, dict):
results = []
booking_method = None
for key in node.keys():
if key == 'currencies':
results = [LeafConfig(account_type, cur_name, node[key], None)]
# elif key == 'leaf_currencies':
# for currency in node[key]:
# results.append(
# LeafConfig(account_type, f"{cur_name}:{currency}" if cur_name else currency, [currency], None)
# )
elif key == "booking_method":
booking_method = node[key]
else:
# Part of account name
return generate_accounts_recursive(
account_type,
node[key],
f"{cur_name}:{key}" if cur_name else key,
last_parent_key=key
)
if not results:
# If currencies not specified, assume the leaf dictionary is named as currency
results = [
LeafConfig(
account_type,
cur_name if cur_name else last_parent_key,
[last_parent_key],
None
)
]
for result in results:
result.booking_method = booking_method
return results
elif isinstance(node, str):
return [LeafConfig(account_type, f"{cur_name}:{node}" if cur_name else node, [node], None)]
else:
return []
def parse_config(filename):
with open(filename, 'r') as config:
parsed_config = yaml.safe_load(config)
# print(json.dumps(parsed_config, indent=4))
configs = []
for account_type in ACCOUNT_TYPES:
if account_type in parsed_config:
configs.extend(generate_accounts_recursive(account_type, parsed_config.get(account_type), ''))
opening_balances_date = datetime.strptime(parsed_config['opening_balances_date'], '%Y-%m-%d')
return ParsedConfig(
account_configs=configs,
opening_balances_date=opening_balances_date
)
def gen_update_totals(config, date, values, initial_check=False, comment_accounts=set()):
output = io.StringIO()
pad_date = (date - timedelta(days=1)).strftime('%Y-%m-%d')
balance_date = date.strftime('%Y-%m-%d')
for cfg in config.account_configs:
account_type = cfg.type
name = cfg.name
currencies = cfg.currencies
if account_type in ['cash', 'opaque_funds', 'liabilities']:
account_name = (f"Liabilities:{name}" if account_type == 'liabilities' else
f"Assets:{name}")
if initial_check:
pad_account = f'Equity:OpeningBalances:{name}'
elif account_type == 'opaque_funds':
pad_account = f"Income:{name}:PnL"
else:
pad_account = f"Expenses:Unattributed:{name}"
if account_name in comment_accounts:
output.write(f"; {pad_date} pad {account_name:65} {pad_account} \n")
else:
output.write(f"{pad_date} pad {account_name:65} {pad_account} \n")
output.write('\n')
for cfg in config.account_configs:
account_type = cfg.type
name = cfg.name
currencies = cfg.currencies
for currency in currencies:
if (name, currency) in values:
balance_statement = ''
if account_type in ['cash', 'opaque_funds', 'liabilities']:
balance_statement = (f"{balance_date} balance Liabilities:{name}" if account_type == 'liabilities' else
f"{balance_date} balance Assets:{name}")
elif account_type == 'opaque_funds_valuation':
balance_statement = f"{balance_date} custom \"valuation\" Assets:{name}"
output.write(f"{balance_statement:65} {values[(name, currency)]} {currency}\n")
return output.getvalue()
def gen_accounts(config):
output = io.StringIO()
for cfg in config.account_configs:
account_type = cfg.type
name = cfg.name
booking_method = cfg.booking_method
account_names = [
account.replace('@', name)
for account in ACCOUNTS_GEN_BY_TYPE[account_type]
]
for account in account_names:
if booking_method and account.startswith('Assets:'):
output.write(f"{ACCOUNTS_OPENING_DATE} open {account} \"{booking_method}\"\n")
else:
output.write(f"{ACCOUNTS_OPENING_DATE} open {account}\n")
output.write('\n')
return output.getvalue()
@click.group()
@click.option("--config_file", type=click.Path(), default="accounts_config.yml")
@click.pass_context
def cli(ctx, config_file):
ctx.obj['config'] = parse_config(config_file)
@cli.command()
@click.pass_context
def accounts(ctx):
config = ctx.obj['config']
for account_type, name, _ in config.account_configs:
account_names = [
account.replace('@', name)
for account in ACCOUNTS_GEN_BY_TYPE[account_type]
]
for account in account_names:
print(f"{ACCOUNTS_OPENING_DATE} open {account}")
print()
@cli.command()
@click.pass_context
def totals_init(ctx):
config = ctx.obj['config']
pad_date = (config.opening_balances_date - timedelta(days=1)).strftime('%Y-%m-%d')
balance_date = config.opening_balances_date.strftime('%Y-%m-%d')
for cfg in config.account_configs:
account_type = cfg.type
name = cfg.name
currencies = cfg.currencies
for currency in currencies:
if account_type in ['cash', 'opaque_funds', 'liabilities']:
pad_statement_left = (f"{pad_date} pad Liabilities:{name}" if account_type == 'liabilities' else
f"{pad_date} pad Assets:{name}")
print(f"{pad_statement_left:60} Equity:OpeningBalances:{name}")
print()
for cfg in config.account_configs:
account_type = cfg.type
name = cfg.name
currencies = cfg.currencies
for currency in currencies:
if account_type in ['cash', 'opaque_funds', 'liabilities']:
balance_statement = (f"{balance_date} balance Liabilities:{name}" if account_type == 'liabilities' else
f"{balance_date} balance Assets:{name}")
print(f"{balance_statement:60}" + f"0 {currency}")
@cli.command()
@click.argument("date")
@click.pass_context
def totals_update(ctx, date):
config = ctx.obj['config']
parsed_date = datetime.strptime(date, '%Y-%m-%d')
pad_date = (parsed_date - timedelta(days=1)).strftime('%Y-%m-%d')
balance_date = parsed_date.strftime('%Y-%m-%d')
print('\n')
for account_type, name, currencies in config.account_configs:
if account_type in ['cash', 'opaque_funds', 'liabilities']:
pad_statement_left = (f"{pad_date} pad Liabilities:{name}" if account_type == 'liabilities' else
f"{pad_date} pad Assets:{name}")
pad_account = (f"Income:{name}:PnL" if account_type == 'opaque_funds' else
f"Expenses:Unattributed:{name}")
print(f"{pad_statement_left:60}" + pad_account)
print()
for account_type, name, currencies in config.account_configs:
for currency in currencies:
if account_type in ['cash', 'opaque_funds', 'liabilities']:
balance_statement = (f"{balance_date} balance Liabilities:{name}" if account_type == 'liabilities' else
f"{balance_date} balance Assets:{name}")
print(f"{balance_statement:60}" + f"0 {currency}")
elif account_type == 'opaque_funds_valuation':
balance_statement = f"{balance_date} custom \"valuation\" Assets:{name}"
print(f"{balance_statement:60}" + f"0 {currency}")
if __name__ == '__main__':
cli(obj={})