-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.py
263 lines (223 loc) · 10.5 KB
/
app.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
import subprocess as sp
import pymysql
import pymysql.cursors
def createTeamMember():
try:
inputs = {}
print("Enter team member's details: ")
name = (input("Name (First Name, Last Name): ")).split(' ')
inputs["first_name"] = name [0]
inputs["last_name"] = name [1]
inputs["roll_number"] = input("Roll Number: ")
inputs["email"] = input("Email Address: ")
inputs["contact_number"] = input("Contact Number: ")
works = (input("Work ID: ")).split(' ')
query1 = "INSERT INTO team_members(first_name, last_name, roll_number, email, contact_number) VALUES('%s', '%s', '%d', '%s', '%d')" %(inputs["first_name"], inputs["last_name"], inputs["roll_number"], inputs["email"], inputs["contact_number"])
print(query1)
cur.execute(query1)
con.commit()
for work in works:
query2 = "INSERT INTO works(roll_number, job_id) VALUES('%d', '%s')" %(inputs["roll_number"], work)
print(query2)
cur.execute(query2)
con.commit()
print("Team Member Added To The Database")
except pymysql.Error as e:
con.rollback()
print('Failed to insert into database')
print('Error {!r}, Error Number {}'.format(e, e.args[0]))
def createFunder():
try:
inputs = {}
print("Enter funder's details: ")
name = (input("Name (First Name, Last Name): ")).split(' ')
inputs["first_name"] = name [0]
inputs["last_name"] = name [1]
inputs["roll_number"] = input("Roll Number: ")
inputs["email"] = input("Email Address: ")
inputs["contact_number"] = input("Contact Number: ")
query = "INSERT INTO funders(first_name, last_name, roll_number, email, contact_number) VALUES('%s', '%s', '%d', '%s', '%d')" %(inputs["first_name"], inputs["last_name"], inputs["roll_number"], inputs["email"], inputs["contact_number"])
print(query)
cur.execute(query)
con.commit()
print("Funder's Details Added To The Database")
except pymysql.Error as e:
con.rollback()
print('Failed to insert into database')
print('Error {!r}, Error Number {}'.format(e, e.args[0]))
def addFunding():
try:
inputs = {}
print("Enter funding details: ")
inputs["roll_number"] = input("Roll Number: ")
inputs["date"] = input("Date and Time (YYYY-MM-DD HH:MM:SS) ")
inputs["amount"] = input("Amount in INR: ")
inputs["mode"] = input("Mode: ")
inputs["transaction_id"] = input("Transaction ID: ")
query = "INSERT INTO fundings(roll_number, date, amount, mode, transaction_id) VALUES('%d', '%s', '%d', '%s', '%s')" %(inputs["roll_number"], inputs["date"], inputs["amount"], inputs["mode"], inputs["transaction_id"])
print(query)
cur.execute(query)
con.commit()
print("Funding added to the database")
except pymysql.Error as e:
con.rollback()
print('Failed to insert into database')
print('Error {!r}, Error Number {}'.format(e, e.args[0]))
def createProduct():
try:
inputs = {}
print("Enter product details: ")
inputs["product_id"] = input("Product ID: ")
inputs["product_category"] = input("Product Category: ")
inputs["product_name"] = input("Product Name: ")
inputs["product_mrp"] = input("Product MRP: ")
query = "INSERT INTO products(product_id, product_category, product_name, product_mrp) VALUES('%s', '%s', '%s', '%f')" %(inputs["product_id"], inputs["products_category"], input["product_name"], input["product_mrp"])
print(query)
cur.execute(query)
con.commit()
print("Product added to the database")
except pymysql.Error as e:
con.rollback()
print('Failed to insert into database')
print('Error {!r}, Error Number {}'.format(e, e.args[0]))
def addProcurement():
try:
inputs = {}
print("Enter procurement details: ")
inputs["product_id"] = input("Product ID: ")
inputs["date"] = input("Date (YYYY-MM-DD): ")
inputs["vendor"] = input("Vendor Name: ")
inputs["quantity"] = int(input("Quantity: "))
inputs["total_cost"] = float(input("Total Cost: "))
query = "INSERT INTO procurement(product_id, date, vendor, quantity, total_cost) VALUES('%s', '%s', '%s', '%d', '%f')" %(inputs["product_id"], inputs["date"], inputs["vendor"], inputs["quantity"], inputs["total_cost"])
print(query)
cur.execute(query)
con.commit()
print("Procurement added to the database")
except pymysql.Error as e:
con.rollback()
print('Failed to insert into database')
print('Error {!r}, Error Number {}'.format(e, e.args[0]))
def addSales():
try:
inputs = {}
print("Enter sales details: ")
inputs["product_id"] = input("Product Id: ")
inputs["date"] = input("Date (YYYY-MM-DD): ")
inputs["quantity_before_sales"] = int(input("Quantity Before Sales: "))
inputs["quantity_after_sales"] = inputs["quantity_after_sales"]
query = "INSERT INTO sales(product_id, date, quantity_before_sales, quantity_after_sales) VALUES('%s', '%s', '%d', '%d')" %(inputs["product_id"], inputs["date"], inputs["quantity_before_sales"], inputs["quantity_after_sales"])
print(query)
cur.execute(query)
con.commit()
print("Initial sales details added to the database")
except pymysql.Error as e:
con.rollback()
print('Failed to insert into database')
print('Error {!r}, Error Number {}'.format(e, e.args[0]))
def updateSales():
try:
input_date = input("Enter a date (YYYY-MM-DD): ")
query = "SELECT * FROM sales WHERE date = '%s'" %(input_date)
targets = cur.execute(query).fetchall()
for target in targets:
target = target.split(' ')
print("Product ID: '%s' Quantity Before Sales: '%d' Quantity After Sales: '%d'" %(target[0], target[2], target[2]))
choice = input("Want to change quantity before sales? [y/n] ")
if choice == 'y':
target[2] = int(input("Updated Quantity Before Sales: "))
target[3] = int(input("Updated Quantity After Sales: "))
query1 = "UPDATE sales SET quantity_before_sales = '%d', quantity_after_sales = '%d' WHERE date = '%s' AND product_id = '%s'" %(target[2], target[3], target[1], target[0])
cur.execute(query1)
con.commit()
print("Sales details updated to the database")
except pymysql.Error as e:
con.rollback()
print('Failed to update the database')
print('Error {!r}, Error Number {}'.format(e, e.args[0]))
def addAccount():
try:
input_date = input("Enter a date (YYYY-MM-DD): ")
query = "SELECT * FROM sales WHERE date = '%s'" %(input_date)
targets = cur.execute(query).fetchall()
total_expected_revenue = 0
for target in targets:
target = target.split(' ')
query1 = "SELECT P.product_mrp * S.quantity_before_sales FROM product AS P, sales AS S WHERE P.product_id = '%s' AND S.product_id = '%s' AND S.date = '%s'" %(target[0], target[0], target[1])
total_expected_revenue += cur.execute(query1).fetchone()
con.commit()
query2 ="UPDATE sales SET expected_revenue = '%f' WHERE date = '%s' AND product_id = '%s'" %(total_expected_revenue, target[1], target[0])
cur.execute(query2)
con.commit()
print("Accounts are updated to the database")
except pymysql.Error as e:
con.rollback()
print('Failed to update the database')
print('Error {!r}, Error Number {}'.format(e, e.args[0]))
def finalAccount():
try:
input_date = input("Enter a date (YYYY-MM-DD): ")
query = "SELECT * FROM sales WHERE date = '%s'" %(input_date)
targets = cur.execute(query).fetchall()
total_expected_revenue = 0
for target in targets:
target = target.split(' ')
query1 = "SELECT P.product_mrp * (S.quantity_before_sales - S.quantity_after_sales) FROM product AS P, sales AS S WHERE P.product_id = '%s' AND S.product_id = '%s' AND S.date = '%s'" %(target[0], target[0], target[1])
total_expected_revenue += float(cur.execute(query1).fetchone())
con.commit()
query2 ="UPDATE sales SET expected_revenue = '%f' WHERE date = '%s' AND product_id = '%s'" %(total_expected_revenue, target[1], target[0])
cur.execute(query2)
con.commit()
print("Accounts are updated to the database")
except pymysql.Error as e:
con.rollback()
print('Failed to update the database')
print('Error {!r}, Error Number {}'.format(e, e.args[0]))
def updateAccount():
try:
input_date = input("Enter a date (YYYY-MM-DD): ")
actual_revenue = float(input("Actual Revenue in INR: "))
query = "UPDATE accounts SET actual_revenue = '%f' WHERE date = '%s'" %(actual_revenue, input_date)
cur.execute(query)
con.commit()
print("Actual revenue updated in the database")
except pymysql.Error as e:
con.rollback()
print('Failed to update the database')
print('Error {!r}, Error Number {}'.format(e, e.args[0]))
while(True):
temp = sp.call('clear', shell=True)
username = input("Username: ")
password = input("Password: ")
try:
temp = sp.call('clear', shell=True)
con = pymysql.connect(
host = 'localhost',
user = username,
password = password,
db = 'BHB',
cursorclass = pymysql.cursors.DictCursor
)
temp = sp.call('clear', shell=True)
if(con.open):
print("Connected")
else:
print("Failed to Connect")
temp = input("Enter any key to continue> ")
with con:
cur = con.cursor()
while(1):
temp = sp.call('clear', shell=True)
choice = int(input("Enter an option: "))
temp = sp.call('clear', shell=True)
if choice == 5:
break
else:
dispatch(choice)
temp = input("Enter any key to contine> ")
except:
temp = sp.call('clear', shell=True)
print("Connection Refused: Invalid credentials or Permission Denied")
option = input("Enter exit to exit and anything else continue> ")
if option == 'exit':
break