-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
1134 lines (923 loc) · 40.2 KB
/
main.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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#File name: main.py
# Cosas a Mejorar
# - Iconos y colocacion
# - Importar Alumnos del mes pasado
# - Resolver problema de cambio de mes en ANDROID
import os
os.environ["KIVY_DPI"]="518"
os.environ["KIVY_METRICS_DENSITY"] = "0.9"
# Para Android:
# os.environ["KIVY_METRICS_DENSITY"] = "3.5"
#linea 200
#linea 240
#kv file
#linea 528
#linea 555
from kivy.config import Config,ConfigParser
Config.set('graphics', 'width', '400')
Config.set('graphics', 'height', '600')
# Config.set('graphics', 'fullscreen', 0)
Config.set('postproc','retain_time','0')
Config.set('widgets','scroll_moves','1500')
Config.set('widgets','scroll_distance','200')
Config.write()
from kivy.app import App
from kivy.uix.gridlayout import GridLayout
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.tabbedpanel import TabbedPanel,TabbedPanelHeader,TabbedPanelItem
from kivy.uix.button import Button
from kivy.uix.togglebutton import ToggleButton
from kivy.uix.label import Label
from kivy.uix.popup import Popup
from kivy.uix.carousel import Carousel
from kivy.uix.accordion import Accordion
from kivy.uix.bubble import Bubble
from kivy.uix.textinput import TextInput
from kivy.uix.checkbox import CheckBox
from kivy.uix.spinner import Spinner
from kivy.uix.widget import Widget
from kivy.uix.screenmanager import ScreenManager, Screen, WipeTransition,SwapTransition
from kivy.properties import StringProperty,ObjectProperty,NumericProperty
from kivy.properties import ListProperty,DictProperty,BooleanProperty
from kivy.lang import Builder
from kivy.metrics import dp, sp
from kivy.metrics import*
from kivy.clock import Clock
from kivy.core.window import Window
from kivy.graphics import *
Window.clearcolor=(0,0,0,0)
from os.path import join, exists
import json
import twisted
from time import*
import Academia_DataBase
# import Excel_Converter
import calendar
import sys
# Archivos Auxiliares
from Builder_aux_tab import*
from Builder_aux_pupil import*
from Builder_aux_PopUp import*
from Builder_aux_PopUp_Confirmacion import*
#Config.set('kivy', 'keyboard_mode', 'systemandmulti')
# configuracion='config_JCP.ini'
# sett=ConfigParser()
# sett.read(configuracion)
Builder.load_string(PopUp_str)
Builder.load_string(PopUp_Confirmacion)
Builder.load_string(pupil_box_str_new)
################################################
######### Ventanas emergentes Auxiliares
##PopUp
class ContenidoPopup_Confirmacion(BoxLayout):
ok_conf = ObjectProperty(None)
cancel_conf = ObjectProperty(None)
class ContenidoPopup(BoxLayout):
ok=ObjectProperty(None)
cancel=ObjectProperty(None)
input_nombre=StringProperty(None)
Old_nombre = StringProperty(None)
FocusTexto = BooleanProperty(True)
class Desplegable(Bubble):
Posi=ListProperty(None)
Nombre_pupil=StringProperty(None)
class SelectHoras(Carousel):
Horas=StringProperty(None)
Hora_Inical = StringProperty(None)
class BtnHoras(Button):
# Mod_Horas=ObjectProperty(None)
NombreAlumno=StringProperty(None)
################################################
print('###################\n')
print('###################\n')
### Declare all screens
class MainWindow(Screen):
fecha_ahora = StringProperty()
posTocada = ListProperty(None)
def __init__(self,**kwargs):
super(MainWindow, self).__init__(**kwargs)
#Actualizamos el valor de la fecha y la pestaña de la asignatura actual
Clock.schedule_interval(self.fecha, 1.0)
def info_tabs(self,*args):
print'###################\n'
print'###################\n'
self.Asignatura_actual()
# print self.tabObject.current_tab.text
#self.tabObject.remove_widget(self.get_current_tab)
#print(dir(self.tabObject.tab_list.index))
# print '---------**--------START'
# self.tam_lista_tabs=range(len(self.tabObject.tab_list))
# print 'Hay ' +str(len(self.tam_lista_tabs))+ ' tabs actualmente:'
# for tabs in self.tam_lista_tabs:
# print self.tabObject.tab_list[tabs].text
#print ('current tab: ' +self.tabObject.current_tab.text)
def fecha(self,*args):
self.dia_mes_year='[b]'+strftime("%A")+' '+ strftime("%d")+'/'+ strftime("%b")+'/'+strftime("%Y")+'[/b]'
self.hora_now=strftime("%X")
self.fecha_ahora=self.dia_mes_year +'\n'+self.hora_now
# No funciona!!! retocar!
# def on_touch_down(self, touch):
# if self.collide_point(*touch.pos):
# touch.grab(self)
# # if len(self.children)>1:
# # self.remove_widget(self.children[0])
# return super(MainWindow, self).on_touch_down(touch)
# def on_touch_down(self,touch):
# print touch.pos
# if 'button' in touch.profile:
# print touch.profile[1]
# return super(MainWindow, self).on_touch_down(touch)
# def tocar(self,touch):
# posTocada = touch.pos
# def on_touch_down(self,touch):
# # print touch.pos
# self.posTocada = touch.pos
# # if 'button' in touch.profile:
# # print touch.profile[1]
# return super(MainWindow, self).on_touch_down(touch)
class Calendario(Screen):
# propiedades al archivo kivy
week=ObjectProperty()
days=ObjectProperty()
editar=ObjectProperty()
crear=ObjectProperty()
mesName=StringProperty()
# propiedades de importacion de datos de la pantalla ppal
Nm_alumno=StringProperty()
Nm_Asignatura= StringProperty()
Asist_alumno=DictProperty()
Horario_Subject = ListProperty()
def __init__(self, **kwargs):
super(Calendario, self).__init__(**kwargs)
# creamos calendario y nombre del mes
self.mesName=strftime('%B')
self.hoy = strftime("%d")
self.mesNum = gmtime()[1]
self.cal=calendar.Calendar()
self.currentYear = strftime('%Y')
self.calendario = self.cal.monthdays2calendar(int(self.currentYear),self.mesNum)
self.days.rows=len(self.calendario)
self.DiaHorario={'Lunes':0,'Martes':1,'Miercoles':2,'Jueves':3,'Viernes':4,'Sabado':5,'Domingo':6}
#####################
# self.orientation='vertical'
self.DiasSemana=['Lunes','Martes','Miercoles','Jueves','Viernes','Sabado','Domingo']
self.Dias_clase_num=[]
if '---' not in self.Horario_Subject:
for dia in self.Horario_Subject[::-1]: self.Dias_clase_num.append(self.DiaHorario[dia])
self.get_calendar()
def get_calendar(self):
for diaSemana in self.DiasSemana:
# self.week.add_widget(Label(text=diaSemana,font_size=45))
self.week.add_widget(Label(text=diaSemana))
for semanas in self.calendario:
for dias in semanas:
if dias[0] == 0: self.days.add_widget(Label())
else:
# Se crean los widgets
self.BoxDia=BoxLayout(orientation='vertical',spacing=3)
if str(dias[0]) in self.Asist_alumno.keys():
self.cajaAsistencia = CheckBox()
self.cajaAsistencia._toggle_active()
self.cajaAsistencia.background_checkbox_disabled_down = self.cajaAsistencia.background_checkbox_down
self.cajaAsistencia.disabled = True
#horas
self.texthoras=str(self.Asist_alumno[str(dias[0])])
self.valorsHoras=('1h','1.5h','2h','2.5h','3h','X')
self.TiempoDeClase= Spinner(text=self.texthoras,
font_size=26,
values=self.valorsHoras)
self.TiempoDeClase.disabled = True
self.TiempoDeClase.background_disabled_normal = self.TiempoDeClase.background_normal
# self.TiempoDeClase = Label(text=str(self.Asist_alumno[str(dias[0])]))
else:
self.cajaAsistencia = CheckBox()
self.cajaAsistencia.disabled = True
# self.TiempoDeClase = Label(text='')
if dias[1] in self.Dias_clase_num:
self.BotonDia = BoxLayout(orientation='vertical')
if str(int(self.hoy)) == str(dias[0]):
self.BotonDia.add_widget(Button(text=str(dias[0]), background_color=[255, 100, 0, 0.4]))
else:
self.BotonDia.add_widget(Button(text=str(dias[0])))
self.BotonDia.add_widget(Button(text='Dia de clase',font_size=33, background_color=[0, 1, 0, 1]))
# self.BotonDia.add_widget(Button(text='Dia de clase', background_color=[0, 1, 0, 1]))
else:
if str(int(self.hoy)) == str(dias[0]):
self.BotonDia = Button(text=str(dias[0]), background_color=[255, 100, 0, 0.4])
else:
self.BotonDia = Button(text=str(dias[0]))
self.BoxInferior = BoxLayout(orientation='horizontal')
self.BoxInferior = BoxLayout(orientation='horizontal')
# Se genera y se distribuye la configurarcion de los widget
self.BoxInferior.add_widget(self.cajaAsistencia)
try:
self.BoxInferior.add_widget(self.TiempoDeClase)
except:
pass
self.BoxDia.add_widget(self.BotonDia)
self.BoxDia.add_widget(self.BoxInferior)
# Se une el BoxLayout ppal al calendario
self.days.add_widget(self.BoxDia)
class Datos_Alumno(Screen):
Nombre_Alumno = StringProperty()
Numero_FICHA =StringProperty()
Pagado = StringProperty()
Dia_suelto = StringProperty()
class Horarios(Screen):
Lista_Asignaturas = ListProperty()
##################### Clase Principal #########################
class LayoutsApp(App):
### Funcion Principal
def build(self):
self.title = 'AtoS'
###### Instanciamos la ventanas que va a haber en la aplicacion
## Ventana ppal
self.ppal_window = MainWindow(name='Main_Window')
# self.ppal_window.size=dp(2560),dp(1440)
########
self.sm=ScreenManager()#transition=WipeTransition())
self.sm.add_widget(self.ppal_window)
self.sm.current='Main_Window'
######## Importamos la DB principal que contiene todas las funciones
######## para interactuar con la estructura de datos.
######## importamos los datos guardadsos (si existen)
self.DB = Academia_DataBase.DB()
# Se importan los datos
if os.path.exists(self.DB.ruta_current):
# print self.DB.Main_DB
self.Cargar_Datos()
# Comprobaciones Iniciales
# self.Condiciones_Iniciales()
### A correr!
return self.sm
####### Funciones de sistema ############
def on_pause(self):
return True
def on_resume(self):
pass
def Cargar_Datos(self,*args):
### Se cargan las asignaturas y alumnos de cada una
self.hoy = strftime("%d")
self.num_alumnos=0
self.contador_Asistencias=0
for subject in self.DB.Asignaturas.keys():
self.Nm_load = str(subject)
self.tab_load = Builder.load_string(tab_str % (self.Nm_load, self.Nm_load, self.Nm_load))
self.ppal_window.tabObject.add_widget(self.tab_load)
self.ppal_window.tabObject.switch_to(self.ppal_window.tabObject.tab_list[0])
for pupil in self.DB.Asignaturas[subject].keys():
if '_' in pupil: self.NmNice = pupil.replace('_',' ')
else: self.NmNice=pupil
self.load_alumno = Builder.load_string(pupil_box_str_new % (pupil,pupil,pupil,pupil,self.NmNice,pupil,pupil,pupil))
self.ppal_window.tabObject.current_tab.content.children[0].children[0].add_widget(self.load_alumno)
self.num_alumnos+=1
for fecha in self.DB.get_Asistencia(subject,pupil).keys():
if int(fecha)==int(self.hoy):
self.p0 = self.ppal_window.tabObject.current_tab.content.children[0].children[0].children
if self.DB.get_horas_dia_alumno(subject, pupil, fecha) != 'X':
self.p0[0].children[-1].text = self.DB.get_horas_dia_alumno(subject, pupil, fecha)
self.p0[0].children[-1].background_disabled_normal='./Images/Attendanced_ref.png'
self.contador_Asistencias+=1
self.ppal_window.contador_asistencia.text = 'Contador Alumnos hoy: ' + str(self.contador_Asistencias)
self.ppal_window.alumnos_totales.text = 'Alumnos totales: ' + str(self.num_alumnos)
# self.ppal_window.tabObject.activate
# self.ppal_window.tabObject.current_tab=self.ppal_window.tabObject.tab_list[0]
self.ppal_window.tabObject.switch_to(self.ppal_window.tabObject.tab_list[-1])
### Se cargan los Horarios de las Asignaturas
self.Cargar_horarios()
def Exportar_txt_for_Excel(self):
self.DB.Exportar_txt_for_Excel()
self.Mensaje='SE HAN EXPORTADO LAS ASISTENCIAS DEL MES!!\n(Importalo en el excel)'
self.txtcreado=Popup(title='Exportado Correctamente!',
auto_dismiss=True,
size_hint=(0.9,0.3),
pos_hint={'center_x':0.5,'center_y':0.75},
content=Label(text=self.Mensaje))
self.txtcreado.open()
def Subject_Right(self,*args):
self.index=self.ppal_window.tabObject.tab_list.index(self.ppal_window.tabObject.current_tab)
self.ppal_window.tabObject.switch_to(self.ppal_window.tabObject.tab_list[self.index-1])
self.ppal_window.current_subject.text = self.ppal_window.tabObject.current_tab.text
def Subject_Left(self, *args):
self.lista=self.ppal_window.tabObject.tab_list
self.index=self.lista.index(self.ppal_window.tabObject.current_tab)
if self.index+1 == len(self.lista): self.index=-1
self.ppal_window.tabObject.switch_to(self.lista[self.index+1])
self.ppal_window.current_subject.text = self.ppal_window.tabObject.current_tab.text
def check_tab(self,*args):
self.tabName = self.ppal_window.tabObject.current_tab.text
if self.tabName == '[color=#000000][b]INICIO[/color][/b]':
return False
def PopUp_Warning(self,*args):
self.texto = 'Este apartado NO tiene alumnos!!!\n Anda... Situate en una Asignatura!!!'
self.contenido = Label(text= self.texto)
self.popup_tab = Popup(title='Cuidado!!',
auto_dismiss = True,
size_hint=(0.8, 0.5),
pos_hint = {'center_x': 0.5, 'center_y': 0.75},
content=self.contenido)
self.popup_tab.open()
def PopUp_Warning_General(self,texto,*args):
self.texto = texto
self.contenido = Label(text= self.texto)
self.popup_tab = Popup(title='Cuidado!!',
auto_dismiss = True,
size_hint=(0.8, 0.5),
pos_hint = {'center_x': 0.5, 'center_y': 0.75},
content=self.contenido)
self.popup_tab.open()
#funcion para encontrar la posicion del ultimo click
def Posicion(self):
self.p0 = self.ppal_window.tabObject.current_tab.content.children[0].children[0].children
for alumno in self.p0:
if alumno.children[1].state=='down':
self.Old_nombre = alumno.children[1].text
# print alumno.children[1].last_touch.spos
self.posicion_y = alumno.children[1].last_touch.spos[1]
self.posicion_x = alumno.children[1].last_touch.spos[0]
# print dir(alumno.children[1])
return [self.posicion_x,self.posicion_y,self.Old_nombre]
# def on_touch_down(self,touch):
# print 'tocado'
# if 'button' in touch.profile:
# print touch.profile
# return super(LayoutsApp, self).on_touch_down(touch)
#########################################
### Incluir o borrar TAB (Asignatura)
def PopUp_Add_tab(self):
# se define el interior del Popup ##
self.contenido=ContenidoPopup(ok=self.Create_New_TAB,
cancel=self.PopUp_close)
# instanciamos y creamos el Popup
self.popup_tab=Popup(title='Introduce el nombre de la TAB',
auto_dismiss=False,
size_hint=(0.8,0.5),
pos_hint={'center_x':0.5,'center_y':0.75},
content=self.contenido)
self.popup_tab.open()
def PopUp_close(self):
self.popup_tab.dismiss()
def PopUp_remove_subject_conf(self):
# se define el interior del Popup ##
self.contenido_conf = ContenidoPopup_Confirmacion(ok_conf=self.Delete_tab,
cancel_conf=self.Popup_close_subject_conf)
self.popup_conf = Popup(title='Confirmacion',
auto_dismiss=False,
size_hint=(0.8, 0.5),
pos_hint={'center_x': 0.5, 'center_y': 0.75},
content=self.contenido_conf)
self.popup_conf.open()
def Popup_close_subject_conf(self):
self.popup_conf.dismiss()
def Create_New_TAB(self,*args):
self.name_tab=self.contenido.input_nombre
if self.name_tab in self.DB.get_Asignaturas():
self.texto = 'ESTA ASIGNATURA YA EXISTE!!\nDIFERENCIALA DE OTRA MANERA!'
self.PopUp_close()
self.PopUp_Warning_General(self.texto)
else:
# print('****')
# print(self.contenido.input_nombre)
self.popup_tab.dismiss()
## SE CONSTRUYE UNA NUEVA TAB
# self.Nm = str(self.name_tab)
self.Nm = str(self.name_tab)
self.tab = Builder.load_string(tab_str %(self.Nm,self.Nm,self.Nm))
self.ppal_window.tabObject.add_widget(self.tab)
self.ppal_window.tabObject.switch_to(self.ppal_window.tabObject.tab_list[0])
## Se incluye la asignatura a la base de datos ppal DB
self.DB.Crear_Asignatura(self.Nm)
def Delete_tab(self, *args):
###
self.popup_conf.dismiss()
###
if self.check_tab() == False:
self.PopUp_Warning()
self.ppal_window.checkin.state='normal'
return False
if len(self.ppal_window.tabObject.tab_list)>1:
self.ppal_window.tabObject.children[0].children[0].clear_widgets()
self.borra=self.ppal_window.tabObject.current_tab.text
self.ppal_window.tabObject.remove_widget(self.ppal_window.tabObject.current_tab)
## Borramos la asignatura de la base de datos
self.DB.Borrar_Asignatura(self.borra)
self.ppal_window.tabObject.switch_to(self.ppal_window.tabObject.tab_list[-1])
else:
print 'No hay asignaturas para borrar...'
self.ppal_window.tabObject.switch_to(self.ppal_window.tabObject.tab_list[-1])
#########################################
#########################################
### Funciones de Alumno
def PopUp_Nombre_Pupil(self):
# Comprobacion de Asignatura actual
if self.check_tab() == False:
self.PopUp_Warning()
return False
# se define el interior del Popup ##
self.contenido_create_pupil=ContenidoPopup(ok=self.Add_Subwidget_pupil,
cancel=self.PopUp_close_create_pupil)
self.popup_create_pupil=Popup(title='Alumno Nuevo',
auto_dismiss=False,
size_hint=(0.8, 0.5),
pos_hint={'center_x': 0.5, 'center_y': 0.75},
content=self.contenido_create_pupil)
self.popup_create_pupil.open()
def Popup_Remove_pupil_Conf(self):
# se define el interior del Popup ##
self.contenido_conf = ContenidoPopup_Confirmacion(ok_conf=self.Remove_subwidget_pupil,
cancel_conf=self.Popup_close_pupil_conf)
self.popup_conf = Popup(title='Confirmacion',
auto_dismiss=False,
size_hint=(0.8, 0.5),
pos_hint={'center_x': 0.5, 'center_y': 0.75},
content=self.contenido_conf)
self.popup_conf.open()
def PopUp_close_create_pupil(self):
self.popup_create_pupil.dismiss()
def PopUp_close_editar_pupil(self):
self.popup_editar_pupil.dismiss()
def Popup_close_pupil_conf(self):
self.p0 = self.ppal_window.tabObject.current_tab.content.children[0].children[0].children
for alumno_cancel in self.p0: alumno_cancel.children[2].state ='normal'
self.popup_conf.dismiss()
def Add_Subwidget_pupil(self,*args):
###
self.popup_create_pupil.dismiss()
###
self.Nm = self.contenido_create_pupil.input_nombre
self.NmNice =self.Nm
if ' ' in self.Nm: self.Nm=self.Nm.replace(' ','_')
self.asignatura=self.ppal_window.tabObject.current_tab.text
self.alumno = Builder.load_string(pupil_box_str_new %(self.Nm,self.Nm,self.Nm,self.Nm,self.NmNice,self.Nm,self.Nm,self.Nm))
self.ppal_window.tabObject.current_tab.content.children[0].children[0].add_widget(self.alumno)
self.DB.Crear_Alumno(self.asignatura,self.Nm)
self.num_alumnos = int(self.ppal_window.alumnos_totales.text.split(':')[-1]) + 1
self.ppal_window.alumnos_totales.text = 'Alumnos Totales: ' + str(self.num_alumnos)
def Remove_subwidget_pupil(self, *args):
####
self.popup_conf.dismiss()
####
self.p0 = self.ppal_window.tabObject.current_tab.content.children[0].children[0].children
for alumno in self.p0:
if alumno.children[2].state =='down':
self.ppal_window.tabObject.current_tab.content.children[0].children[0].remove_widget(alumno)
self.NmAlumno=alumno.children[1].text
if ' ' in self.NmAlumno: self.NmAlumno = self.NmAlumno.replace(' ', '_')
self.DB.Borrar_Alumno(self.ppal_window.tabObject.current_tab.text,self.NmAlumno)
self.popup_conf.dismiss()
self.num_alumnos = int(self.ppal_window.alumnos_totales.text.split(':')[-1]) - 1
self.ppal_window.alumnos_totales.text = 'Alumnos Totales: ' + str(self.num_alumnos)
def Desplegable_pupil_options(self,Nombre_Alumno,*args):
self.Pos = self.Posicion()
self.desplegar = Desplegable(name='Desplegable_Nombre', Posi=self.Pos, Nombre_pupil=Nombre_Alumno)
if len(self.ppal_window.children)<2:
self.ppal_window.add_widget(self.desplegar)
Clock.schedule_once(self.Quitar_Desplegable, 2)
def Quitar_Desplegable(self,*args):
self.ppal_window.remove_widget(self.ppal_window.children[0])
def PopUp_Editar_Alumno(self,old_pupil,*args):
# se define el interior del Popup ##
self.contenido_editar_pupil = ContenidoPopup(ok=self.Editar_Nombre_Alumno,
cancel=self.PopUp_close_editar_pupil,
Old_nombre = old_pupil,
FocusTexto = True)
self.popup_editar_pupil = Popup(title='Introduce el NUEVO Nombre del alumno...',
auto_dismiss=False,
size_hint=(0.8, 0.5),
pos_hint={'center_x': 0.5, 'center_y': 0.75},
content=self.contenido_editar_pupil)
self.popup_editar_pupil.focus = True
self.popup_editar_pupil.open()
def Editar_Nombre_Alumno(self,*args):
###
self.popup_editar_pupil.dismiss()
###
self.asignatura = self.ppal_window.tabObject.current_tab.text
self.Nuevo_Nombre_Alumno=self.contenido_editar_pupil.input_nombre
self.Old_Nombre_Alumno=self.contenido_editar_pupil.Old_nombre
self.DB.Editar_Alumno(self.asignatura,self.Old_Nombre_Alumno,self.Nuevo_Nombre_Alumno)
self.p0 = self.ppal_window.tabObject.current_tab.content.children[0].children[0].children
self.subject=self.ppal_window.tabObject.current_tab.text
for btalumno in self.p0:
if btalumno.children[1].text == self.Old_Nombre_Alumno:
btalumno.children[1].text = self.Nuevo_Nombre_Alumno
#########################################
### FICHA
def Editar_Nombre_FICHA(self,nombre,*args):
self.Old_Nombre_Alumno = self.Ficha.nombre_FICHA.text
if self.Ficha.editar_nombre_FICHA.state == 'down':
self.Ficha.remove_widget(self.Ficha.box_nombre.children[-1])
self.Ficha.box_nombre.add_widget(TextInput(text=self.Old_Nombre_Alumno,multiline=False))
else:
self.Nm_input=self.Ficha.box_nombre.children[0]
if self.Nm_input.text !='' and self.Nm_input.text != self.Old_Nombre_Alumno:
self.asignatura = self.ppal_window.tabObject.current_tab.text
self.Nuevo_Nombre = self.Nm_input.text
self.Ficha.nombre_FICHA.text = self.Nuevo_Nombre
self.DB.Editar_Alumno(self.asignatura, self.Old_Nombre_Alumno, self.Nuevo_Nombre)
self.Ficha.box_nombre.remove_widget(self.Nm_input)
else:
self.Ficha.box_nombre.remove_widget(self.Nm_input)
def Numero_FICHA(self,nombre,*args):
self.Nombre = self.Ficha.nombre_FICHA.text
self.asignatura = self.ppal_window.tabObject.current_tab.text
if self.Ficha.set_num_FICHA.state == 'down':
# self.Ficha.remove_widget(self.Ficha.box_NumeroFicha.children[-1])
self.Ficha.box_NumeroFicha.add_widget(TextInput(text='', multiline=False))
else:
if self.Ficha.box_NumeroFicha.children[0].text != '':
self.Num_Ficha = self.Ficha.box_NumeroFicha.children[0].text
self.Ficha.numero_FICHA.text = self.Num_Ficha
self.DB.Numero_FICHA(self.asignatura,self.Nombre,self.Num_Ficha)
self.Ficha.box_NumeroFicha.remove_widget(self.Ficha.box_NumeroFicha.children[0])
else:
self.Ficha.box_NumeroFicha.remove_widget(self.Ficha.box_NumeroFicha.children[0])
def Mes_Pagado(self,*args):
self.asignatura = self.ppal_window.tabObject.current_tab.text
self.nombre=self.Ficha.nombre_FICHA.text
if self.Ficha.set_horas_Mes.state == 'down':
self.Ficha.horas_Mes.disabled=False
else:
self.Pagado = self.Ficha.horas_Mes.text
self.DB.Pagado(self.asignatura,self.nombre,self.Pagado)
self.Ficha.horas_Mes.disabled = True
if self.Ficha.horas_Mes.text != 'Mes Completo':
self.Ficha.box_dias_sueltos.disabled = False
def Set_dia_suelto(self,*args):
self.asignatura = self.ppal_window.tabObject.current_tab.text
self.nombre = self.Ficha.nombre_FICHA.text
self.diaSuelto=self.Ficha.dias_sueltos.text
self.DB.Set_dias_sueltos(self.asignatura,self.nombre,self.diaSuelto)
self.Ficha.set_dia_suelto.state='normal'
self.Ficha.box_dias_sueltos.disabled=True
### Horarios
def Cargar_horarios(self,*args):
for subject in self.DB.get_Asignaturas_Horarios():
self.Lista_check=[subject,
self.DB.Horarios[subject]['dias'],
self.DB.Horarios[subject]['turno'],
self.DB.Horarios[subject]['Horas']]
if self.Lista_check[2]!='---':
self.wid = BoxLayout(orientation='horizontal', size_hint_y=None, border=(30, 30, 30, 30))
self.wid.add_widget(Label(text=self.Lista_check[0]))
self.textoDias = ''
for dias in self.Lista_check[1][::-1]: self.textoDias += dias + '\n'
self.wid.add_widget(Label(text=self.textoDias))
self.wid.add_widget(Label(text=self.Lista_check[2]))
self.wid.add_widget(Label(text=self.Lista_check[3][0] + '-' + self.Lista_check[3][1]))
if self.Lista_check[2] == 'Tardes':
self.ppal_window.box_Tardes.add_widget(self.wid)
else:
self.ppal_window.box_Manana.add_widget(self.wid)
def Definir_horarios(self, *args):
self.Lista_check=[]
## Asignatura
if self.Horarios.asignatura.text == '-----':
self.texto = 'Tienes que seleccionar la asignatura'
self.PopUp_Warning_General(self.texto)
else:
self.Lista_check.append(self.Horarios.asignatura.text)
### Dias de la semana
self.Lista_dias=[]
for dia in self.Horarios.diasSemana.children:
if type(dia) is CheckBox:
if dia.active == True:
self.Lista_dias.append(dia.text)
if len(self.Lista_dias)==0:
self.texto = 'Tienes que Marcar los dias de clase!!'
self.PopUp_Warning_General(self.texto)
else:
self.Lista_check.append(self.Lista_dias)
### Horario de la Asignatura
if self.Horarios.mananas.state =='down':
self.IM_h = self.Horarios.mananaInicioHora.children[0].children[0].text
self.IM_m = self.Horarios.mananaInicioMinuto.children[0].children[0].text
self.FM_h = self.Horarios.mananaFinHora.children[0].children[0].text
self.FM_m = self.Horarios.mananaFinMinuto.children[0].children[0].text
self.Inicio_manana = self.IM_h + str(':') + self.IM_m
self.Fin_manana = self.FM_h + str(':') + self.FM_m
if int(self.FM_h)<int(self.IM_h):
self.texto = 'La hora de Fin es MENOR que la hora de Entrada' \
'\nNo creo que la clase dure mas de 24h... ;)'
self.PopUp_Warning_General(self.texto)
elif int(self.FM_h) == int(self.IM_h):
self.texto = 'La hora de Fin es la MISMA que la hora de Entrada' \
'\n No creo que la clase dure menos de una hora... ;P'
self.PopUp_Warning_General(self.texto)
else:
self.Lista_check.append(str(self.Horarios.mananas.text))
self.Lista_check.append([self.Inicio_manana,self.Fin_manana])
elif self.Horarios.tardes.state =='down':
self.IT_h = self.Horarios.tardeInicioHora.children[0].children[0].text
self.IT_m = self.Horarios.tardeInicioMinuto.children[0].children[0].text
self.FT_h = self.Horarios.tardeFinHora.children[0].children[0].text
self.FT_m = self.Horarios.tardeFinMinuto.children[0].children[0].text
self.Inicio_tarde = self.IT_h + str(':') + self.IT_m
self.Fin_tarde = self.FT_h + str(':') + self.FT_m
if int(self.FT_h) < int(self.IT_h):
self.texto = 'La hora de Fin es MENOR que la hora de Entrada' \
'\nNo creo que la clase dure mas de 24h... ;)'
self.PopUp_Warning_General(self.texto)
elif int(self.FT_h) == int(self.IT_h):
self.texto = 'La hora de Fin es la MISMA que la hora de Entrada' \
'\n No creo que la clase dure menos de una hora... ;P'
self.PopUp_Warning_General(self.texto)
else:
self.Lista_check.append(str(self.Horarios.tardes.text))
self.Lista_check.append([self.Inicio_tarde, self.Fin_tarde])
else:
self.texto = 'Tienes que establecer un horario para la asignatura!'
self.PopUp_Warning_General(self.texto)
# print self.ppal_window.box_Tardes.children[0]
if len(self.Lista_check)==4:
if self.Lista_check[0] in self.DB.get_Asignaturas_Horarios():
if self.Lista_check[2] == 'Tardes':
for subject in self.ppal_window.box_Tardes.children:
if subject.children[-1].text==self.Lista_check[0]:
self.ppal_window.box_Tardes.remove_widget(subject)
else:
for subject in self.ppal_window.box_Manana.children:
if subject.children[-1].text == self.Lista_check[0]:
self.ppal_window.box_Manana.remove_widget(subject)
self.DB.Horario_subject(self.Lista_check[0],self.Lista_check[1],self.Lista_check[2],self.Lista_check[3])
self.wid = BoxLayout(orientation='horizontal',size_hint_y=None,border= (30, 30,30, 30))
self.wid.add_widget(Label(text=self.Lista_check[0]))
self.textoDias=''
for dias in self.Lista_check[1][::-1]: self.textoDias+= dias+'\n'
self.wid.add_widget(Label(text=self.textoDias))
self.wid.add_widget(Label(text=self.Lista_check[2]))
self.wid.add_widget(Label(text=self.Lista_check[3][0] +'-'+ self.Lista_check[3][1]))
if self.Lista_check[2] == 'Tardes':
self.ppal_window.box_Tardes.add_widget(self.wid)
else:
self.ppal_window.box_Manana.add_widget(self.wid)
self.texto = 'HORARIO DE ASIGNATURA CREADO!!\n'
self.PopUp_Warning_General(self.texto)
# def Activar_Horario_HORARIOS(self,instance,value,*args):
#
# Horario/ppal
def Cambiar_franja_HORARIO_mananas(self,*args):
if self.ppal_window.tardes.state=='down':
self.ppal_window.mananas.state = 'normal'
self.ppal_window.franjaHoraria.load_next()
else:
self.ppal_window.mananas.state = 'down'
self.ppal_window.tardes.state = 'normal'
self.ppal_window.franjaHoraria.load_previous()
def Cambiar_franja_HORARIO_tardes(self, *args):
if self.ppal_window.mananas.state=='down':
self.ppal_window.tardes.state = 'normal'
self.ppal_window.franjaHoraria.load_previous()
else:
self.ppal_window.tardes.state = 'down'
self.ppal_window.mananas.state = 'normal'
self.ppal_window.franjaHoraria.load_next()
def Set_mananas(self,*args):
if self.Horarios.mananas.state == 'down':
self.Horarios.box_mananas.children[0].disabled = False
self.Horarios.box_mananas.children[1].disabled = False
self.Horarios.tardes.state = 'normal'
self.Horarios.box_tardes.children[0].disabled = True
self.Horarios.box_tardes.children[1].disabled = True
else:
self.Horarios.box_mananas.children[0].disabled = True
self.Horarios.box_mananas.children[1].disabled = True
def Set_tardes(self,*args):
if self.Horarios.tardes.state == 'down':
self.Horarios.box_tardes.children[0].disabled = False
self.Horarios.box_tardes.children[1].disabled = False
self.Horarios.mananas.state = 'normal'
self.Horarios.box_mananas.children[0].disabled = True
self.Horarios.box_mananas.children[1].disabled = True
else:
self.Horarios.box_tardes.children[0].disabled = True
self.Horarios.box_tardes.children[1].disabled = True
### Control de Asistencia
def Asistencia_global(self,*args):
# Comprobacion de Asignatura actual
if self.check_tab() == False:
self.PopUp_Warning()
self.ppal_window.checkin.state='normal'
return False
self.p0 = self.ppal_window.tabObject.current_tab.content.children[0].children[0].children
self.subject=self.ppal_window.tabObject.current_tab.text
self.contador_asistencia=int(self.ppal_window.contador_asistencia.text.split(':')[-1])
if self.ppal_window.checkin.state =='down':
self.ppal_window.checkout.disabled = True
else:
self.ppal_window.checkout.disabled = False
for btalumno in self.p0:
if btalumno.children[-1].background_disabled_normal != './Images/Attendanced_ref.png':
btalumno.children[-1].disabled = False
btalumno.children[-1].background_normal = './Images/cross.png'
if self.ppal_window.checkin.state =='normal':
for alumno in self.p0:
if alumno.children[-1].disabled == False:
self.NmAlumno = alumno.children[1].text
if alumno.children[-1].state == 'down':
self.tiempoDeClase = alumno.children[-2].children[0].current_slide.text
self.DB.Definir_Asistencia(self.subject,self.NmAlumno,self.tiempoDeClase,'')
alumno.children[-1].state = 'normal'
alumno.children[-1].background_disabled_normal = './Images/Attendanced_ref.png'
alumno.children[-1].text = self.tiempoDeClase
self.contador_asistencia+=1
else:
self.DB.Definir_Asistencia(self.subject, self.NmAlumno, 'X', '')
for btalumno in self.p0:
btalumno.children[-1].disabled = True
btalumno.children[-2].clear_widgets()
btalumno.children[-2].size_hint_x = 0.01
self.ppal_window.contador_asistencia.text = 'Contador Alumnos hoy: '+ str(self.contador_asistencia)
else:
for alumno in self.p0:
self.NmAlumno = alumno.children[1].text
self.horasbysem = self.DB.get_Pagado(self.subject, self.NmAlumno)
self.D_suelto = self.DB.get_dias_sueltos(self.subject, self.NmAlumno)
if self.horasbysem == 'Mes Completo':
self.Inicial = '1.5h'
else:
if self.D_suelto == '---':
self.hora = str(float(self.horasbysem.split('h')[0])/2.0)
if self.hora.split('.')[1]=='0': self.hora = self.hora.split('.')[0]
self.Inicial= self.hora+'h'
else: self.Inicial = self.horasbysem.split('h')[0]+'h'
self.TiempoDeClase = SelectHoras(nombre='SeleccionHoras',Hora_Inical=self.Inicial)
self.Nombre = alumno.children[1].text
alumno.children[-2].size_hint_x = 0.4
alumno.children[-2].add_widget(self.TiempoDeClase)
if alumno.children[-1].background_disabled_normal == './Images/Attendanced_ref.png':
alumno.children[-2].disabled = True
else:
alumno.children[-2].disabled = False
def Borrar_Asistencia_global(self,*args):
# Comprobacion de Asignatura actual
if self.check_tab() == False:
self.PopUp_Warning()
self.ppal_window.checkout.state='normal'
return False
self.p0 = self.ppal_window.tabObject.current_tab.content.children[0].children[0].children
self.subject = self.ppal_window.tabObject.current_tab.text
if self.ppal_window.checkout.state=='down':
self.ppal_window.checkin.disabled = True
else:
self.ppal_window.checkin.disabled = False
# Contador de alumnos en el dia
self.cont = int(self.ppal_window.contador_asistencia.text.split(':')[-1])
# Se activan o desactivan los alumnos que estaban con la asistencia verificada
if self.ppal_window.checkout.state == 'down':
for btalumno in self.p0:
if btalumno.children[-1].background_disabled_normal=='./Images/Attendanced_ref.png':
btalumno.children[-1].disabled = False
btalumno.children[-1].background_normal='./Images/check.png'
btalumno.children[-1].background_down='./Images/cross.png'
# Proceso que borra en el caso de que se haya seleccionado para ello
# if self.ppal_window.checkout.state == 'normal':
else:
for alumno in self.p0:
if alumno.children[-1].disabled == False:
if alumno.children[-1].state == 'down':
self.DB.Borrar_Asistencia(self.subject, alumno.children[1].text, '')
self.DB.Definir_Asistencia(self.subject, alumno.children[1].text, 'X', '')
alumno.children[-1].state = 'normal'
self.imagen_desactivado='atlas://data/images/defaulttheme/button_disabled'
alumno.children[-1].background_disabled_normal = self.imagen_desactivado
alumno.children[-1].text = ''
self.cont-=1
# alumno.children[-1].text = 'X'
# self.DB.Definir_Asistencia(self.subject, alumno.children[1].text, 'X', '')
else:
alumno.children[-1].state = 'normal'
alumno.children[-1].background_disabled_normal = './Images/Attendanced_ref.png'
alumno.children[-1].background_normal='/Images/cross.png'
alumno.children[-1].background_down='./Images/check.png'
for btalumno in self.p0: btalumno.children[-1].disabled = True
self.ppal_window.contador_asistencia.text = 'Contador Alumnos hoy: ' + str(self.cont)
#
#########################################
def Editar_Asistencia(self,*args):
self.subject = self.ppal_window.tabObject.current_tab.text
self.BoxDia=self.Mes.days.children
self.editar_alumno=self.Mes.days
# print self.Mes.days.children[-8].children[0].children[0].text
# print self.Mes.days.children[-8].children[0].children[1].active
# print dir(self.BoxDia[-8].children[0].children[0])
# print self.BoxDia[-7].children[0].children[0]
if self.Mes.editar.state=='down':
for i in self.BoxDia:
if len(i.children) > 1:
if len(i.children[0].children) > 1:
i.children[0].children[1].disabled = False
i.children[0].children[0].disabled = False
else:
for i in self.BoxDia:
if len(i.children) > 1:
if len(i.children[0].children) > 1: