-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccountant.py
48 lines (36 loc) · 1.01 KB
/
accountant.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
import sys
from manager import FileHandler, Manager
reader = FileHandler("in.txt")
manager = Manager(reader)
@manager.action("saldo", 2)
def saldo(manager, rows):
price = float(rows[0])
comment = rows[1]
manager.modify_account(price)
return True
@manager.action("zakup", 3)
def zakup(manager, rows):
name = rows[0]
price = float(rows[1])
qty = float(rows[2])
manager.modify_account(-price * qty)
manager.modify_stock(name, qty)
return True
@manager.action("sprzedaz", 3)
def sprzedaz(manager, rows):
name = rows[0]
price = float(rows[1])
qty = float(rows[2])
manager.modify_account(price * qty)
manager.modify_stock(name, -qty)
return True
@manager.action("przeglad", 2)
def przeglad(manager, rows):
for row in manager.review(rows[0], rows[1]):
print("\n".join(row))
@manager.action("magazyn", 3)
def magazyn(manager, rows):
for item in rows:
if item not in manager.stock:
manager.stock[item] = 0.0
print(manager.stock)