This repository has been archived by the owner on Mar 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_ui.py
executable file
·266 lines (211 loc) · 7.5 KB
/
admin_ui.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
264
265
266
#!/usr/bin/env python
#-*- coding: utf-8 -*-
import db
import os
import sys
import time
import excel_sheet
global db
def clean():
clear = lambda: os.system('clear') #on Linux System
clear()
def menu():
clean()
print("Interfejs administratora\n")
print("1->utwórz materiał")
print("2->utwórz element")
print("3->utwórz produkt")
print("4->przypisz materiały do elementu")
print("5->przypisz elementy do produktu")
print("6->korekcja stanów magazynu")
print("7->przygotuj listę zakupów")
# print("7->przygotuj listę stanów magazynowych")
def create_material():
clean()
try:
name=raw_input("Podaj nazwe materialu:")
quantity=float(raw_input("Podaj ilosc:"))
value=float(raw_input("Podaj koszt:"))
description=raw_input("Opis materialu:")
supplier=raw_input("Podaj dostawce materialu:")
delivery_time=float(raw_input("Podaj czas dostawy:"))
if db.new_material(name, quantity, description, value, supplier, delivery_time)==0:
print("Nie udało się utworzyć materiału")
time.sleep(2)
return 0
print("Utworzono nowy materiał")
tmp=db.material.find_one({"name": name})
tmp_id=tmp["_id"]
db.show(tmp_id)
time.sleep(5)
return 1
except:
print("Nie udało się utworzyć materiału")
time.sleep(2)
return 0
def create_component():
clean()
try:
name=raw_input("Podaj nazwe elementu:")
quantity=float(raw_input("Podaj ilosc:"))
value=float(raw_input("Podaj koszt:"))
description=raw_input("Opis elementu:")
supplier=raw_input("Podaj dostawce:")
delivery_time=float(raw_input("Podaj czas dostawy:"))
if db.new_component(name, quantity, description, value, supplier, delivery_time)==0:
print("Nie udało się utworzyć elementu")
time.sleep(2)
return 0
print("Utworzono nowy element:")
tmp=db.component.find_one({"name": name})
tmp_id=tmp["_id"]
db.show(tmp_id)
time.sleep(5)
return 1
except:
print("Nie udało się utworzyć elementu")
time.sleep(2)
return 0
def create_product():
clean()
try:
name=raw_input("Podaj nazwe produktu:")
description=raw_input("Opis produktu:")
if db.new_product(name,description)==0:
print("Nie udało się utworzyć produkt")
time.sleep(2)
return 0
print("Utworzono nowy produkt")
tmp=db.product.find_one({"name": name})
tmp_id=tmp["_id"]
db.show(tmp_id)
time.sleep(5)
return 1
except:
print("Nie udało się utworzyć produkt")
time.sleep(2)
return 0
def add_material_to_component():
clean()
element_code=raw_input("Podaj kod elementu:")
if element_code=='q': return
if db.show(element_code)!=2:
print("Brak elementu w bazie")
time.sleep()
return 0
try:
tmp = db.component.find_one({"_id": element_code})
except:
print("Brak elementu w bazie")
return 0
while(1==1):
clean()
print("Wpisanie q kończy dodawanie materiałow do elementu\n")
print("Dodawanie materiału do elementu: {}".format(tmp["name"]))
code=raw_input("Podaj kod materialu:")
if code=='q': break
elif db.show(code)!=1:
print("Błędny kod materiału")
time.sleep(2)
continue
quantity=float(raw_input("Podaj ilosc materiału do dodania do elementu:"))
if db.extend_component(element_code, code, quantity)==0:
print("Nie udało się dodać materiału")
continue
else:
print("Udało się dodać materiał do elementu")
return 1
def add_component_to_product():
clean()
product_code=raw_input("Podaj kod produktu:")
if product_code=='q': return
if db.show(product_code)!=3:
print("Brak elementu w bazie")
time.sleep(2)
return 0
try:
tmp = db.product.find_one({"_id": product_code})
except:
print("Brak elementu w bazie")
time.sleep(2)
return 0
while(1==1):
clean()
print("Wpisanie q przerywa dodawanie elementów do produktu\n")
print("Dodawanie elementu do produktu: {}".format(tmp["name"]))
code=raw_input("Podaj kod elementu:")
if code=='q': break
elif db.show(code)!=2:
print("Błędny kod elementu")
time.sleep(2)
continue
quantity=float(raw_input("Podaj ilość elementów:"))
if db.extend_product(product_code, code, quantity)==0:
print("Nie udało się dodać elelemtu")
continue
else:
print("Udało się dodać element do produktu")
return 1
def update_quantity():
while(1==1):
clean()
print("Wpisanie q przerywa dodawanie elementów do produktu\n")
code=raw_input("Podaj kod elementu/materiału:")
if code=='q': break
elif db.show(code)==0:
print("Błędny kod elementu")
time.sleep(2)
continue
quantity=float(raw_input("Podaj aktualną ilość:"))
db.update_quantity(code, quantity)
print("Aktualny element/materiał:")
db.show(code)
return 1
def create_order():
clean()
name=raw_input("Podaj nazwę zamówienia:")
description=raw_input("Podaj opis zamówienia:")
sheet=excel_sheet.Sheet(name, description)
db.erase_order()
while(1==1):
print("Czy chcesz dodac produkt do uwzględnienia na liście? y/n")
ans=raw_input()
if ans=="n": break
elif ans=="y":
code=raw_input("Podaj kod produktu:")
qnt=float(raw_input("Podaj ilość:"))
content = db.product.find_one({"_id": code})["content"]
for x in content:
tmp = db.component.find_one({"_id":x["id"]})
if tmp["supplier"]=="Kell ideas":
for y in tmp["materials"]:
code = y["id"]
number = qnt*y["quantity"]*x["quantity"]
print number
db.order.update({ "_id": code },{ "$inc": { "quantity": -number } })
print db.order.find_one({"_id": code})
else:
code = x["id"]
number = qnt*x["quantity"]
db.order.update({ "_id": code },{ "$inc": { "quantity": -number } })
for y in db.order.find():
# if y["supplier"]=="Kell ideas":
# for z in y["materials"]:
# tmp=db.material.find_one({"_id": z["id"]})
# sheet.update(tmp["_id"], tmp["name"], tmp["description"], tmp["quantity"], tmp["value"], tmp["supplier"], tmp["link"])
sheet.update(y["_id"], y["name"], y["description"], y["quantity"], y["value"], y["supplier"], y["link"])
del sheet
if __name__ == "__main__":
db=db.DB()
menu()
while (True):
komenda=input()
if komenda == 1: create_material()
elif komenda == 2: create_component()
elif komenda == 3: create_product()
elif komenda == 4: add_material_to_component()
elif komenda == 5: add_component_to_product()
elif komenda == 6: update_quantity()
elif komenda == 7: create_order()
else: print("Błędną komendę")
menu()