-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreceipt.py
41 lines (34 loc) · 1.16 KB
/
receipt.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
#Simple-POS/receipt.py
#receipt formatting and parsing functions
import configparser as cp
from cart.py import Cart, Item
def getReceiptConfig(config_file):
"""
usage: getReceiptConfig(config_file)
returns a tuple of data from the receipt config file
data looks like
(
1- [('name', 'Customcrypto.com'),
('address', '1 Code Ave. Los Angeles, CA'),
('phone', '7606736121'),
('fax', 'none'),
('email', '[email protected]')],
2- [('greeting', 'Have a great day!')],
3- [('image', 'none')],
4- [('printer', 'none')]
)
"""
parser = cp.ConfigParser()
parser.read(config_file)
for section in parser.sections():
if "Basic" in section:
basic_info = parser.items(section)
elif "Greetings" in section:
greetings = parser.items(section)
elif "Image" in section:
image_location = parser.items(section)
elif "Printer" in section:
printer_location = parser.items(section)
return (basic_info, greetings, image_location, printer_location)
def formattedReceipt(receipt_config, cart_obj):
return