This repository was archived by the owner on Aug 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransactionui.py
66 lines (45 loc) · 1.73 KB
/
transactionui.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from transaction import Transaction
import db
def cleanup_tx(default_account, partial_transaction, line, tags):
cleaned_tx = None
while cleaned_tx is None:
t = Transaction()
print line
t.payee = partial_transaction.payee
while t.payee == "":
t.payee = raw_input("Payee []: ")
if t.payee in db.PAYEE_SOURCE_ACCOUNT_MAP:
t.source_account = db.PAYEE_SOURCE_ACCOUNT_MAP[t.payee]
t.target_account = default_account
if tags is not None:
for tag in tags:
if tag in db.TARGET_ACCOUNT_MAP:
t.target_account = db.TARGET_ACCOUNT_MAP[tag]
break
if tag in db.SOURCE_ACCOUNT_MAP:
t.source_account = db.SOURCE_ACCOUNT_MAP[tag]
break
while t.source_account is None:
t.source_account = raw_input("Source account: ")
t.valid_transaction_date = partial_transaction.valid_transaction_date
if partial_transaction.amount < 0:
original_source_account = t.source_account
t.source_account = t.target_account
t.target_account = original_source_account
t.amount = abs(partial_transaction.amount)
print t.to_ledger()
confirmation = raw_input("Looks good? [y/n/t] ")
if confirmation[0].capitalize() == "Y":
print ""
cleaned_tx = t
elif confirmation[0].capitalize() == "N":
print ""
elif confirmation[0].capitalize() == "T":
print "Tagged"
t.tagged = True
cleaned_tx = t
else:
print "Oops!"
return cleaned_tx