-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsqliteQuerys.py
359 lines (240 loc) · 11.2 KB
/
sqliteQuerys.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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
import sqlite3
from dataBaseName import dataBaseName
from terminalClear import terminalClear
import datetime
conn = sqlite3.connect(dataBaseName())
cursor = conn.cursor()
time = datetime.datetime.now()
#-------------------------------------------------------------------------------
# Cria uma data no formato Y-m-d
#-------------------------------------------------------------------------------
def myDateFormat():
return str(time.year) + "-" + str(time.month) + "-" + str(time.day)
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Salva os registros na tabela Produção
#-------------------------------------------------------------------------------
def signalSave(lineProduction, descriptionLineProduction):
hora = str(time.hour)
cursor.execute("""
INSERT INTO producao (quantidade, linha_producao, linha_descricao, hora, created_at)
VALUES (?,?,?,?,?)
""", (1, lineProduction, descriptionLineProduction, hora, myDateFormat()))
conn.commit()
#conn.close()
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Edita o campo Quantidade da tabela Produçao sempre incrementando 1
#-------------------------------------------------------------------------------
def signalUpdate():
quantidade = getSignalFromHourAndDate() + 1
hora = str(time.hour)
cursor.execute("""
UPDATE producao SET quantidade = ? WHERE hora = ? AND enviado IS NULL
""", (quantidade,hora,))
conn.commit()
#conn.close()
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Retorna O valor do campo Quantidade buscando pelo campo Hora atual e Data atual da tabela Produção
# Return : O valor do campo Quantidade
#-------------------------------------------------------------------------------
def getSignalFromHourAndDate():
hora = str(time.hour)
cursor.execute("""SELECT quantidade FROM producao WHERE hora = ? AND created_at = ?""", (hora, myDateFormat(),))
quantidade = 0
for row in cursor.fetchall():
quantidade = row[0]
if (quantidade > 0):
return quantidade
else:
return False
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Verifica se existe algum registro por Hora atual e Data atual da tabela Produção
# Return : True ou False
#-------------------------------------------------------------------------------
def existSignalFromHour():
hora = str(time.hour)
cursor.execute("""SELECT quantidade FROM producao WHERE hora = ? AND created_at = ?""", (hora, myDateFormat(),))
quantidade = 0
for row in cursor.fetchall():
quantidade = row[0]
if quantidade > 0:
return True
return False
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Cadastra a Linha de Produção
#-------------------------------------------------------------------------------
def saveLineProduction(lineProduction, descriptionLineProduction):
cursor.execute("""
INSERT INTO linhaProducao (linha_producao, linha_descricao, created_at)
VALUES (?,?,?)
""", (lineProduction, descriptionLineProduction, myDateFormat()))
conn.commit()
#conn.close()
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Verifica se Existe uma linha de Produção cadastrada
#-------------------------------------------------------------------------------
def existLineProduction():
cursor.execute("""
SELECT COUNT(*) FROM linhaProducao
""")
quantidade = 0
for row in cursor.fetchall():
quantidade = row[0]
if quantidade > 0:
return True
return False
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Seleciona a Linha de Produção cadastrada
# Return : O valor do campo linha_produção da tabela Produção
#-------------------------------------------------------------------------------
def selectLineProduction():
cursor.execute("""SELECT * FROM linhaProducao LIMIT 1""")
lineProduction = ""
descriptionLineProduction = ""
for row in cursor.fetchall():
lineProduction = row[1]
descriptionLineProduction = row[2]
return [lineProduction, descriptionLineProduction]
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Verifica se Já existe uma Linha de produção cadastrada
# Return : True or False
#-------------------------------------------------------------------------------
def existLineProduction():
cursor.execute("""SELECT id FROM linhaProducao""")
count = 0;
for row in cursor.fetchall():
count = row[0]
if count > 0:
return True
return False
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Seleciona todos os registros que ainda não foram exportados
# Return : Tupla com todos os registro
#-------------------------------------------------------------------------------
def selectAllSignals():
cursor.execute("""SELECT * FROM producao WHERE enviado is null""")
return cursor.fetchall()
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Seta os registros que já foram exportados
#-------------------------------------------------------------------------------
def setSignalsExportedBYid(id):
cursor.execute("""
UPDATE producao SET enviado = ? WHERE id = ?
""", ("true", id,))
conn.commit()
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Apresenta todos os Registros cadastrados na tabela Produção
#-------------------------------------------------------------------------------
def showMeTheProducaoTable():
cursor.execute("""SELECT * FROM producao ORDER BY created_at ASC, hora DESC""")
terminalClear()
print("-------------------------------------------------------------------------------------")
print("REGISTROS CADASTRADOS NA TABELA PRODUCAO")
print("-------------------------------------------------------------------------------------")
for row in cursor.fetchall():
quantidade = "0" + str(row[1]) if row[1] < 10 else str(row[1])
print("id: " + str(row[0]) + " | quantidade: " + quantidade + " | linha producao: " + str(row[2]) + " | descricao: " + str(row[3]) + " | hora: " + str(row[4]) + " | data: " + str(row[5]) + " | enviado: " + str(row[6]))
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Apresenta a soma de todos os Registros cadastrados na tabela Produção.
# Obs: Registros do dia
# return: INT
#-------------------------------------------------------------------------------
def countToday():
cursor.execute("""SELECT SUM(quantidade) AS produzidos FROM producao WHERE created_at = ?""", (myDateFormat(),))
data = 0
for row in cursor.fetchall():
data = row[0]
return data
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Salva os registros na tabela Produção
#-------------------------------------------------------------------------------
def deleteExporteds():
cursor.execute("""
DELETE FROM producao WHERE enviado IS NOT NULL
""")
conn.commit()
#conn.close()
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Verifica se existe registros na tabela1
# return: True or False
#-------------------------------------------------------------------------------
def existDataInTable1():
cursor.execute("""SELECT id from tab1""")
quantidade = 0;
for row in cursor.fetchall():
quantidade = row[0]
if quantidade > 0:
return True
return False
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Salva os registros na tabela1
#-------------------------------------------------------------------------------
def incrementContadorIntable1(countToday, descriptionLineProduction):
cursor.execute("""UPDATE tab1 SET contador = ?, descricao_linha = ?""", (countToday, descriptionLineProduction,))
conn.commit()
#conn.close()
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Edita os campos linha e descricao_linha da tabela1
#-------------------------------------------------------------------------------
def updateLineProductionAndDescritionLineInTable1(lineProduction, descritionLineProduction):
cursor.execute("""UPDATE tab1 SET linha = ?, descricao_linha = ?""", (lineProduction, descritionLineProduction,))
conn.commit()
#conn.close()
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Zera o campo contador da tabela 1
#-------------------------------------------------------------------------------
def cleanContadorFielInTable1():
cursor.execute("""UPDATE tab1 SET contador = ?""", (0,))
conn.commit()
#conn.close()
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Popula inicialmente a tabela1
#-------------------------------------------------------------------------------
def saveFakeDataInTable1(lineProduction, descritionLine):
cursor.execute("""
INSERT INTO tab1
(linha,
descricao_linha,
contador,
meta,
tempo_ciclo,
hora_inicio,
minuto_inicio,
hora_termino,
minuto_termino,
tempo_refresh_realizado,
tempo_refresh_homem,
created_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
""", (
lineProduction,
descritionLine,
'0',
'0',
'0',
'0',
'0',
'0',
'0',
'00',
'0',
'0000-00-00 00:00:00'
))
conn.commit()
#conn.close()