Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16891 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
2 efrain 1
<?php
2
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser    = $this->currentUserHelper();
4
 
3 efrain 5
$routeReports = $this->url('microlearning/reports/progress');
2 efrain 6
 
7
$roleName = $currentUser->getUserTypeId();
8
 
9
 
16822 efrain 10
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
11
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
12
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jsrender/jsrender.js'));
2 efrain 13
 
14
$this->headStyle()->captureStart();
15
echo <<<CSS
16
 
17
 
18
#tableStudents {
19
    display: flex;
20
    flex-flow: column;
21
    width: 100%;
22
}
23
 
24
#tableStudents thead {
25
    flex: 0 0 auto;
26
}
27
 
28
#tableStudents tbody {
29
    flex: 1 1 auto;
30
    display: block;
31
    overflow-y: auto;
32
    overflow-x: hidden;
33
}
34
 
35
#tableStudents tr {
36
    width: 100%;
37
    display: table;
38
    table-layout: fixed;
39
}
40
CSS;
41
$this->headStyle()->captureEnd();
42
 
43
 
44
 
45
$this->inlineScript()->captureStart();
46
echo <<<JS
47
jQuery( document ).ready(function( $ ) {
48
 
49
    $.fn.changeFilter = function() {
50
        NProgress.start();
51
        $.ajax({
52
            'dataType'  : 'json',
53
            'accept'    : 'application/json',
54
            'method'    : 'get',
55
            'url'       :  $('#form-filter').attr('action'),
56
            'data'      :  $('#form-filter').serialize(),
57
        }).done(function(response) {
58
            if(response['success']) {
59
 
60
                $('#tableStudents tbody').empty();
187 efrain 61
                $('#tableStudents tbody').append(
62
                    $( "#progressRowTemplate" ).render( response['data'] )
2 efrain 63
 
187 efrain 64
                );
2 efrain 65
 
66
 
67
            } else {
68
                if(jQuery.type(response['data']) == 'string') {
69
                    $.fn.showError(response['data']);
70
                } else  {
71
                    $.each(response['data'], function( fieldname, errors ) {
72
                        $.fn.showFormErrorValidator('#form-slide-video-edit #' + fieldname, errors);
73
                    });
74
                }
75
            }
76
        }).fail(function( jqXHR, textStatus, errorThrown) {
77
            $.fn.showError(textStatus);
78
        }).always(function() {
79
            NProgress.done();
80
        });
81
        return false;
82
    }
83
 
84
 
85
    $('#form-filter #company_id').change(function(e) {
86
        e.preventDefault();
87
        $.fn.changeFilter();
88
 
89
    });
90
 
91
    $('#form-filter #function_id').change(function(e) {
92
        e.preventDefault();
93
        $.fn.changeFilter();
94
 
95
    });
96
 
97
 
98
    $('#form-filter #group_id').change(function(e) {
99
        e.preventDefault();
100
        $.fn.changeFilter();
101
 
102
    });
103
 
104
 
105
    $('#form-filter #institution_id').change(function(e) {
106
        e.preventDefault();
107
        $.fn.changeFilter();
108
 
109
    });
110
 
111
 
112
    $('#form-filter #program_id').change(function(e) {
113
        e.preventDefault();
114
        $.fn.changeFilter();
115
 
116
    });
117
 
118
 
119
    $('#form-filter #partner_id').change(function(e) {
120
        e.preventDefault();
121
        $.fn.changeFilter();
122
 
123
    });
124
 
125
 
126
    $('#form-filter #sector_id').change(function(e) {
127
        e.preventDefault();
128
        $.fn.changeFilter();
129
 
130
    });
131
 
132
 
133
    $('#form-filter #student_type_id').change(function(e) {
134
        e.preventDefault();
135
        $.fn.changeFilter();
136
 
137
    });
138
 
139
 
140
    $.fn.changeFilter();
141
 
142
});
143
JS;
144
$this->inlineScript()->captureEnd();
145
?>
146
 
16910 efrain 147
<div class="container">
148
	<div class="card" id="">
149
	 	<div class="card-header">
150
	 		<h6 class="card-title">LABEL_PROGRESS</h6>
151
	 	</div>
152
	 	<div class="card-body">
153
 
154
	 	<form name="form-filter" id="form-filter" action="<?php echo $routeReports ?>">
2 efrain 155
                		<?php
