forked from jfeliua/corubrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuncions_menu.gs
4415 lines (4189 loc) · 184 KB
/
funcions_menu.gs
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
function enviaResultsC() {
enviaResults(0);
};
function enviaResultsA() {
enviaResults(1);
};
function enviaResultsP() {
enviaResults(2);
};
/**
* Canvia el formulari enllaçat amb CoRubrics
*
*/
function nouformulari(){
var llibreActual = SpreadsheetApp.getActiveSpreadsheet();
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnes";
var nom_full_prof= "Profes";
break;
case "es":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnos";
var nom_full_prof= "Profes";
break;
case "eu":
var nom_full_rubrica = "Errubrika";
var nom_full_alumnes= "Ikasleak";
var nom_full_prof= "Irakasleak";
break;
case "fr":
var nom_full_rubrica = "Grille";
var nom_full_alumnes= "Élèves";
var nom_full_prof= "Enseignants";
break;
default:
var nom_full_rubrica = "Rubric";
var nom_full_alumnes= "Students";
var nom_full_prof= "Teachers";
}
var rubricaActual = llibreActual.getSheetByName(nom_full_rubrica);
var rangrubrica = rubricaActual.getDataRange();
var llistaalumnes = llibreActual.getSheetByName(nom_full_alumnes);
var llistaprofes = llibreActual.getSheetByName(nom_full_prof);
var rangalumnes = llistaalumnes.getDataRange();
var rangprofes = llistaprofes.getDataRange();
var nombrealumnes = rangalumnes.getNumRows()-1;
var nombreprofes = rangprofes.getNumRows()-1;
var mat_rubrica = [];
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
var nouformulari = Browser.inputBox('Nou formulari','Escriu la URL del nou formulari amb que vols enllaçar CoRubrics; ha de ser de la forma https://docs.google.com/a/domini.cat/forms/d/1beCTQ2QfB5weyZa6XK5Yay4wQ7kRqScwFsll4M/edit', Browser.Buttons.OK_CANCEL);
break;
case "es":
var nouformulari = Browser.inputBox('Nuevo formulario','Escribe la URL del nuevo formulario con que quieres enlazar CoRubrics; tiene que ser de la forma https://docs.google.com/a/dominio.es/forms/d/1beCTFYy8HQ2QfB5we6XK5Yay4wQ7kRqScwFsll4M/edit', Browser.Buttons.OK_CANCEL);
break;
case "eu":
var nouformulari = Browser.inputBox('Inprimaki berria','CoRubricsera lotu nahi zenukeen inprimakiaren URLa idatz ezazu; formatu honetako izan behar du https://docs.google.com/a/dominio.cat/forms/d/1beCTFYy8HQ2QfB5weyZa6wQ7kRqScwFsll4M/edit', Browser.Buttons.OK_CANCEL);
break;
case "fr":
var nouformulari = Browser.inputBox('Nouveau formulaire','URL du nouveau formulaire (p.ex. https://docs.google.com/a/domaini.edu/forms/d/1beCTFYy8HQ2QfB5weyZa6XK5Yay4wQ7kRqScwFsll4M/edit', Browser.Buttons.YES_NO);
break;
default:
var nouformulari = Browser.inputBox('New form','URL from the new form linked (ex: https://docs.google.com/a/domaini.edu/forms/d/1beCTFYy8HQ2QfB5weyZa6XK5Yay4wQ7kRqScwFsll4M/edit', Browser.Buttons.YES_NO);
};
var form = FormApp.openByUrl(nouformulari);
var idform = form.getId();
var formurlbona = nouformulari.slice(0,-4)+"viewform";
esborradB();
var documentProperties = PropertiesService.getDocumentProperties();
documentProperties.setProperty('Formid', idform);
documentProperties.setProperty('Formurl', formurlbona);
documentProperties.setProperty('Formnom', "Form");
documentProperties.setProperty('Formulari', "1");
}
/**
* Mostra una barra lateral per triar què cal enviar als alumnes
*
*/
function enviament() {
var llibreActual = SpreadsheetApp.getActiveSpreadsheet();
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnes";
var nom_full_prof= "Profes";
break;
case "es":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnos";
var nom_full_prof= "Profes";
break;
case "eu":
var nom_full_rubrica = "Errubrika";
var nom_full_alumnes= "Ikasleak";
var nom_full_prof= "Irakasleak";
break;
case "fr":
var nom_full_rubrica = "Grille";
var nom_full_alumnes= "Élèves";
var nom_full_prof= "Enseignants";
break;
default:
var nom_full_rubrica = "Rubric";
var nom_full_alumnes= "Students";
var nom_full_prof= "Teachers";
}
var rubricaActual = llibreActual.getSheetByName(nom_full_rubrica);
var rangrubrica = rubricaActual.getDataRange();
var llistaalumnes = llibreActual.getSheetByName(nom_full_alumnes);
var llistaprofes = llibreActual.getSheetByName(nom_full_prof);
var rangalumnes = llistaalumnes.getDataRange();
var rangprofes = llistaprofes.getDataRange();
var nombrealumnes = rangalumnes.getNumRows()-1;
var nombreprofes = rangprofes.getNumRows()-1;
var mat_rubrica = [];
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
var html = HtmlService.createHtmlOutputFromFile('index_cat')
.setTitle('Opcions d\'enviament')
.setWidth(400);
break;
case "es":
var html = HtmlService.createHtmlOutputFromFile('index_es')
.setTitle('Opciones de envío')
.setWidth(400);
break;
case "eu":
var html = HtmlService.createHtmlOutputFromFile('index_eu')
.setTitle('Bidalketa auker')
.setWidth(400);
break;
case "fr":
var html = HtmlService.createHtmlOutputFromFile('index_fr')
.setTitle('Options d\'envoi')
.setWidth(400);
break;
default:
var html = HtmlService.createHtmlOutputFromFile('index_en')
.setTitle('Shipping Options')
.setWidth(400);
}
SpreadsheetApp.getUi() // Or DocumentApp or FormApp.
.showSidebar(html);
}
/**
* Recull les respostes de la barra lateral
* Envia els resultats de cada alumne
* per mail
*/
function envianotes(formObject) {
var llibreActual = SpreadsheetApp.getActiveSpreadsheet();
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnes";
var nom_full_prof= "Profes";
var nom_full_dianes = "Dianes"
break;
case "es":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnos";
var nom_full_prof= "Profes";
var nom_full_dianes = "Dianas"
break;
case "eu":
var nom_full_rubrica = "Errubrika";
var nom_full_alumnes= "Ikasleak";
var nom_full_prof= "Irakasleak";
var nom_full_dianes = "Dianak"
break;
case "fr":
var nom_full_rubrica = "Grille";
var nom_full_alumnes= "Élèves";
var nom_full_prof= "Enseignants";
var nom_full_dianes = "Radar"
break;
default:
var nom_full_rubrica = "Rubric";
var nom_full_alumnes= "Students";
var nom_full_prof= "Teachers";
var nom_full_dianes = "Radar"
}
var rubricaActual = llibreActual.getSheetByName(nom_full_rubrica);
var rangrubrica = rubricaActual.getDataRange();
var llistaalumnes = llibreActual.getSheetByName(nom_full_alumnes);
var llistaprofes = llibreActual.getSheetByName(nom_full_prof);
var rangalumnes = llistaalumnes.getDataRange();
var rangprofes = llistaprofes.getDataRange();
var nombrealumnes = rangalumnes.getNumRows()-1;
var nombreprofes = rangprofes.getNumRows()-1;
var mat_rubrica = [];
/*Recollim respostes de la barra*/
var nf = formObject.nf;
if (nf==="0"){
var notafinal="no";
}else{
var notafinal="yes";
if (nf==="1"){
var tipusnotafinal="yes";
}else{
var tipusnotafinal="no";
};
};
var ng = formObject.ng;
if (ng==="0"){
var notaglobal="no";
}else{
var notaglobal="yes";
};
var de = formObject.de;
if (de==="0"){
var dianasavaluacio="no";
}else{
var dianasavaluacio="yes";
};
var av = formObject.av;
if (av==="on") {
av = true;
}else{
av = false;
};
var co = formObject.co;
if (co==="on") {
co = true;
}else{
co = false;
};
var pf = formObject.pf;
if (pf==="on") {
pf = true;
}else{
pf = false
};
var cco = formObject.cco;
if (cco==="on") {
var coment_alu="yes";
}else{
var coment_alu="no";
};
var cpf = formObject.cpf;
if (cpf==="on") {
var coment_prof="yes";
}else{
var coment_prof="no";
};
var cav = formObject.cav;
if (cav==="on") {
var coment_auto="yes";
}else{
var coment_auto="no";
};
var dest = formObject.dest;
if (dest==="all") {
var dest=true;
}else{
var dest=false;
};
if (dest===false){
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
var nalum = Browser.inputBox('Alumne','A quin alumne/grup vols enviar els resultats? Indica el número de la columna A del full de resultats.', Browser.Buttons.OK);
break;
case "es":
var nalum = Browser.inputBox('Alumno','¿A que alumno/grupo quieres mandar los resultados? Indica el número de la columna A de la hoja de resultados.', Browser.Buttons.OK);
break;
case "eu":
var nalum = Browser.inputBox('Ikasle','Zein ikasle ala talderi bidali nahi zenioke? Jasotzeaileak emaitzen A zutabean duen zenbakia adieraz ezazu.', Browser.Buttons.OK);
break;
case "fr":
var nalum = Browser.inputBox('Élève','Pour quel élève/groupe désirez-vous envoyer les résultats? Indiquez le numéro de la colonne A de l\'élève/du groupe dans la feuille des résultats.', Browser.Buttons.OK);
break;
default:
var nalum = Browser.inputBox('Student','Which student/group do you want to send the results to? Indicate the number in column A in the result sheet.', Browser.Buttons.OK);
}
};
/*Tanquem la barra*/
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
var html = HtmlService.createHtmlOutputFromFile('enviat_ca')
.setTitle('Opcions d\'enviament')
.setWidth(400);
break;
case "es":
var html = HtmlService.createHtmlOutputFromFile('enviat_es')
.setTitle('Opciones de envío')
.setWidth(400);
break;
case "eu":
var html = HtmlService.createHtmlOutputFromFile('enviat_eu')
.setTitle('Bidalketa auker')
.setWidth(400);
break;
case "fr":
var html = HtmlService.createHtmlOutputFromFile('enviat_fr')
.setTitle('Options d\'envoi')
.setWidth(400);
break;
default:
var html = HtmlService.createHtmlOutputFromFile('enviat_en')
.setTitle('Shipping Options')
.setWidth(400);
}
SpreadsheetApp.getUi() // Or DocumentApp or FormApp.
.showSidebar(html);
/*Eviem les notes*/
var fullmitjanes = llibreActual.getSheets()[llibreActual.getNumSheets()-1]; //S'agafen els resultat del darrer full
var rangmitjanes = fullmitjanes.getDataRange();
var valormitjanes = rangmitjanes.getValues();
//Omplo la matriu rúbrica amb les dades de la rúbrica
var mat_rubrica=rangrubrica.getValues();
//Preparem els destinataris i el cos del missatge
var documentProperties = PropertiesService.getDocumentProperties();
var formnom = documentProperties.getProperty('Formnom');
var cosmissatge="";
var alumnes = "";
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
var titol= "Resultat de la rúbrica: " + formnom;
var pc = "Puntuació dels companys";
var pp = "Puntuació pròpia";
var ppr = "Puntuació del professor";
var ng = "Nota final"
var nfg= "Nota global";
var cpf ="Comentaris del professor: ";
var cco ="Comentaris dels companys: ";
var cav ="Comentaris del propi alumne: ";
break;
case "es":
var titol= "Resultado de la rúbrica: " + formnom;
var pc = "Puntuación de los compañeros";
var pp = "Puntuación propia";
var ppr = "Puntuación del profesor";
var ng = "Nota final";
var nfg= "Nota global";
var cpf ="Comentarios del profesor: ";
var cco ="Comentarios de los compañeros: ";
var cav ="Comentarios del propio alumno: ";
break;
case "eu":
var titol= "Errubrikaren emaitza: " + formnom;
var pc = "Kideen kalifikazioa";
var pp = "Norberaren kalifikazioa";
var ppr = "Irakaslearen kalifikazioa";
var ng = "Nota finala"
var nfg= "Nota globala";
var cpf ="Irakaslearen iruzkina: ";
var cco ="Ikasleen iruzkinak: ";
var cav ="Comentaris del propi alumne: ";
break;
case "fr":
var titol= "Résultat de la grille: " + formnom;
var pc = "Note d'un collègue";
var pp = "Note de l'élève-même";
var ppr = "Note de l'enseignant";
var ng = "Note finale";
var nfg= "Note globale";
var cpf ="Commentaires de l'enseignant: ";
var cco ="Commentaires des collègues: ";
var cav ="Commentaires de l'élève-même: ";
break;
default:
var titol= "Rubric result: " + formnom;
var pc = "Colleagues grade";
var pp = "Student own grade";
var ppr = "Teacher grade";
var ng = "Final grade";
var nfg= "Overall grade";
var cpf ="Teacher's comments: ";
var cco ="Comments from colleagues: ";
var cav ="Student's own comments: ";
}
var r_al=rangalumnes.getValues();//agafem tots els alumnes
var titol2=titol;
for (var i=0; i<rangalumnes.getNumRows()-1;i++){
titol = titol2 + " - " + r_al[i+1][0];
for (var j=0; j<rangalumnes.getNumColumns()-1;j++){
if (dest===false){
i=nalum-1;
titol = titol2 + " - " + r_al[i+1][0];
};
alumnes = r_al[i+1][j+1];
if (alumnes!=""){
//Definim el cos del missatge amb la rúbrica original i els resultats
cosmissatge='<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000"><tr align="center" valign="middle" bgcolor="#C0C0C0">';
for (k=1;k<rangrubrica.getNumColumns();k++){
cosmissatge= cosmissatge+'<td colspan="1"><p align="center"><strong>'+mat_rubrica[0][k-1]+'</strong></p></td>';
};
if (co){
cosmissatge= cosmissatge+'<td rowspan="2" bgcolor="#A9F5E1" colspan="1"><p align="center"><strong>'+pc+'</strong></p></td>';
};
if (av){
cosmissatge= cosmissatge+'<td rowspan="2" bgcolor="#ffe599" colspan="1"><p align="center"><strong>'+pp+'</strong></p></td>';
};
if (pf){
cosmissatge= cosmissatge+'<td rowspan="2" bgcolor="#F6CEF5" colspan="1"><p align="center"><strong>'+ppr+'</strong></p></td>';
};
cosmissatge = cosmissatge+'</tr><tr bgcolor="#C0C0C0">';
cosmissatge=cosmissatge+'<td><p align="center"><strong><div align="center"></strong></p></div></td>';
for (k=2;k<rangrubrica.getNumColumns();k++){
cosmissatge=cosmissatge+'<td><p align="center"><strong><div align="center">'+mat_rubrica[1][k-1]+'</strong></p></div></td>';
};
/*if (co){
cosmissatge=cosmissatge+'<td bgcolor="#A9F5E1"><p align="center"><strong><div align="center"></strong></p></div></td>';
};
if (av){
cosmissatge=cosmissatge+'<td bgcolor="#ffe599" ><p align="center"><strong><div align="center"></strong></p></div></td>';
};
if (pf){
cosmissatge=cosmissatge+'<td bgcolor="#F6CEF5"><p align="center"><strong><div align="center"></strong></p></div></td>';
}; */
cosmissatge = cosmissatge+'</tr><tr>';
for (z=2;z<rangrubrica.getNumRows();z++){
cosmissatge=cosmissatge+'<td><p align="center"><strong><div align="center">'+mat_rubrica[z][0]+'</strong></p></div></td>';
for (k=2;k<rangrubrica.getNumColumns();k++){
let color_td='#ffffff';
let v1=Math.round(mat_rubrica[1][k-1]);
let co_1=Math.round(valormitjanes[i+3][3*z-1]);
let av_1=Math.round(valormitjanes[i+3][3*z]);
let pf_1=Math.round(valormitjanes[i+3][3*z+1]);
let color_co=0;
let color_av=0;
let color_pf=0;
if (v1==co_1){ //Mirem si és la cel·la del valor de la coavaluació
color_co=1;
color_td='#A9F5E1';
}
if (v1==av_1){ //Mirem si és la cel·la del valor de la autoavaluació
color_av=1;
color_td='#ffe599';
}
if (v1==pf_1){ //Mirem si és la cel·la del valor de la avaluació profe
color_pf=1;
color_td='#F6CEF5';
}
if (color_co==1 && color_av==1 && color_pf==1){
color_td='#58FA58';
}else{
if (color_co==1 && color_av==1){
color_td='#BCA9F5';
}else{
if(color_co==1 && color_pf==1){
color_td='#F5A9BC';
}else{
if (color_av==1 && color_pf==1){
color_td='#FAAC58';
}
}
}
}
cosmissatge=cosmissatge+'<td bgcolor="'+color_td+'"><p align="center"><div align="center">'+mat_rubrica[z][k-1]+'</p></div></td>';
};
if (co){
cosmissatge=cosmissatge+'<td bgcolor="#A9F5E1"><p align="center"><strong><div align="center">'+valormitjanes[i+3][3*z-1]+'</strong></p></div></td>';
};
if (av){
cosmissatge=cosmissatge+'<td bgcolor="#ffe599"><p align="center"><strong><div align="center">'+valormitjanes[i+3][3*z]+'</strong></p></div></td>';
};
if (pf){
cosmissatge=cosmissatge+'<td bgcolor="#F6CEF5"><p align="center"><strong><div align="center">'+valormitjanes[i+3][3*z+1]+'</strong></p></div></td>';
};
cosmissatge = cosmissatge+'</tr><tr>';
};
cosmissatge=cosmissatge + '</tr></table><p></p>';
//Si hem d'enviar la nota final, l'afegim
if (notafinal==="yes") {
cosmissatge= cosmissatge + '<table border="1" cellpadding="0" cellspacing="0"><tr align="center" valign="middle">';
cosmissatge= cosmissatge + '<td bgcolor="#C0C0C0" width="100" colspan="1"><p align="center"><strong>'+ng+'</strong></p></td>';
if (tipusnotafinal==="yes"){
if (co){
cosmissatge= cosmissatge + '<td bgcolor="#66FF99" width="100" colspan="1"><p align="center"><strong>'+valormitjanes[i+3][rangmitjanes.getNumColumns()-9]+'</strong></p></td>';
};
if (av){
cosmissatge= cosmissatge + '<td bgcolor="#66FF99" width="100" colspan="1"><p align="center"><strong>'+valormitjanes[i+3][rangmitjanes.getNumColumns()-8]+'</strong></p></td>';
};
if (pf){
cosmissatge= cosmissatge + '<td bgcolor="#66FF99" width="100" colspan="1"><p align="center"><strong>'+valormitjanes[i+3][rangmitjanes.getNumColumns()-7]+'</strong></p></td>';
};
}else{
if (co){
cosmissatge= cosmissatge + '<td bgcolor="#66FF99" width="100" colspan="1"><p align="center"><strong>'+valormitjanes[i+3][rangmitjanes.getNumColumns()-12]+'</strong></p></td>';
};
if (av){
cosmissatge= cosmissatge + '<td bgcolor="#66FF99" width="100" colspan="1"><p align="center"><strong>'+valormitjanes[i+3][rangmitjanes.getNumColumns()-11]+'</strong></p></td>';
};
if (pf){
cosmissatge= cosmissatge + '<td bgcolor="#66FF99" width="100" colspan="1"><p align="center"><strong>'+valormitjanes[i+3][rangmitjanes.getNumColumns()-10]+'</strong></p></td>';
};
};
cosmissatge= cosmissatge + '</tr></table><p></p>';
};
//Si hem d'enviar la nota global, l'afegim
if (notaglobal==="yes") {
cosmissatge= cosmissatge + '<table border="1" cellpadding="0" cellspacing="0"><tr align="center" valign="middle">';
cosmissatge= cosmissatge + '<td bgcolor="#C0C0C0" width="100" colspan="1"><p align="center"><strong>'+nfg+'</strong></p></td>';
cosmissatge= cosmissatge + '<td bgcolor="#7ab6ff" width="100" colspan="1"><p align="center"><strong>'+valormitjanes[i+3][rangmitjanes.getNumColumns()-6]+'</strong></p></td>';
cosmissatge= cosmissatge + '</tr></table><p></p>';
};
//Afegim els comentaris del professor
if (coment_prof==="yes"){
cosmissatge= cosmissatge + '<p><b>'+cpf+'</b>'+rangmitjanes.getCell(i+4,rangmitjanes.getNumColumns()-2).getValue()+'</p>';
};
//Afegim els comentaris dels alumnes
if (coment_alu==="yes"){
cosmissatge= cosmissatge + '<p><b>'+cco+'</b>'+rangmitjanes.getCell(i+4,rangmitjanes.getNumColumns()-1).getValue()+'</p>';
};
//Afegim els comentaris propis
if (coment_auto==="yes"){
cosmissatge= cosmissatge + '<p><b>'+cav+'</b>'+rangmitjanes.getCell(i+4,rangmitjanes.getNumColumns()).getValue()+'</p>';
};
if (dianasavaluacio==="yes"){
var pre_sheet = llibreActual.getSheetByName(nom_full_dianes);
if (pre_sheet!=null){
var idt = SpreadsheetApp.getActive().getId(); //NOU
var charts = pre_sheet.getCharts();
var chartBlobs=new Array(charts.length);
var emailImages={};
//var builder = charts[i].modify();
//var newchart = builder.build();
//chartBlobs[i]= newchart.getAs('image/png');
var token = ScriptApp.getOAuthToken(); //NOU project requires https://www.googleapis.com/auth/spreadsheets scope
var baseUrl = 'https://docs.google.com/spreadsheets/d/'+idt+'/embed/oimg?access_token='+token+'&disposition=ATTACHMENT&bo=false&filetype=png&oid='; //NOU
var url = baseUrl + charts[i].getChartId();//NOU
chartBlobs[i] = UrlFetchApp.fetch(url).getBlob();//NOU
cosmissatge= cosmissatge + "<p align='center'><img src='cid:chart"+i+"'></p>";
emailImages["chart"+i]= chartBlobs[i];
//Enviem els missatges amb imatges
GmailApp.sendEmail(alumnes, titol, '', {
htmlBody: cosmissatge,
inlineImages:emailImages
});
alumnes="";
cosmissatge="";
}else{
//Enviem els missatges sense imatges
GmailApp.sendEmail(alumnes, titol, '', {
htmlBody: cosmissatge
});
alumnes="";
cosmissatge="";
}
}else{;
//Enviem els missatges sense imatges
GmailApp.sendEmail(alumnes, titol, '', {
htmlBody: cosmissatge
});
alumnes="";
cosmissatge="";
};
};
};
if (dest===false){
i=rangalumnes.getNumRows();
};
};
//Deso al ScripDb que l'he enviat (si no estic reenviant)
var documentProperties = PropertiesService.getDocumentProperties();
documentProperties.setProperty('Mail2', "1");
//Canviar el menú, treient Enviar formulari i posant el que correspongui
onOpen();
};
/**
* Reiniciar el procés. Esborra la base de
* dades i torna a crear el menú.
*/
function reinici(){
var llibreActual = SpreadsheetApp.getActiveSpreadsheet();
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnes";
var nom_full_prof= "Profes";
var nom_full_dianes = "Dianes";
break;
case "es":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnos";
var nom_full_prof= "Profes";
var nom_full_dianes = "Dianas";
break;
case "eu":
var nom_full_rubrica = "Errubrika";
var nom_full_alumnes= "Ikasleak";
var nom_full_prof= "Irakasleak";
var nom_full_dianes = "Dianak";
break;
case "fr":
var nom_full_rubrica = "Grille";
var nom_full_alumnes= "Élèves";
var nom_full_prof= "Enseignants";
var nom_full_dianes = "Radar";
break;
default:
var nom_full_rubrica = "Rubric";
var nom_full_alumnes= "Students";
var nom_full_prof= "Teachers";
var nom_full_dianes = "Radar";
}
var rubricaActual = llibreActual.getSheetByName(nom_full_rubrica);
var rangrubrica = rubricaActual.getDataRange();
var llistaalumnes = llibreActual.getSheetByName(nom_full_alumnes);
var llistaprofes = llibreActual.getSheetByName(nom_full_prof);
var rangalumnes = llistaalumnes.getDataRange();
var rangprofes = llistaprofes.getDataRange();
var nombrealumnes = rangalumnes.getNumRows()-1;
var nombreprofes = rangprofes.getNumRows()-1;
var mat_rubrica = [];
esborradB();
var full=llibreActual.getSheetByName(nom_full_dianes);
if (full != null){
var fullactiu = llibreActual.getActiveSheet();
var nombrefulls = llibreActual.getNumSheets();
var nomdata= llibreActual.setActiveSheet(llibreActual.getSheets()[nombrefulls-1]).getName()
full.setName(nom_full_dianes+"-"+nomdata);
};
//Canviar el menú
onOpen();
};
/**
* Tornar a crear el formualri
*/
function creanouFormulari(){
var llibreActual = SpreadsheetApp.getActiveSpreadsheet();
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnes";
var nom_full_prof= "Profes";
break;
case "es":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnos";
var nom_full_prof= "Profes";
break;
case "eu":
var nom_full_rubrica = "Errubrika";
var nom_full_alumnes= "Ikasleak";
var nom_full_prof= "Irakasleak";
break;
case "fr":
var nom_full_rubrica = "Grille";
var nom_full_alumnes= "Élèves";
var nom_full_prof= "Enseignants";
break;
default:
var nom_full_rubrica = "Rubric";
var nom_full_alumnes= "Students";
var nom_full_prof= "Teachers";
}
var rubricaActual = llibreActual.getSheetByName(nom_full_rubrica);
var rangrubrica = rubricaActual.getDataRange();
var llistaalumnes = llibreActual.getSheetByName(nom_full_alumnes);
var llistaprofes = llibreActual.getSheetByName(nom_full_prof);
var rangalumnes = llistaalumnes.getDataRange();
var rangprofes = llistaprofes.getDataRange();
var nombrealumnes = rangalumnes.getNumRows()-1;
var nombreprofes = rangprofes.getNumRows()-1;
var mat_rubrica = [];
esborradB();
creaFormulari();
};
/**
* Mostra l'enllaç del formulari
* per pantalla
*/
function enllaFormulari() {
var llibreActual = SpreadsheetApp.getActiveSpreadsheet();
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnes";
var nom_full_prof= "Profes";
break;
case "es":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnos";
var nom_full_prof= "Profes";
break;
case "eu":
var nom_full_rubrica = "Errubrika";
var nom_full_alumnes= "Ikasleak";
var nom_full_prof= "Irakasleak";
break;
case "fr":
var nom_full_rubrica = "Grille";
var nom_full_alumnes= "Élèves";
var nom_full_prof= "Enseignants";
break;
default:
var nom_full_rubrica = "Rubric";
var nom_full_alumnes= "Students";
var nom_full_prof= "Teachers";
}
var rubricaActual = llibreActual.getSheetByName(nom_full_rubrica);
var rangrubrica = rubricaActual.getDataRange();
var llistaalumnes = llibreActual.getSheetByName(nom_full_alumnes);
var llistaprofes = llibreActual.getSheetByName(nom_full_prof);
var rangalumnes = llistaalumnes.getDataRange();
var rangprofes = llistaprofes.getDataRange();
var nombrealumnes = rangalumnes.getNumRows()-1;
var nombreprofes = rangprofes.getNumRows()-1;
var mat_rubrica = [];
//Recupero el ID del fomrulari, del ScriptDB
var documentProperties = PropertiesService.getDocumentProperties();
var formurl= documentProperties.getProperty('Formurl');
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
var enl = '<p>L\'enllaç del formulari és: </p><p><a target="_blank" href="'+formurl+'">'+formurl+'</a></p>';
break;
case "es":
var enl = '<p>El enlace del formulario es: </p><p><a target="_blank" href="'+formurl+'">'+formurl+'</a></p>';
break;
case "eu":
var enl = '<p>Hau da Inprimakiaren helbidea: </p><p><a target="_blank" href="'+formurl+'">'+formurl+'</a></p>';
break;
case "fr":
var enl = '<p>Le lien au formulaire est:: </p><p><a target="_blank" href="'+formurl+'">'+formurl+'</a></p>';
break;
default:
var enl = '<p>The link to the form is: </p><p><a target="_blank" href="'+formurl+'">'+formurl+'</a></p>';
}
var htmlApp = HtmlService.createHtmlOutput();
htmlApp.setContent(enl);
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
htmlApp.setTitle('Enllaç del formulari');
break;
case "es":
htmlApp.setTitle('Enlace del formulario');
break;
case "eu":
htmlApp.setTitle('Inprimakiaren helbidea');
break;
case "fr":
htmlApp.setTitle('Lien au formulaire');
break;
default:
htmlApp.setTitle('Form link');
}
htmlApp.setWidth(400);
htmlApp.setHeight(150);
SpreadsheetApp.getActive().show(htmlApp);
//Deso al ScripDb que l'he enviat (si no estic reenviant)
var documentProperties = PropertiesService.getDocumentProperties();
documentProperties.setProperty('Mail', "1");
//Canviar el menú, treient Enviar formulari i posant el que correspongui
onOpen();
};
/**
* Envia l'enllaç del formulari per mail
* a tots les alumnes.
*/
function enviaFormulari() {
var llibreActual = SpreadsheetApp.getActiveSpreadsheet();
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnes";
var nom_full_prof= "Profes";
break;
case "es":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnos";
var nom_full_prof= "Profes";
break;
case "eu":
var nom_full_rubrica = "Errubrika";
var nom_full_alumnes= "Ikasleak";
var nom_full_prof= "Irakasleak";
break;
case "fr":
var nom_full_rubrica = "Grille";
var nom_full_alumnes= "Élèves";
var nom_full_prof= "Enseignants";
break;
default:
var nom_full_rubrica = "Rubric";
var nom_full_alumnes= "Students";
var nom_full_prof= "Teachers";
}
var rubricaActual = llibreActual.getSheetByName(nom_full_rubrica);
var rangrubrica = rubricaActual.getDataRange();
var llistaalumnes = llibreActual.getSheetByName(nom_full_alumnes);
var llistaprofes = llibreActual.getSheetByName(nom_full_prof);
var rangalumnes = llistaalumnes.getDataRange();
var rangprofes = llistaprofes.getDataRange();
var nombrealumnes = rangalumnes.getNumRows()-1;
var nombreprofes = rangprofes.getNumRows()-1;
var mat_rubrica = [];
//Recupero el ID del formulari, del ScriptDB
var documentProperties = PropertiesService.getDocumentProperties();
var formurl = documentProperties.getProperty('Formurl');
var formnom = documentProperties.getProperty('Formnom');
//Defineixo el títol (nom del formulari) i el cos del missatge
var titolform = formnom;
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
var titol = "Formulari d'avaluació: " + titolform;
var cosmissatge = "Aquí teniu l'enllaç per puntuar la tasca: " + formurl;
break;
case "es":
var titol = "Formulario de evaluación: " + titolform;
var cosmissatge = "Aquí tenéis el enlace para puntuar la actividad: " + formurl;
break;
case "eu":
var titol = "Ebaluazio Inprimakia: " + titolform;
var cosmissatge = "Zuen kideen jarduerak puntuatzeko helbidea hau da:" + formurl;
break;
case "fr":
var titol = "Formulaire d'évaluation: " + titolform;
var cosmissatge = "Voici le lien pour évaluer l'activité: " + formurl;
break;
default:
var titol = "Evaluation form: " + titolform;
var cosmissatge = "Here it is the link to rate the activity: " + formurl;
}
//Envio el formulari a cada un dels alumnes
var alumnes = "";
for (i=0; i<rangalumnes.getNumRows()-1;i++){
for (j=0; j<rangalumnes.getNumColumns()-1;j++){
alumnes = rangalumnes.getCell(i+2,j+2).getValue();
if (alumnes!=""){
GmailApp.sendEmail(alumnes, titol, cosmissatge);
alumnes="";
};
};
};
//Deso al ScripDb que l'he enviat (si no estic reenviant)
documentProperties.setProperty('Mail',"1");
//Canviar el menú, treient Enviar formulari i posant el que correspongui;
onOpen();
};
/**
* Crea un formulari a partir de la rúbrica del full actual, amb un pregunta Llista amb el nom
* de tots els alumnes que hi ha al full Alumnes i amb tantes preguntes Graella com aspectes
* valora la rúbrica.
*/
function creaFormulari() {
var llibreActual = SpreadsheetApp.getActiveSpreadsheet();
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
switch(idioma){
case "ca":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnes";
var nom_full_prof= "Profes";
break;
case "es":
var nom_full_rubrica = "Rúbrica";
var nom_full_alumnes= "Alumnos";
var nom_full_prof= "Profes";
break;
case "eu":
var nom_full_rubrica = "Errubrika";
var nom_full_alumnes= "Ikasleak";
var nom_full_prof= "Irakasleak";
break;
case "fr":
var nom_full_rubrica = "Grille";
var nom_full_alumnes= "Élèves";
var nom_full_prof= "Enseignants";
break;
default:
var nom_full_rubrica = "Rubric";
var nom_full_alumnes= "Students";
var nom_full_prof= "Teachers";
}
var rubricaActual = llibreActual.getSheetByName(nom_full_rubrica);
var rangrubrica = rubricaActual.getDataRange();
//Eliminem el format del full de rúbrica
var rangesborrar=rubricaActual.getRange(3,2,rangrubrica.getNumRows()-2,rangrubrica.getNumColumns()-1);
rangesborrar.clearFormat();
rangesborrar.setVerticalAlignment('middle');
rangesborrar.setHorizontalAlignment('center')
rangesborrar.setWrapStrategy(SpreadsheetApp.WrapStrategy.WRAP);
rangesborrar.setBorder(true, true, true, true, true, true, '#000000', SpreadsheetApp.BorderStyle.SOLID);
var llistaalumnes = llibreActual.getSheetByName(nom_full_alumnes);
var llistaprofes = llibreActual.getSheetByName(nom_full_prof);
var rangalumnes = llistaalumnes.getDataRange();
var rangprofes = llistaprofes.getDataRange();
var nombrealumnes = rangalumnes.getNumRows()-1;
var nombreprofes = rangprofes.getNumRows()-1;
var mat_rubrica = [];
if (nombrealumnes>0){
var properties = PropertiesService.getDocumentProperties();
var idioma = properties.getProperty('Idioma');
var ui = SpreadsheetApp.getUi();
switch(idioma){
case "ca":
var nomform = Browser.inputBox('Nom del formulari','Quin nom vols que tingui el formulari?', Browser.Buttons.OK_CANCEL);
var oblig = ui.alert('Preguntes obligatòries','Vols fer obligatòria la resposta de tots els aspectes de la rúbrica?', ui.ButtonSet.YES_NO);
break;
case "es":
var nomform = Browser.inputBox('Nombre del formulario','¿Qué nombre quieres que tenga el formulario?', Browser.Buttons.OK_CANCEL);
var oblig = ui.alert('Preguntas obligatorias','¿Quieres marcar como obligatorias las respuestas de todos los aspectos de la rúbrica?', ui.ButtonSet.YES_NO);
break;
case "eu":
var nomform = Browser.inputBox('Inprimakiaren izena','Zer izen eman nahi diozu Inprimakiari?', Browser.Buttons.OK_CANCEL);
var oblig = ui.alert('Osatu beharreko galderak','Errubrikaren aspektu guztien erantzunak osatu beharreko gisa markatu nahi dituzu?', ui.ButtonSet.YES_NO);
break;
case "fr":
var nomform = Browser.inputBox('Nom du formulaire','Quel est le nom du formulaire?', Browser.Buttons.OK_CANCEL);
var oblig = ui.alert('Requiert des réponses','Voulez-vous avoir des réponses à tous les aspects de la grillé?', ui.ButtonSet.YES_NO);
break;
default:
var nomform = Browser.inputBox('Form name','What is the name of the form?', Browser.Buttons.OK_CANCEL);
var oblig = ui.alert('Required responses','Do you want to require answers to all aspects of the rubric?', ui.ButtonSet.YES_NO);
}