Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16929 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 16929 Rev 16983
Línea 60... Línea 60...
60
 
60
 
61
$this->headStyle()->captureStart();
61
$this->headStyle()->captureStart();
Línea 62... Línea 62...
62
echo <<<CSS
62
echo <<<CSS
63
 
63
 
64
 
64
 
65
#gridTableUploadCustomers {
65
#gridTableUploadOk {
66
    display: flex;
66
    display: flex;
Línea 67... Línea 67...
67
    flex-flow: column;
67
    flex-flow: column;
68
    width: 100%;
68
    width: 100%;
69
}
69
}
Línea 70... Línea 70...
70
 
70
 
71
#gridTableUploadCustomers thead {
71
#gridTableUploadOk thead {
72
    flex: 0 0 auto;
72
    flex: 0 0 auto;
73
}
73
}
74
 
74
 
75
#gridTableUploadCustomers tbody {
75
#gridTableUploadOk tbody {
Línea 76... Línea 76...
76
    flex: 1 1 auto;
76
    flex: 1 1 auto;
77
    display: block;
77
    display: block;
78
    overflow-y: auto;
78
    overflow-y: auto;
79
    overflow-x: hidden;
79
    overflow-x: hidden;
80
}
80
}
-
 
81
 
-
 
82
#gridTableUploadOk tr {
-
 
83
    width: 100%;
-
 
84
    display: table;
-
 
85
    table-layout: fixed;
-
 
86
}
-
 
87
 
-
 
88
#gridTableUploadError {
-
 
89
    display: flex;
-
 
90
    flex-flow: column;
-
 
91
    width: 100%;
-
 
92
}
-
 
93
 
-
 
94
#gridTableUploadError thead {
-
 
95
    flex: 0 0 auto;
-
 
96
}
-
 
97
 
-
 
98
#gridTableUploadError tbody {
-
 
99
    flex: 1 1 auto;
-
 
100
    display: block;
-
 
101
    overflow-y: auto;
-
 
102
    overflow-x: hidden;
-
 
103
}
-
 
104
 
81
 
105
#gridTableUploadError tr {
82
#gridTableUploadCustomers tr {
106
    width: 100%;
Línea 83... Línea 107...
83
    width: 100%;
107
    display: table;
84
    display: table;
108
    table-layout: fixed;
Línea 451... Línea 475...
451
 
475
 
452
                    $('#table-upload-customers-key').val(response['data']['key']);
476
                    $('#table-upload-customers-key').val(response['data']['key']);
453
                    $('#table-upload-customers-topic').val(response['data']['topic']);
477
                    $('#table-upload-customers-topic').val(response['data']['topic']);
Línea 454... Línea 478...
454
          			$('#table-upload-customers-capsule').val(response['data']['capsule']);
478
          			$('#table-upload-customers-capsule').val(response['data']['capsule']);
Línea 455... Línea 479...
455
    
479
    
Línea 456... Línea 480...
456
                    $('#gridTableUploadCustomers tbody').empty();
480
                    $('#gridTableUploadOk tbody').empty();
-
 
481
                    
457
                    
