-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig_bill_var.py
65 lines (52 loc) · 1.53 KB
/
config_bill_var.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
#this modules holds all the global variables that will be needed to do computation tasks between the modules
"""--------------------------------------variables used in the program-----------------------------------------------------"""
#cosmetics_frame variables
soap_bought = 0
Face_cream_bought = 0
Face_Wash_bought = 0
Hair_spray_bought = 0
Hair_gel_bought = 0
Body_lotion_bought = 0
#Grocery_frame variables
Rice_bought = 0
Food_oil_bought = 0
Daal_bought = 0
wheat_bought = 0
Sugar_bought = 0
Tea_bought = 0
#cold_drinks frame variables
maza_bought = 0
coke_bought = 0
frooti_bought = 0
thumbs_up_bought = 0
Limca_bought = 0
sprite_bought = 0
#Bill_menu frame variables total product price and tax variables
#total products prices variables
total_cosmetics_price_global = ""
total_grocery_price_global =""
total_cold_drink_price_global =""
#tax variables
cosmetic_tax_global =""
grocery_tax_global =""
Cold_Drink_tax_global =""
Total_payable_amount_global = ""
#customer info variables
customer_name_global = ""
customer_phone_number_global = ""
bill_number_global = ""
current_date_time_global = ""
#email variables
Email_Address_sender = "your email address"
Password_sender = "your email password"
reciever_email_address = ""
mail_body = ""
#system flags
flag_error_total = 0
flag = 0
selected_item_in_the_list_box=0
#window 2 variables
current_date_time_global_window_two =""
search_bill_global = ""
flag_email = 0
"""------------------------------------------------------------------------------------------------------------------------"""