156
                    $fields = [
157
                        [
158
                            'label' => 'LABEL_COMPANIES',
159
                            'name' => 'company_id',
160
                        ],
161
                        [
162
                            'label' => 'LABEL_FUNCTIONS',
163
                            'name' => 'function_id',
164
                        ],
165
                        [
166
                            'label' => 'LABEL_GROUPS',
167
                            'name' => 'group_id',
168
                        ],
169
                        [
170
                            'label' => 'LABEL_INSTITUTIONS',
171
                            'name' => 'institution_id',
172
                        ],
173
                        [
174
                            'label' => 'LABEL_PROGRAMS',
175
                            'name' => 'program_id',
176
                        ],
177
                        [
178
                            'label' => 'LABEL_PARTNERS',
179
                            'name' => 'partner_id',
180
                        ],
181
                        [
182
                            'label' => 'LABEL_SECTORS',
183
                            'name' => 'sector_id',
184
                        ],
185
                        [
186
                            'label' => 'LABEL_STUDENT_TYPES',
187
                            'name' => 'student_type_id',
188
                        ],
189
                    ];
190
 
191
                    $column = 0;
192
                    foreach($fields as $field) :
193
                        if($column == 0) {
194
                            echo '<div class="row">';
195
 
196
                        }
197
                        $column++;
198
 
199
                    ?>
200
 
201
 
16910 efrain 202
                 	<div class="col-md-6 mt-3">
203
 
2 efrain 204
        					<?php
205
                            $element = $form->get( $field['name'] );
206
                            $element->setOptions(['label' => $field['label'] ]);
207
                            $element->setAttributes(['class' => 'form-control']);
208
 
209
                            echo $this->formLabel($element);
210
                            echo $this->formSelect($element);
211
                            ?>
16910 efrain 212
 
2 efrain 213
						</div>
214
						<?php
215
						if($column == 2) {
216
						    $column = 0;
217
						    echo '</div>';
218
						}
219
						?>
220
					<?php endforeach; ?>
221
						<?php if($column) {
222
						    echo '</div>';
223
						}
224
						?>
225
                		</form>
16910 efrain 226
 
227
 
228
	 		<div class="row">
229
	 	         <div class="col-12 mt-3">
230
 
231
	 	              		<table class="table table-responsive" id="tableStudents" >
2 efrain 232
                  			<thead>
233
                    			<tr>
187 efrain 234
                      				<th style="width: 40%"> LABEL_REPORTS_STUDENT</th>
235
									<th style="width: 20%">LABEL_CAPSULES</th>
236
       								<th style="width: 20%">LABEL_DATE</th>
237
                      				<th style="width: 12%">LABEL_REPORTS_PROGRESS</th>
2 efrain 238
                      				<th style="width: 8%" class="text-right">%</th>
239
                    			</tr>
240
                  			</thead>
241
                  			<tbody>
242
 
243
                 			</tbody>
244
                		</table>
16910 efrain 245
 
246
	 	         </div>
247
	 	     </div>
248
	 	</div>
2 efrain 249
 
16910 efrain 250
	</div>
251
</div>
252
 
253
 
2 efrain 254
 
16910 efrain 255
 
256
 
187 efrain 257
<script id="progressRowTemplate" type="text/x-jsrender">
258
    <tr>
259
        <td style="width: 40%">
260
            {{>first_name}} {{>last_name}}
261
            <br>
262
            {{>email}}
263
        </td>
264
        <td style="width: 20%">
265
            LABEL_REPORTS_CAPSULES_TOTAL : {{>total_capsules}}
266
            <br>
267
            LABEL_REPORTS_CAPSULES_COMPLETED : {{>total_capsules_completed}}
268
            <br>
269
            LABEL_REPORTS_CAPSULES_INCOMPLETED : {{>total_capsules_incomplete}}
270
 
271
        </td>
272
        <td style="width: 20%">
273
            LABEL_REPORTS_FIRST_DATE
274
            <br>
275
            {{>first_date}} {{>first_time}}
276
            <br>
277
            LABEL_REPORTS_LAST_DATE
278
            <br>
279
            {{>last_date}} {{>last_time}}
280
        </td>
281
        <td style="width: 12%">
282
            <div class="progress progress-xs progress-striped active">
283
                <div class="progress-bar bg-primary" style="width: {{>total_capsules_percentaje}}%"></div>
284
            </div>
285
        </td>
286
        <td style="width: 8%" class="text-right">{{>total_capsules_percentaje}}</td>
287
    </tr>
288
</script>
2 efrain 289
 
290
 
291
 
187 efrain 292
 
293
 
2 efrain 294
 
295