482
                    $.each(response['data']['items']['ok'], function(index, item) {
458
                    $.each(response['data']['items'], function(index, item) {
483
    
459
    
484
    
460
    
485
                        var s = '<tr>';
461
                        var s = '<tr>';
486
                        s = s + '<td>' + item['id'] + '</td>';
Línea 462... Línea 487...
462
                        s = s + '<td>' + item['first_name'] + '</td>';
487
                        s = s + '<td>' + item['first_name'] + '</td>';
Línea 463... Línea 488...
463
                        s = s + '<td>' + item['last_name'] + '</td>';
488
                        s = s + '<td>' + item['last_name'] + '</td>';
-
 
489
                        s = s + '<td>' + item['email'] + '</td>';
-
 
490
                        s = s + '<td class="text-right">' + item['assigned_capsules'] + '</td>';
-
 
491
                        s = s + '</tr>';
-
 
492
    
-
 
493
                        $('#gridTableUploadOk tbody').append(s);
-
 
494
                
-
 
495
    
-
 
496
                    }); 
-
 
497
 
-
 
498
                    $.each(response['data']['items']['error'], function(index, item) {
-
 
499
    
-
 
500
    
-
 
501
                        var s = '<tr>';
-
 
502
                        s = s + '<td>' + item['id'] + '</td>';
-
 
503
                        s = s + '<td>' + item['first_name'] + '</td>';
-
 
504
                        s = s + '<td>' + item['last_name'] + '</td>';
Línea 464... Línea 505...
464
                        s = s + '<td>' + item['email'] + '</td>';
505
                        s = s + '<td>' + item['email'] + '</td>';
465
                        s = s + '<td class="text-right">' + item['assigned_capsules'] + '</td>';
506
                        s = s + '<td>' + item['status'] + '</td>';
Línea 531... Línea 572...
531
                'key' : $('#table-upload-customers-key').val(),   
572
                'key' : $('#table-upload-customers-key').val(),   
532
            }
573
            }
533
        }).done(function(response) {
574
        }).done(function(response) {
534
            if(response['success']) {
575
            if(response['success']) {
Línea -... Línea 576...
-
 
576
 
-
 
577
                var anchor = window.document.createElement("a");
-
 
578
                anchor.href = 'data:application/octet-stream;charset=utf-8;base64,' + response['data']['csv_base64_content'] ;
-
 
579
                anchor.download = response['data']['csv_filename'];
-
 
580
                document.body.appendChild(anchor);
-
 
581
                anchor.click();  // IE: "Access is denied"; see: https://connect.microsoft.com/IE/feedback/details/797361/ie-10-treats-blob-url-as-cross-origin-and-denies-access
-
 
582
                document.body.removeChild(anchor);
535
 
583
 
536
                var s = response['data']['users_processed'] + ' LABEL_USTUDENTS_PROCESED <br>' + 
584
                var s = response['data']['users_processed'] + ' LABEL_USTUDENTS_PROCESED <br>' + 
537
                response['data']['users_assigned'] + ' LABEL_STUDENTS_ASSIGNED <br>' + 
585
                response['data']['users_assigned'] + ' LABEL_STUDENTS_ASSIGNED <br>' + 
538
                response['data']['users_previous'] + ' LABEL_USTUDENTS_PREVIOUS <br>' + 
586
                response['data']['users_previous'] + ' LABEL_USTUDENTS_PREVIOUS <br>' + 
Línea 866... Línea 914...
866
      			
914
      			
867
      			<div class="row">
915
      			<div class="row">
Línea -... Línea 916...
-
 
916
      				<div class="col-12 mt-3">
-
 
917
      				
-
 
918
      				
-
 
919
      					<ul class="nav nav-tabs" id="myTab" role="tablist">
-
 
920
                  			<li class="nav-item">
-
 
921
                    			<a class="nav-link active" id="items-ok-tab" data-bs-toggle="tab" href="#items-ok" role="tab" aria-controls="items-ok" aria-selected="true">LABEL_USERS</a>
-
 
922
                  			</li>
-
 
923
                  			<li class="nav-item">
-
 
924
                    			<a class="nav-link" id="items-error-tab" data-bs-toggle="tab" href="#items-error" role="tab" aria-controls="items-error" aria-selected="false">LABEL_ERRORS</a>
-
 
925
                  			</li>
-
 
926
                		</ul>
868
      				<div class="col-12 mt-3">
927
                		<div class="tab-content border border-top-0 p-3" id="myTabContent">
869
      				
928
                  			<div class="tab-pane fade show active" id="items-ok" role="tabpanel" aria-labelledby="items-ok-tab">
870
      				
929
                  			
871
      			<div style="height: 300px;overflow: scroll;"> 
930
                  				<div style="height: 300px;overflow: scroll;"> 
-
 
931
                    				<table id="gridTableUploadOk" style="width: 100%" class="table table-bordered">
872
    				<table id="gridTableUploadCustomers" style="width: 100%" class="table table-bordered">
932
                                		<thead>
873
                		<thead>
933
                                			<tr>
874
                			<tr>
934
                                				<th>LABEL_ID</th>
875
                          		<th>LABEL_FIRST_NAME</th>
935
                                          		<th>LABEL_FIRST_NAME</th>
-
 
936
                                         		<th>LABEL_LAST_NAME</th>
-
 
937
                                             	<th>LABEL_EMAIL</th>
-
 
938
                                           		<th>LABEL_CAPSULES</th>	
-
 
939
                                 			</tr>
-
 
940
                                      	</thead>
-
 
941
                                   		<tbody>
-
 
942
                                   		</tbody>
876
                         		<th>LABEL_LAST_NAME</th>
943
                             		</table>
-
 
944
                         		</div>
-
 
945
                  			
-
 
946
                  			</div>
877
                             	<th>LABEL_EMAIL</th>
947
                 			<div class="tab-pane fade" id="items-error" role="tabpanel" aria-labelledby="items-error-tab">
-
 
948
                 				<div style="height: 300px;overflow: scroll;"> 
-
 
949
                    				<table id="gridTableUploadError" style="width: 100%" class="table table-bordered">
-
 
950
                                		<thead>
-
 
951
                                			<tr>
-
 
952
                                				<th>LABEL_ID</th>
-
 
953
                                          		<th>LABEL_FIRST_NAME</th>
-
 
954
                                         		<th>LABEL_LAST_NAME</th>
-
 
955
                                             	<th>LABEL_EMAIL</th>	
878
                           		<th>LABEL_CAPSULES</th>	
956
                                             	<th>LABEL_STATUS</th>	
-
 
957
                                 			</tr>
-
 
958
                                      	</thead>
879
                 			</tr>
959
                                   		<tbody>
-
 
960
                                   		</tbody>
880
                      	</thead>
961
                             		</table>
881
                   		<tbody>
962
                         		</div>
-
 
963
                 			
-
 
964
                 			</div>
-
 
965
                		</div>
882
                   		</tbody>
966
      				
883
             		</table>
967
      				
Línea 884... Línea 968...
884
         		</div>
968