|
@@ -1,7 +1,8 @@
|
|
1
|
+from connect import connection
|
|
2
|
+import sqlalchemy as db
|
|
3
|
+
|
1
|
4
|
def crear_transcripcion(id):
|
2
|
5
|
|
3
|
|
- from connect import connection
|
4
|
|
- import sqlalchemy as db
|
5
|
6
|
from flask import jsonify
|
6
|
7
|
|
7
|
8
|
|
|
@@ -10,7 +11,7 @@ def crear_transcripcion(id):
|
10
|
11
|
headers.update({"1":"Codigo"})
|
11
|
12
|
headers.update({"2":"Curso"})
|
12
|
13
|
headers.update({"3":"Nota"})
|
13
|
|
- headers.update({"4":"Creditos"})
|
|
14
|
+ headers.update({"4":"Porciento"})
|
14
|
15
|
|
15
|
16
|
###### estudiante
|
16
|
17
|
|
|
@@ -20,8 +21,7 @@ def crear_transcripcion(id):
|
20
|
21
|
WHERE u.id = '+id+ ' AND u.id = m.user_id'
|
21
|
22
|
result_db = connection.execute(query).fetchall()
|
22
|
23
|
|
23
|
|
- q = result_db
|
24
|
|
- q = q[0]
|
|
24
|
+ q = result_db[0]
|
25
|
25
|
|
26
|
26
|
estudiante={}
|
27
|
27
|
estudiante.update({"nombres":str(q[0])})
|
|
@@ -36,23 +36,97 @@ def crear_transcripcion(id):
|
36
|
36
|
estudiante.update({"telefono1":str(q[9])})
|
37
|
37
|
estudiante.update({"telefono2":str(q[10])})
|
38
|
38
|
|
|
39
|
+ query = 'SELECT sum(e.valor) as total, sum(n.valor) as puntos, \
|
|
40
|
+ sum(n.valor)/sum(e.valor) as promedio\
|
|
41
|
+ FROM matricula m, oferta o, cursos c, evaluaciones e, notas n\
|
|
42
|
+ WHERE m.oferta_id = o.curso_id AND o.curso_id = c.id \
|
|
43
|
+ AND c.id = e.oferta_id AND e.id = n.evaluacion_id AND n.estudiante_id = ' + id
|
|
44
|
+ result_db = connection.execute(query).fetchall()
|
|
45
|
+
|
|
46
|
+ q = result_db[0]
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
39
|
50
|
###### semestres
|
40
|
51
|
|
41
|
|
- q = result_db
|
42
|
|
- semestres={}
|
43
|
52
|
|
44
|
|
- semestre = ('1', '2', '3', '4', )
|
45
|
|
- clases = ('ingles', 'espa~Nol', 'arte', 'mate', )
|
46
|
|
- for num in semestre:
|
47
|
|
- cursos = {}
|
|
53
|
+ #funcion para obtener el promedio en un semestre dado
|
|
54
|
+ def get_promedio_del_semestre(id, semestre):
|
|
55
|
+ query = 'SELECT sum(n.valor)/sum(e.valor) as promedio\
|
|
56
|
+ FROM matricula m, oferta o, cursos c, evaluaciones e, notas n\
|
|
57
|
+ WHERE m.oferta_id = o.curso_id AND o.curso_id = c.id \
|
|
58
|
+ AND c.id = e.oferta_id AND e.id = n.evaluacion_id AND n.estudiante_id ='+ id + '\
|
|
59
|
+ AND o.semestre = "' + str(semestre) + '"'
|
|
60
|
+ result = connection.execute(query).fetchall()
|
|
61
|
+ return str((result[0][0]))
|
|
62
|
+
|
|
63
|
+ query = 'SELECT o.id, o.semestre, c.codigo, c.titulo, \
|
|
64
|
+ sum(e.valor) as total, sum(n.valor) as puntos, \
|
|
65
|
+ sum(n.valor)/sum(e.valor) as promedio\
|
|
66
|
+ FROM matricula m, oferta o, cursos c, evaluaciones e, notas n\
|
|
67
|
+ WHERE m.oferta_id = o.curso_id AND o.curso_id = c.id \
|
|
68
|
+ AND c.id = e.oferta_id AND e.id = n.evaluacion_id AND n.estudiante_id = ' + id +'\
|
|
69
|
+ GROUP BY o.id ORDER BY o.semestre'
|
|
70
|
+ result_db = connection.execute(query).fetchall()
|
|
71
|
+
|
|
72
|
+ clases = result_db
|
|
73
|
+ promedio_acumulado = 0
|
|
74
|
+ semestres={}
|
|
75
|
+ semestre={}
|
|
76
|
+ ctr=0
|
|
77
|
+ ctr2=0
|
|
78
|
+ ctr3=1
|
|
79
|
+ if len(clases)>0:
|
|
80
|
+ codigo_semestre = clases[0][1]
|
48
|
81
|
for clase in clases:
|
49
|
|
- curso = {}
|
50
|
|
- curso.update({"codigo":'33'})
|
51
|
|
- curso.update({"Nota":'A'})
|
52
|
|
- curso.update({"Creditos":'3'})
|
53
|
|
- curso.update({"nombre":clase})
|
54
|
|
- cursos.update({clase:curso})
|
55
|
|
- semestres.update({"semestre "+num:cursos})
|
|
82
|
+ #add clases al semestre
|
|
83
|
+ if codigo_semestre == clase[1]:
|
|
84
|
+ curso = {}
|
|
85
|
+ curso.update({"id":str(clase[0])})
|
|
86
|
+ curso.update({"Semestre":str(clase[1])})
|
|
87
|
+ curso.update({"codigo":str(clase[2])})
|
|
88
|
+ curso.update({"nombre":str(clase[3])})
|
|
89
|
+ curso.update({"total":str(clase[4])})
|
|
90
|
+ curso.update({"obtenido":str(clase[5])})
|
|
91
|
+ curso.update({"porciento":str(int(clase[6]*100))})
|
|
92
|
+ semestre.update({codigo_semestre+'//'+str(ctr):curso})
|
|
93
|
+ #si el semestre es distinto,
|
|
94
|
+
|
|
95
|
+ elif codigo_semestre != clase[1]:
|
|
96
|
+ # add semestre a semestres
|
|
97
|
+ promedio = {}
|
|
98
|
+ promedio_semestre = get_promedio_del_semestre(id, curso.get('Semestre'))
|
|
99
|
+ promedio_acumulado += float(promedio_semestre)
|
|
100
|
+ promedio.update({"acumulado":promedio_semestre[:-2]})
|
|
101
|
+ promedio.update({"total":str(promedio_acumulado/ctr3)[:-2]})
|
|
102
|
+ semestre.update({"promedio":promedio})
|
|
103
|
+ semestres.update({"semestre "+codigo_semestre:semestre})
|
|
104
|
+ # y vaciar semestre
|
|
105
|
+ semestre={}
|
|
106
|
+ codigo_semestre = clase[1]
|
|
107
|
+ ctr = 0
|
|
108
|
+ curso = {}
|
|
109
|
+ curso.update({"id":str(clase[0])})
|
|
110
|
+ curso.update({"Semestre":str(clase[1])})
|
|
111
|
+ curso.update({"codigo":str(clase[2])})
|
|
112
|
+ curso.update({"nombre":str(clase[3])})
|
|
113
|
+ curso.update({"total":str(clase[4])})
|
|
114
|
+ curso.update({"obtenido":str(clase[5])})
|
|
115
|
+ curso.update({"porciento":str(int(clase[6]*100))})
|
|
116
|
+ semestre.update({codigo_semestre+'//'+str(ctr):curso})
|
|
117
|
+ ctr3 += 1
|
|
118
|
+ ctr += 1
|
|
119
|
+ ctr2 += 1
|
|
120
|
+
|
|
121
|
+ if ctr2==len(clases):
|
|
122
|
+ promedio = {}
|
|
123
|
+ promedio_semestre = get_promedio_del_semestre(id, curso.get('Semestre'))
|
|
124
|
+ promedio_acumulado += float(promedio_semestre)
|
|
125
|
+ promedio.update({"acumulado":promedio_semestre[:-2]})
|
|
126
|
+ promedio.update({"total":str(promedio_acumulado/ctr3)[:-2]})
|
|
127
|
+ semestre.update({"promedio":promedio})
|
|
128
|
+ semestres.update({"semestre "+clase[1]:semestre})
|
|
129
|
+ estudiante.update({"promedio":str(promedio_acumulado/ctr3)[:-2]+'%'})
|
56
|
130
|
|
57
|
131
|
|
58
|
132
|
result = {}
|