This patch saves the bank information in the DB, in a new table. It also adds two new CLI commands, register/unregister, so enter the banking information. (This should later be done internally). It also adds new types alias for the DB transaction type and new converters. Input `transactions` method renamed to `parse`. Issue #18
31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
import json
|
|
|
|
from pfbudget.core.input.input import Input
|
|
from pfbudget.core.transactions import Transactions
|
|
from pfbudget.utils.converters import convert
|
|
from pfbudget.utils.utils import parse_decimal
|
|
|
|
|
|
class JsonParser(Input):
|
|
def __init__(self, options):
|
|
super().__init__(options)
|
|
|
|
def parse(self) -> Transactions:
|
|
try:
|
|
with open(self.options["json"][0], "r") as f:
|
|
return [
|
|
convert(
|
|
[
|
|
t["bookingDate"],
|
|
t["remittanceInformationUnstructured"],
|
|
self.options["bank"][0],
|
|
parse_decimal(t["transactionAmount"]["amount"])
|
|
if not self.options["invert"]
|
|
else -parse_decimal(t["transactionAmount"]["amount"]),
|
|
],
|
|
)
|
|
for t in json.load(f)["transactions"]["booked"]
|
|
]
|
|
except KeyError:
|
|
print("No json file defined")
|