-
Notifications
You must be signed in to change notification settings - Fork 2
/
Registro_Hardware.py
250 lines (233 loc) · 10.5 KB
/
Registro_Hardware.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
from time import strftime
from turtle import pos
from PyQt5.QtGui import QIcon,QColor,QFont
from PyQt5.QtWidgets import QFileDialog, QInputDialog, QMainWindow, QWidget, QMessageBox,QDialog,QTableWidgetItem
from PyQt5.QtCore import QCoreApplication,QTimer,QElapsedTimer
from PyQt5 import QtWidgets, uic,QtCore
from datetime import datetime as dt
from PyQt5.QtCore import pyqtProperty
from conexiones import *
class Registro_Hardware(QDialog):
def __init__(self):
QDialog.__init__(self)
uic.loadUi('Hardware.ui',self)
self.setWindowTitle('Registro Hardware')
self.setWindowIcon(QIcon('icon.png'))
self.Mother.clicked.connect(lambda: self.cambiar(0))
self.Ram.clicked.connect(lambda: self.cambiar(1))
self.Cpu.clicked.connect(lambda: self.cambiar(2))
self.Fuente.clicked.connect(lambda: self.cambiar(3))
self.Case.clicked.connect(lambda: self.cambiar(4))
self.Disco.clicked.connect(lambda:self.cambiar(5))
self.Video_Mother.addItems(['HDMI','DVI','VGA','DVI','Otro'])
self.Audio_Mother.addItems(['Estereo','Mono','Otro','Placa Externa'])
self.Certificacion_Fuente.addItems(['Gold','Silver','Bronce'])
self.Voltaje_Fuente.addItems(['110V','220V','380V','Otro'])
self.TipoDisco.addItems(['SSD','HDD','M2','Otro'])
self.Guardar.clicked.connect(self.guardar)
self.Cancelar.clicked.connect(self.cancelar)
def cambiar(self,tipo):
self.stackedW.setCurrentIndex(tipo)
def cancelar(self):
self.close()
def guardar(self):
posicion = self.stackedW.currentIndex()
if posicion == 0:
self.mother()
elif posicion == 1:
self.ram()
elif posicion == 2:
self.cpu()
elif posicion == 3:
self.fuente()
elif posicion == 4:
self.case()
elif posicion == 5:
self.disco()
def actualizar(self,cod):
posicion = self.stackedW.currentIndex()
if posicion == 0:
self.actualizarMother(cod)
elif posicion == 1:
self.actualizarRam(cod)
elif posicion == 2:
self.actualizarCpu(cod)
elif posicion == 3:
self.actualizarFuente(cod)
elif posicion == 4:
self.actualizarCase(cod)
elif posicion == 5:
self.actualizarDisco(cod)
def mother(self):
tipohard = "Motherboard"
marca = self.Marca_Mother.text()
modelo = self.Modelo_Mother.text()
chipset = self.Chipset_Mother.text()
socket = self.Socket_Mother.text()
serie = self.Serie_Mother.text()
video = self.Video_Mother.currentText()
audio = self.Audio_Mother.currentText()
garantia = self.Garantia_Mother.text()
fecha = self.Fecha_Mother.date().toString()
estado = "Sin Asignar"
print(tipohard,marca,modelo,chipset,socket,serie,video,audio,garantia,fecha,estado)
if guardarMother(tipohard,marca,modelo,chipset,socket,serie,video,audio,garantia,fecha,estado):
QMessageBox.information(self,"Guardar","Motherboard Guardada Correctamente")
self.close()
else:
QMessageBox.information(self,"Guardar","Ocurrio un error al guarda, comprobar datos")
def ram(self):
tipohard = "Ram"
marca = self.Marca_Ram.text()
modelo = self.Modelo_Ram.text()
capacidad = self.Capacidad_Ram.text()
frecuencia = self.Frecuencia_Ram.text()
serie = self.Serie_Ram.text()
garantia = self.Garantia_Ram.text()
fecha = self.Fecha_Ram.date().toString()
estado = "Sin Asignar"
print(tipohard,marca,modelo,capacidad,frecuencia,serie,garantia,fecha,estado)
if guardarRam(tipohard,marca,modelo,capacidad,frecuencia,serie,garantia,fecha,estado):
QMessageBox.information(self,"Guardar","Ram Guardada Correctamente")
self.close()
else:
QMessageBox.information(self,"Guardar","Ocurrio un error al guarda, comprobar datos")
def cpu(self):
tipohard = "CPU"
marca = self.Marca_Cpu.text()
modelo = self.Modelo_Cpu.text()
nucleo = self.Nucleos_Cpu.text()
hilos = self.Hilos_Cpu.text()
frecuencia = self.Frecuencia_Cpu.text()
socket = self.Socket_Cpu.text()
cache = self.Cache_Cpu.text()
serie = self.Serie_Cpu.text()
garantia = self.Garantia_Cpu.text()
fecha = self.Fecha_Cpu.date().toString()
estado = "Sin Asignar"
print(tipohard,marca,modelo,nucleo,hilos,frecuencia,socket,cache,serie,garantia,fecha,estado)
if guardarCpu(tipohard,marca,modelo,nucleo,hilos,frecuencia,socket,cache,serie,garantia,fecha,estado):
QMessageBox.information(self,"Guardar","Cpu Guardada Correctamente")
self.close()
def fuente(self):
tipohard = "Fuente"
marca = self.Marca_Fuente.text()
modelo = self.Modelo_Fuente.text()
potencia = self.Potencia_Fuente.text()
certificacion = self.Certificacion_Fuente.currentText()
voltaje = self.Voltaje_Fuente.currentText()
serie = self.Serie_Fuente.text()
garantia = self.Garantia_Fuente.text()
fecha = self.Fecha_Fuente.date().toString()
estado = "Sin Asignar"
print(tipohard,marca,modelo,potencia,certificacion,voltaje,serie,garantia,fecha,estado)
if guardarFuente(tipohard,marca,modelo,potencia,certificacion,voltaje,serie,garantia,fecha,estado):
QMessageBox.information(self,"Guardar","Fuente Guardada Correctamente")
self.close()
def case(self):
tipohard = "Case"
marca = self.Marca_Case.text()
modelo = self.Marca_Case.text()
serie = self.Serie_Case.text()
garantia = self.Garantia_Case.text()
fecha = self.Fecha_Case.date().toString()
estado = "Sin Asignar"
print(tipohard,marca,modelo,serie,garantia,fecha,estado)
if guardarCase(tipohard,marca,modelo,serie,garantia,fecha,estado):
QMessageBox.information(self,"Guardar","Case Guardado Correctamente")
self.close()
def disco(self):
tipohard = "Disco"
marca = self.Marca_Disco.text()
modelo = self.Modelo_Disco.text()
capacidad = self.Capacidad_Disco.text()
tipodisco = self.TipoDisco.currentText()
cache = self.Cache_Disco.text()
buffer = self.Buffer_Disco.text()
serie = self.Serie_Disco.text()
garantia = self.Garantia_Disco.text()
fecha = self.Fecha_Disco.date().toString()
estado = "Sin Asignar"
print(tipohard,marca,modelo,capacidad,tipodisco,cache,buffer,serie,garantia,fecha,estado)
if guardarDisco(tipohard,marca,modelo,capacidad,tipodisco,cache,buffer,serie,garantia,fecha,estado):
QMessageBox.information(self,"Guardar","Disco Guardado Correctamente")
self.close()
#Modificaciones
def actualizarMother(self,cod):
tipohard = "Motherboard"
marca = self.Marca_Mother.text()
modelo = self.Modelo_Mother.text()
chipset = self.Chipset_Mother.text()
socket = self.Socket_Mother.text()
serie = self.Serie_Mother.text()
video = self.Video_Mother.currentText()
audio = self.Audio_Mother.currentText()
garantia = self.Garantia_Mother.text()
fecha = self.Fecha_Mother.date().toString()
if modMother(cod,tipohard,marca,modelo,chipset,socket,serie,video,audio,garantia,fecha):
QMessageBox.information(self,"Actualizar","Motherboad Actualizada")
self.close()
def actualizarRam(self, cod):
tipohard = "Ram"
marca = self.Marca_Ram.text()
modelo = self.Modelo_Ram.text()
capacidad = self.Capacidad_Ram.text()
frecuencia = self.Frecuencia_Ram.text()
serie = self.Serie_Ram.text()
garantia = self.Garantia_Ram.text()
fecha = self.Fecha_Ram.date().toString()
if modRam(cod,tipohard,marca,modelo,capacidad,frecuencia,serie,garantia,fecha):
QMessageBox.information(self,"Actualizar","Ram Actualizada")
self.close()
def actualizarCpu(self, cod):
tipohard = "CPU"
marca = self.Marca_Cpu.text()
modelo = self.Modelo_Cpu.text()
nucleo = self.Nucleos_Cpu.text()
hilos = self.Hilos_Cpu.text()
frecuencia = self.Frecuencia_Cpu.text()
socket = self.Socket_Cpu.text()
cache = self.Cache_Cpu.text()
serie = self.Serie_Cpu.text()
garantia = self.Garantia_Cpu.text()
fecha = self.Fecha_Cpu.date().toString()
if modCPU(cod, tipohard,marca,modelo,nucleo,hilos,frecuencia,socket,cache,serie,garantia,fecha):
QMessageBox.information(self,"Actualizar","Cpu Actualizado")
self.close()
def actualizarFuente(self, cod):
tipohard = "Fuente"
marca = self.Marca_Fuente.text()
modelo = self.Modelo_Fuente.text()
potencia = self.Potencia_Fuente.text()
certificacion = self.Certificacion_Fuente.currentText()
voltaje = self.Voltaje_Fuente.currentText()
serie = self.Serie_Fuente.text()
garantia = self.Garantia_Fuente.text()
fecha = self.Fecha_Fuente.date().toString()
if modFuente(cod, tipohard,marca,modelo,potencia,certificacion,voltaje,serie,garantia,fecha):
QMessageBox.information(self,"Actualizar","Fuente Actualizado")
self.close()
def actualizarCase(self, cod):
tipohard = "Case"
marca = self.Marca_Case.text()
modelo = self.Marca_Case.text()
serie = self.Serie_Case.text()
garantia = self.Garantia_Case.text()
fecha = self.Fecha_Case.date().toString()
if modCase(cod, tipohard,marca,modelo,serie,garantia,fecha):
QMessageBox.information(self,"Actualizar","Case Actualizado")
self.close()
def actualizarDisco(self, cod):
tipohard = "Disco"
marca = self.Marca_Disco.text()
modelo = self.Modelo_Disco.text()
capacidad = self.Capacidad_Disco.text()
tipodisco = self.TipoDisco.currentText()
cache = self.Cache_Disco.text()
buffer = self.Buffer_Disco.text()
serie = self.Serie_Disco.text()
garantia = self.Garantia_Disco.text()
fecha = self.Fecha_Disco.date().toString()
if modDisco(cod, tipohard,marca,modelo,capacidad,tipodisco,cache,buffer,serie,garantia,fecha):
QMessageBox.information(self,"Actualizar","Disco Actualizado Correctamente")
self.close()