-
Notifications
You must be signed in to change notification settings - Fork 0
/
modeloProy.py
508 lines (404 loc) · 27.1 KB
/
modeloProy.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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
class Receptor(): #OJO: PACIENTE == RECEPTOR
def __init__(self):
self.__nombre= " "
self.__apellido=" "
self.__Cedula= 0
self.__telefono= 0
self.__edad = 0
self.__genero= " "
self.__correo= " "
self.__ciudad= " "
self.__peso = 0
self.__tipoSangre = " "
def asignarNombre(self,n):
self.__nombre=n
def asignarApellido(self,a):
self.__apellido=a
def asignarCedula(self,f):
self.__Cedula=f
def asignarTel(self,t):
self.__telefono=t
def asignarEdad(self,u):
self.__edad=u
def asignarGenero(self,g):
self.__genero=g
def asignarCorreo(self,c):
self.__correo=c
def asignarCiudad(self,r):
self.__ciudad=r
def asignarTipoSangre(self,s):
self.__tipoSangre = s
def asignarPeso(self,p):
self.__peso = p
def verNombre(self):
return self.__nombre
def verApellido(self):
return self.__apellido
def verIdent(self):
return self.__Cedula
def verTel(self):
return self.__telefono
def verEdad(self):
return self.__edad
def verGenero(self):
return self.__genero
def verCorreo(self):
return self.__correo
def verCiudad(self):
return self.__ciudad
def verTipoSangre(self):
return self.__tipoSangre
def verPeso(self):
return self.__peso
class Donante(Receptor):
def __init__(self):
Receptor.__init__(self)
self.__examenes=""
def asignarExamenes(self,e):
self.__examenes=e
def verExamenes(self):
return self.__examenes
class Examenes():
def __init__(self):
self.__hierro_sangre=0
self.__hemoglobina=0
self.__Anemia=" "
self.__Sifilis = False
self.__HepatitisB = False #(Antígeno de Superficie y Core)
self.__HepatitisC = False
self.__Sida = False #(HIV 1,2)
self.__HTLV = False #I-II
self.__Chagas = False
self.__OtrasEnfermedades = "N/A"
self.__TextoOtrasEnfermedades = "N/A"
def asignarHierro(self,h):
self.__hierro_sangre=h
def asignarAnemia(self,a):
self.__Anemia = a
def asignarHemoglobina(self,l):
self.__hemoglobina=l
def asignarValorSifilis(self,vs):
self.__Sifilis = vs
def asignarValorHepatitisB(self,vhb):
self.__HepatitisB = vhb
def asignarValorHepatitisC(self,vhc):
self.__HepatitisC = vhc
def asignarValorSIDA(self,vsd):
self.__Sida = vsd
def asignarValorHTLV(self,vht):
self.__HTLV = vht
def asignarValorChagas(self,vch):
self.__Chagas = vch
def asignarOtrasEnfermedades(self , oe):
self.__OtrasEnfermedades = oe
def asignarTextoOtrasEnfermedades(self , oe):
self.__TextoOtrasEnfermedades = oe
def verHierro(self):
return self.__hierro_sangre
def verAnemia(self):
return self.__Anemia
def verHemoglobina(self):
return self.__hemoglobina
def verValorSifilis(self):
return self.__Sifilis
def verValorHepatitisB(self):
return self.__HepatitisB
def verValorHepatitisC(self):
return self.__HepatitisC
def verValorSIDA(self):
return self.__Sida
def verValorChagas(self):
return self.__Chagas
def verValorHTLV(self):
return self.__HTLV
def verOtrasEnfer(self):
return self.__OtrasEnfermedades
def verTextoOtrasEnfer(self):
return self.__TextoOtrasEnfermedades
class Sistema():
def __init__(self):
self.__dicc_receptores = {}
self.__dicc_Donantes= {}
self.__Lista_Tipos_Sangre= []
self.__Lista_Enfermedades_Venereas= []
def verListaEnfermedadHist(self):
return self.__Lista_Enfermedades_Venereas
def verListaTiposSangre(self):
return self.__Lista_Tipos_Sangre
##############################DONANTES########################################
def ingresarDonante(self,nom_don,apellido_don,ident,tel_don,edad_don,peso_don,sangre,genero,ciudad,correo,Hemoglobina,hierroS,anemia,hepaC,hepaB,sida,htlv,otrasEnf,chagas,sifilis,TextoOtrasEnf):
resultado=self.verificarIdDonante(ident)
if resultado==True:
return False
else:
Don=Donante()
Don.asignarNombre(nom_don)
Don.asignarApellido(apellido_don)
Don.asignarCedula(ident)
Don.asignarTel(tel_don)
Don.asignarEdad(edad_don)
Don.asignarGenero(genero)
Don.asignarCorreo(correo)
Don.asignarCiudad(ciudad)
Don.asignarTipoSangre(sangre)
self.__Lista_Tipos_Sangre.append(str(sangre))
Don.asignarPeso(peso_don)
ex=Examenes()
ex.asignarHierro(hierroS)
ex.asignarAnemia(anemia)
ex.asignarHemoglobina(Hemoglobina)
ex.asignarValorSifilis(sifilis)
ex.asignarValorHepatitisB(hepaB)
ex.asignarValorHepatitisC(hepaC)
ex.asignarValorSIDA(sida)
ex.asignarValorHTLV(htlv)
ex.asignarValorChagas(chagas)
ex.asignarOtrasEnfermedades(otrasEnf)
ex.asignarValorSifilis(sifilis)
ex.asignarTextoOtrasEnfermedades(str(TextoOtrasEnf))
if sifilis == True:
self.__Lista_Enfermedades_Venereas.append("Sifilis")
if hepaB == True:
self.__Lista_Enfermedades_Venereas.append("Hepatitis B")
if hepaC == True:
self.__Lista_Enfermedades_Venereas.append("Hepatitic C")
if sida == True:
self.__Lista_Enfermedades_Venereas.append('Sida')
if htlv == True:
self.__Lista_Enfermedades_Venereas.append("HTLV")
if chagas == True:
self.__Lista_Enfermedades_Venereas.append("Chagas")
if otrasEnf ==True:
self.__Lista_Enfermedades_Venereas.append("Otras")
Don.asignarExamenes(ex)
self.__dicc_Donantes[ident]=Don
return True
def editadoDonante(self,nom,apellido,genero,ident,nueva_ident,edad,peso,tel,tipo_sangre,mail,ciudad,hierro,Anemia,hemoglo,sifilis,hepatitisB,hepatitisC,sida,htlv,chagas,otrasEnfer,TextoOtrasEnf):
resultado=self.verificarIdDonante(ident)
if resultado==False:
return False
else:
self.CambiarCedulDon(ident,nueva_ident)
don = Donante()
don.asignarCedula(nueva_ident)
don.asignarNombre(nom)
don.asignarApellido(apellido)
don.asignarGenero(genero)
don.asignarEdad(edad)
don.asignarPeso(peso)
don.asignarTipoSangre(tipo_sangre)
don.asignarTel(tel)
don.asignarCorreo(mail)
don.asignarCiudad(ciudad)
self.__Lista_Tipos_Sangre.append(str(tipo_sangre))
ex=Examenes()
ex.asignarHierro(hierro)
ex.asignarAnemia(Anemia)
ex.asignarHemoglobina(hemoglo)
ex.asignarValorSifilis(sifilis)
ex.asignarValorHepatitisB(hepatitisB)
ex.asignarValorHepatitisC(hepatitisC)
ex.asignarValorSIDA(sida)
ex.asignarValorHTLV(htlv)
ex.asignarValorChagas(chagas)
ex.asignarOtrasEnfermedades(otrasEnfer)
ex.asignarTextoOtrasEnfermedades(TextoOtrasEnf)
if sifilis == True:
self.__Lista_Enfermedades_Venereas.append("Sifilis")
if hepatitisB == True:
self.__Lista_Enfermedades_Venereas.append("Hepatitis B")
if hepatitisC == True:
self.__Lista_Enfermedades_Venereas.append("Hepatitic C")
if sida == True:
self.__Lista_Enfermedades_Venereas.append('Sida')
if htlv == True:
self.__Lista_Enfermedades_Venereas.append("HTLV")
if chagas == True:
self.__Lista_Enfermedades_Venereas.append("Chagas")
if otrasEnfer ==True:
self.__Lista_Enfermedades_Venereas.append("Otras")
don.asignarExamenes(ex)
self.__dicc_Donantes[nueva_ident] = don
return True
def verificarIdDonante(self,CC):
resultado=CC in self.__dicc_Donantes.keys()
return resultado
def CambiarCedulDon(self,cc,ncc):
self.__dicc_Donantes[ncc] = self.__dicc_Donantes.pop(cc)
def eliminarDonante(self,id):
don = self.__dicc_Donantes[id]
exam = don.verExamenes()
print("Donante eliminado")
sangre = don.verTipoSangre()
self.__Lista_Tipos_Sangre.remove(sangre)
if exam.verValorSifilis() == True :
self.__Lista_Enfermedades_Venereas.remove("Sifilis")
if exam.verValorHepatitisC() == True :
self.__Lista_Enfermedades_Venereas.remove("Hepatitic C")
if exam.verValorHepatitisB() == True:
self.__Lista_Enfermedades_Venereas.remove("Hepatitis B")
if exam.verValorSIDA() == True:
self.__Lista_Enfermedades_Venereas.remove('Sida')
if exam.verValorHTLV ()== True:
self.__Lista_Enfermedades_Venereas.remove("HTLV")
if exam.verValorChagas() == True:
self.__Lista_Enfermedades_Venereas.remove("Chagas")
if exam.verOtrasEnfer() ==True:
self.__Lista_Enfermedades_Venereas.remove("Otras")
del self.__dicc_Donantes[id]
def verNumDonantes(self):
return len(self.__dicc_Donantes)
def Regresar_Donante(self,cc):
if cc in self.__dicc_Donantes.keys():
Donante = self.__dicc_Donantes[cc]
return Donante
else:
return False
####################PACIENTES#################################################
def ingresarReceptor(self,nom_pac,apell,ciudad,genero,edad_pac,peso_pac,grupo_sang,tel_pac,cc,correo):
resultado=self.verificarIdReceptor(cc)
if resultado==True:
return False
else:
Pac=Receptor()
Pac.asignarNombre(nom_pac)
Pac.asignarApellido(apell)
Pac.asignarCiudad(ciudad)
Pac.asignarGenero(genero)
Pac.asignarEdad(edad_pac)
Pac.asignarPeso(peso_pac)
Pac.asignarTipoSangre(grupo_sang)
Pac.asignarTel(tel_pac)
Pac.asignarCedula(cc)
Pac.asignarCorreo(correo)
self.__dicc_receptores[cc]=Pac
return True
def editadoPaciente(self,nom,apellido,genero,ident,nueva_ident,edad,peso,tel,tipo_sangre,mail,ciudad):
resultado=self.verificarIdReceptor(ident)
if resultado==False:
return False
else:
self.CambiarCedulaPac(ident,nueva_ident)
Pac = Receptor()
Pac.asignarCedula(nueva_ident)
Pac.asignarNombre(nom)
Pac.asignarApellido(apellido)
Pac.asignarGenero(genero)
Pac.asignarEdad(edad)
Pac.asignarPeso(peso)
Pac.asignarTipoSangre(tipo_sangre)
Pac.asignarTel(tel)
Pac.asignarCorreo(mail)
Pac.asignarCiudad(ciudad)
self.__dicc_receptores[nueva_ident] = Pac
return True
def CambiarCedulaPac(self,cc,ncc):
self.__dicc_receptores[ncc] = self.__dicc_receptores.pop(cc)
def eliminarPaciente(self,id):
del self.__dicc_receptores[id]
def verNumPacientes(self):
return len(self.__dicc_receptores)
def Regresar_Paciente(self,cc):
if cc in self.__dicc_receptores.keys():
Paciente_Receptor = self.__dicc_receptores[cc]
return Paciente_Receptor
else:
return False
def verificarIdReceptor(self,CCpaciente):
resultado=CCpaciente in self.__dicc_receptores.keys()
return resultado
def filtroDonante(self,ccPac):
recorridoDon = self.__dicc_Donantes.values()
paci = self.__dicc_receptores[ccPac]
c=0
self.Lista_Nombres = []
self.Lista_Id = []
for donante in recorridoDon:
examenes = donante.verExamenes()
if donante.verGenero() == "Femenino":
if paci.verTipoSangre()== "A+":
if (donante.verTipoSangre() =="O+" or donante.verTipoSangre() == "O-" or donante.verTipoSangre() == "A+" or donante.verTipoSangre() == "A-") and examenes.verHemoglobina() >= 12.5 and ( examenes.verHierro() >= 60 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
elif paci.verTipoSangre()== "A-":
if (donante.verTipoSangre() =="A-" or donante.verTipoSangre() == "O-") and examenes.verHemoglobina() >= 12.5 and (examenes.verHierro() >= 60 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
elif paci.verTipoSangre()== "B+":
if (donante.verTipoSangre() =="B+" or donante.verTipoSangre() == "O-" or donante.verTipoSangre() == "O+" or donante.verTipoSangre() == "B-") and examenes.verHemoglobina() >= 12.5 and (examenes.verHierro() >= 60 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
elif paci.verTipoSangre()== "B-":
if (donante.verTipoSangre() =="B-" or donante.verTipoSangre() == "O-") and examenes.verHemoglobina() >= 12.5 and (examenes.verHierro() >= 60 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
elif paci.verTipoSangre()== "AB+":
if examenes.verHemoglobina() >= 12.5 and (examenes.verHierro() >= 60 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
elif paci.verTipoSangre()== "AB-":
if (donante.verTipoSangre() =="A-" or donante.verTipoSangre() == "B-" or donante.verTipoSangre() == "AB-" or donante.verTipoSangre() == "O-") and examenes.verHemoglobina() >= 12.5 and (examenes.verHierro() >= 60 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
elif paci.verTipoSangre()== "O+":
if (donante.verTipoSangre() =="O+" or donante.verTipoSangre() == "O-") and examenes.verHemoglobina() >= 12.5 and (examenes.verHierro() >= 60 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
elif paci.verTipoSangre()== "O-":
if donante.verTipoSangre() == "O-" and examenes.verHemoglobina() >= 12.5 and (examenes.verHierro() >= 60 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
elif donante.verGenero() == "Masculino":
if paci.verTipoSangre()== "A+":
if (donante.verTipoSangre() =="O+" or donante.verTipoSangre() == "O-" or donante.verTipoSangre() == "A+" or donante.verTipoSangre() == "A-") and examenes.verHemoglobina() >= 13.5 and (examenes.verHierro() >= 70 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
elif paci.verTipoSangre()== "A-":
if (donante.verTipoSangre() =="A-" or donante.verTipoSangre() == "O-") and examenes.verHemoglobina() >= 13.5 and (examenes.verHierro() >= 70 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
elif paci.verTipoSangre()== "B+":
if (donante.verTipoSangre() =="B+" or donante.verTipoSangre() == "O-" or donante.verTipoSangre() == "O+" or donante.verTipoSangre() == "B-") and examenes.verHemoglobina() >= 13.5 and (examenes.verHierro() >= 70 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
elif paci.verTipoSangre()== "B-":
if (donante.verTipoSangre() =="B-" or donante.verTipoSangre() == "O-") and examenes.verHemoglobina() >= 13.5 and (examenes.verHierro() >= 70 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
elif paci.verTipoSangre()== "AB+":
if examenes.verHemoglobina() >= 13.5 and (examenes.verHierro() >= 70 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
elif paci.verTipoSangre()== "AB-":
if (donante.verTipoSangre() =="A-" or donante.verTipoSangre() == "B-" or donante.verTipoSangre() == "AB-" or donante.verTipoSangre() == "O-") and examenes.verHemoglobina() >= 13.5 and (examenes.verHierro() >= 70 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
elif paci.verTipoSangre()== "O+":
if (donante.verTipoSangre() =="O+" or donante.verTipoSangre() == "O-") and examenes.verHemoglobina() >= 13.5 and (examenes.verHierro() >= 70 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
elif paci.verTipoSangre()== "O-":
if donante.verTipoSangre() == "O-" and examenes.verHemoglobina() >= 13.5 and (examenes.verHierro() >= 70 and examenes.verHierro() <= 180) and examenes.verValorHepatitisB() !=True and examenes.verValorHepatitisC() != True and examenes.verValorChagas() != True and examenes.verAnemia() != True and examenes.verValorHTLV() != True and examenes.verValorSIDA() != True and examenes.verValorSifilis() != True and examenes.verOtrasEnfer() !=True and (donante.verEdad() >= 18 and donante.verEdad() <= 65) and donante.verPeso() >= 50:
c=c+1
self.Lista_Nombres.append((donante.verNombre()+donante.verApellido()))
self.Lista_Id.append(donante.verIdent())
return c
def RegresarList_NomDon_Compat(self):
return self.Lista_Nombres
def RegresarList_CCDonCompat(self):
return self.Lista_Id