Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
15443 efrain 1
<?php
2
$t = strtotime("+3 days");
3
$startDate = date('d/m/Y', $t);
4
 
5
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
6
$currentUser    = $this->currentUserHelper();
7
$roleName       = $currentUser->getUserTypeId();
8
 
9
$routeDatatable = $this->url('performance-evaluation/evaluations');
10
$routeAdd = $this->url('performance-evaluation/evaluations/add');
11
 
12
$allowAdd = $acl->isAllowed($roleName, 'performance-evaluation/evaluations/add') ? 1 : 0;
13
$allowDelete = $acl->isAllowed($roleName, 'performance-evaluation/evaluations/delete') ? 1 : 0;
14
$allowReport =  $acl->isAllowed($roleName, 'performance-evaluation/evaluations/report') ? 1 : 0;
15
 
16822 efrain 16
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
17
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
15443 efrain 18
 
19
 
20
 
21
 
22
 
23
 
16929 efrain 24
 
25
 
26
 
16822 efrain 27
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
28
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
15443 efrain 29
 
16822 efrain 30
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
31
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
32
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
33
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.min.js'));
15443 efrain 34
 
35
 
36
 
16929 efrain 37
 
38
 
39
 
16822 efrain 40
$this->inlineScript()->appendFile($this->basePath('assets/vendors/moment/moment-with-locales.min.js'));
41
//$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css'));
42
//$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js'));
15443 efrain 43
 
16822 efrain 44
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-datepicker/js/bootstrap-datepicker.js'));
45
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-datepicker/js/bootstrap-datepicker.es.js'));
15443 efrain 46
 
47
 
16822 efrain 48
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-datepicker/css/bootstrap-datepicker.css'));
15443 efrain 49
 
16822 efrain 50
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2/css/select2.min.css'));
16918 efrain 51
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2-bootstrap5-theme/select2-bootstrap-5-theme.css'));
16822 efrain 52
$this->inlineScript()->appendFile($this->basePath('assets/vendors/select2/js/select2.min.js'));
53
 
15443 efrain 54
// JsRender //
16822 efrain 55
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jsrender/jsrender.min.js'));
15443 efrain 56
 
16822 efrain 57
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
58
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
15443 efrain 59
 
60
 
61
 
16822 efrain 62
 
63
 
15443 efrain 64
$this->inlineScript()->captureStart();
65
echo <<<JS
66
 
67
 
68
jQuery( document ).ready(function( $ ) {
69
 
70
    var allowAdd = $allowAdd;
71
    var allowDelete = $allowDelete
72
    var allowReport = $allowReport
73
 
74
 
75
 
76
    var validator = $('#form').validate({
77
        debug: true,
78
        onclick: false,
79
        onkeyup: false,
80
        onfocusout: false,
81
        ignore: [],
82
        rules: {
83
            'last_date': {
84
                required: true,
85
            },
86
            'form_id' :  {
87
                required: true,
88
            },
89
            'supervisor_id' : {
90
                required: true,
91
            },
92
            'employee_id' : {
93
                required: true,
94
            }
95
 
96
        },
97
        submitHandler: function(form)
98
        {
99
            NProgress.start();
100
            $.ajax({
101
                'dataType'  : 'json',
102
                'accept'    : 'application/json',
103
                'method'    : 'post',
104
                'url'       :  $('#form').attr('action'),
105
                'data'      :  $('#form').serialize(),
106
            }).done(function(response) {
107
                if(response['success']) {
108
                    $('#row-form').hide();
109
                    $('#row-listing').show();
110
                    $('#row-header').show();
111
                    gridTable.api().ajax.reload(null, false);
112
                } else {
113
                    validator.resetForm();
114
                    if(jQuery.type(response['data']) == 'string') {
115
                        $.fn.showError(response['data']);
116
                    } else  {
117
                        $.each(response['data'], function( fieldname, errors ) {
118
                            $.fn.showFormErrorValidator('#form #' + fieldname, errors);
119
                        });
120
                    }
121
                }
122
            }).fail(function( jqXHR, textStatus, errorThrown) {
123
                $.fn.showError(textStatus);
124
            }).always(function() {
125
                NProgress.done();
126
            });
127
            return false;
128
        },
129
        invalidHandler: function(form, validator) {
130
 
131
        }
132
    });
133
 
134
        var gridTable = $('#gridTable').dataTable( {
135
            'processing': true,
136
            'serverSide': true,
137
            'searching': true,
138
            'order': [[ 1, 'asc' ]],
139
            'ordering':  true,
140
            'ordenable' : true,
141
            'responsive': true,
142
            'select' : false,
143
                'paging': true,
144
            'pagingType': 'simple_numbers',
145
            'lengthMenu': [ [10, 25, 50, -1], [10, 25, 50, 'All'] ],
146
 
147
                'ajax': {
148
                        'url' : '$routeDatatable',
149
                        'type' : 'get',
150
                'data': function ( d ) {
151
 
152
 
153
                },
154
                'beforeSend': function (request) {
155
                  NProgress.start();
156
                },
157
                'dataFilter': function(response) {
158
                    var response = jQuery.parseJSON( response );
159
 
160
                    var json                = {};
161
                    json.recordsTotal       = 0;
162
                    json.recordsFiltered    = 0;
163
                    json.data               = [];
164
 
165
                    if(response.success) {
166
                                               json.recordsTotal       = response.data.total;
167
                        json.recordsFiltered    = response.data.total;
168
                        json.data               = response.data.items;
169
                    } else {
170
                        $.fn.showError(response.data)
171
                    }
172
 
173
                    return JSON.stringify( json );
174
                }
175
                },
176
            'language' : {
177
                'sProcessing':     'LABEL_DATATABLE_SPROCESSING',
178
                'sLengthMenu':     'LABEL_DATATABLE_SLENGTHMENU',
179
                'sZeroRecords':    'LABEL_DATATABLE_SZERORECORDS',
180
                'sEmptyTable':     'LABEL_DATATABLE_SEMPTYTABLE',
181
                'sInfo':           'LABEL_DATATABLE_SINFO',
182
                'sInfoEmpty':      'LABEL_DATATABLE_SINFOEMPTY',
183
                'sInfoFiltered':   'LABEL_DATATABLE_SINFOFILTERED',
184
                'sInfoPostFix':    '',
185
                'sSearch':         'LABEL_DATATABLE_SSEARCH',
186
                'sUrl':            '',
187
                'sInfoThousands':  ',',
188
                'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
189
                'oPaginate': {
190
                    'sFirst':    'LABEL_DATATABLE_SFIRST',
191
                    'sLast':     'LABEL_DATATABLE_SLAST',
192
                    'sNext':     'LABEL_DATATABLE_SNEXT',
193
                    'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
194
                },
195
                'oAria': {
196
                    'sSortAscending':  ': LABEL_DATATABLE_SSORTASCENDING',
197
                    'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
198
                },
199
            },
200
            'drawCallback': function( settings ) {
201
                NProgress.done();
16822 efrain 202
 
15443 efrain 203
 
204
 
205
            },
206
            'aoColumns': [
207
                { 'mDataProp': 'last_date' },
208
                { 'mDataProp': 'form' },
209
                { 'mDataProp': 'supervisor_first_name' },
210
                { 'mDataProp': 'employee_last_name' },
211
                { 'mDataProp': 'status' },
212
                { 'mDataProp': 'actions' },
213
            ],
214
            'columnDefs': [
215
                {
216
                    'targets': 0,
217
                    'render' : function ( data, type, row ) {
218
                        var s = data;
219
 
220
                        return s;
221
 
222
 
223
                     }
224
                },
225
                {
226
                    'targets': 1,
227
                    'render' : function ( data, type, row ) {
228
                        var s = row['form'];
229
 
230
                        if(allowReport && row['actions']['link_pdf_both']) {
231
                            s = s + '<br><button class="btn btn-default btn-pdf" data-href="' + row['actions']['link_pdf_both'] + '" data-toggle="tooltip" title="LABEL_PDF_BOTH"><i class="fa fa-pdf"></i> LABEL_PDF_BOTH </button>&nbsp;';
232
 
233
                        }
234
                        return s;
235
 
236
                     }
237
                },
238
                {
239
                    'targets': 2,
240
                    'render' : function ( data, type, row ) {
241
                        var s = row['supervisor_first_name'] + ' ' + row['supervisor_last_name'];
242
 
243
                        if(allowReport && row['actions']['link_pdf_supervisor']) {
244
                            s = s + '<br><button class="btn btn-default btn-pdf" data-href="' + row['actions']['link_pdf_supervisor'] + '" data-toggle="tooltip" title="LABEL_PDF_SUPERVISOR"><i class="fa fa-pdf"></i> LABEL_PDF_SUPERVISOR </button>&nbsp;';
245
 
246
                        }
247
 
248
                        return s;
249
 
250
 
251
                     }
252
                },
253
                {
254
                    'targets': 3,
255
                    'render' : function ( data, type, row ) {
256
                        var s = row['employee_first_name'] + ' ' + row['employee_last_name'];
257
 
258
                        if(allowReport && row['actions']['link_pdf_employee']) {
259
                            s = s + '<br><button class="btn btn-default btn-pdf" data-href="' + row['actions']['link_pdf_employee'] + '" data-toggle="tooltip" title="LABEL_PDF_EMPLOYEE"><i class="fa fa-pdf"></i> LABEL_PDF_EMPLOYEE </button>&nbsp;';
260
 
261
                        }
262
 
263
                        return s;
264
 
265
 
266
                     }
267
                },
268
                {
269
                    'targets': -1,
270
                    'orderable': false,
271
                    'render' : function ( data, type, row ) {
272
                        s = '';
273
 
274
 
275
                        if (allowDelete && data['link_delete']) {
276
                            s = s + '<button class="btn btn-danger btn-delete" data-href="' + data['link_delete'] + '" data-toggle="tooltip" title="LABEL_DELETE"><i class="fa fa-trash"></i> LABEL_DELETE </button>&nbsp;';
277
                        }
278
 
279
 
280
 
281
 
282
                        return s;
283
                    }
284
                }
285
              ],
286
        });
287
 
288
$('body').on('click', 'button.btn-pdf', function(e) {
289
        e.preventDefault();
290
        var action   = $(this).data('href');
291
 
292
 
293
        NProgress.start();
294
        $.ajax({
295
            'dataType'  : 'json',
296
            'method'    : 'get',
297
            'url'       :  action,
298
        }).done(function(response) {
299
            if(response['success']) {
300
                var anchor = window.document.createElement("a");
301
                anchor.href = 'data:application/octet-stream;charset=utf-8;base64,' + response['data']['content'] ;
302
                anchor.download = response['data']['basename'];
303
                document.body.appendChild(anchor);
304
                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
305
                document.body.removeChild(anchor);
306
            } else {
307
                $.fn.showError(response['data']);
308
            }
309
        }).fail(function( jqXHR, textStatus, errorThrown) {
310
            $.fn.showError(textStatus);
311
        }).always(function() {
312
            NProgress.done();
313
        });
314
 
315
 
316
 
317
    });
318
 
319
    $('.btn-evaluation-close').on("click", function(e){
320
        e.preventDefault();
321
 
322
        $('#row-form').hide();
323
        $('#row-listing').show();
324
        $('#row-header').show();
325
        return false;
326
    });
327
 
328
 
329
    $('body').on('click', 'button.btn-refresh', function(e) {
330
        e.preventDefault();
331
        gridTable.api().ajax.reload(null, false);
332
    });
333
 
334
 
335
    $('body').on('click', 'button.btn-cancel', function(e) {
336
        e.preventDefault();
337
        $('#row').show();
338
        $('#main').hide();
339
    });
340
 
341
    $('body').on('click', 'button.btn-add', function(e) {
342
        e.preventDefault();
343
 
344
 
345
        $('#form').attr('action','$routeAdd');
346
 
347
        $('#form #last_date').val('$startDate');
348
        $('#form #form_id').val('').trigger('change');
349
        $('#form #supervisor_id').val('').trigger('change');
350
        $('#form #employee_id').val('').trigger('change');
351
        validator.resetForm();
352
 
353
        $('#row-listing').hide();
354
        $('#row-header').hide();
355
        $('#row-form').show();
356
 
357
        return false;
358
    });
359
 
16822 efrain 360
 $('body').on('click', 'button.btn-delete', function(e) {
361
        e.preventDefault();
362
        var action = $(this).data('href');
15443 efrain 363
 
16822 efrain 364
 
365
          swal.fire({
366
            title: 'LABEL_ARE_YOU_SURE',
367
            icon: 'question',
368
            cancelButtonText: 'LABEL_NO',
369
            showCancelButton: true,
370
            confirmButtonText: 'LABEL_YES'
371
          }).then((result) => {
372
            if (result.isConfirmed) {
373
 
374
                    NProgress.start();
375
                    $.ajax({
376
                        'dataType'  : 'json',
377
                        'accept'    : 'application/json',
378
                        'method'    : 'post',
379
                        'url'       :  action,
380
                    }).done(function(response) {
381
                        if(response['success']) {
382
                            $.fn.showSuccess(response['data']);
383
                            gridTable.api().ajax.reload(null, false);
384
                        } else {
385
                            $.fn.showError(response['data']);
386
                        }
387
                    }).fail(function( jqXHR, textStatus, errorThrown) {
388
                        $.fn.showError(textStatus);
389
                    }).always(function() {
390
                        NProgress.done();
391
                    });
392
            }
393
       });
394
    });
395
 
396
 
15443 efrain 397
    $('#form #last_date').datepicker({
398
        language: 'es',
399
        format: 'dd/mm/yyyy',
400
        startDate: '$startDate',
401
 
402
    });
403
 
404
    $('#form #form_id').select2({
16918 efrain 405
        theme: 'bootstrap-5',
15443 efrain 406
        width: '100%',
407
    });
408
 
409
    $('#form #supervisor_id').select2({
16918 efrain 410
        theme: 'bootstrap-5',
15443 efrain 411
        width: '100%',
412
    });
413
 
414
    $('#form #employee_id').select2({
16918 efrain 415
        theme: 'bootstrap-5',
15443 efrain 416
        width: '100%',
417
    });
418
 
419
 
420
 
421
});
422
JS;
423
$this->inlineScript()->captureEnd();
424
?>
425
 
16846 efrain 426
<div class="container">
427
	<div class="card" id="row-listing">
428
 
429
	 	<div class="card-body">
430
	 		<h6 class="card-title">LABEL_EVALUATIONS</h6>
431
	 		<div class="row">
432
	 	         <div class="col-12 mt-3">
433
	 	         	<table id="gridTable" class="table   table-bordered">
15443 efrain 434
                            <thead>
435
                                <tr>
436
                                    <th style="width:15%">LABEL_LAST_DATE</th>
437
                                    <th style="width:35%">LABEL_FORM_NAME</th>
438
                                    <th style="width:35%">LABEL_SUPERVISOR</th>
439
                                    <th style="width:35%">LABEL_EMPLOYEE</th>
440
                                    <th style="width:15%">LABEL_STATUS</th>
441
                                    <th style="width:15%">LABEL_ACTIONS</th>
442
                                </tr>
443
                            </thead>
444
                            <tbody></tbody>
445
                        </table>
16846 efrain 446
	 	         </div>
447
	 	     </div>
448
	 	</div>
449
	 	<div class="card-footer text-right">
16992 efrain 450
 			<button type="button" class="btn btn-info btn-refresh"><i class="fa fa-sync"></i> LABEL_REFRESH </button>
16846 efrain 451
        	<?php if ($allowAdd) : ?>
452
        	<button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
453
         	<?php endif; ?>
454
	 	</div>
455
	</div>
16320 stevensc 456
 
16846 efrain 457
	<div class="card" id="row-form"  style="display: none">
458
		<?php
15443 efrain 459
                $form = $this->form;
460
                $form->setAttributes([
461
                    'method' => 'post',
462
                    'name' => 'form',
463
                    'action' => $routeAdd,
464
                    'id' => 'form'
465
                ]);
466
                $form->prepare();
467
                echo $this->form()->openTag($form);
16320 stevensc 468
 
15443 efrain 469
                ?>
16846 efrain 470
	 	<div class="card-body">
471
	 		<h6 class="card-title">LABEL_NEW_EVALUATION</h6>
472
	 		<div class="row">
473
	 	         <div class="col-12 mt-3">
474
 
15443 efrain 475
                            <?php
476
                            $element = $form->get('last_date');
477
                            $element->setOptions(['label' => 'LABEL_LAST_DATE']);
478
                            $element->setAttributes(['class' => 'form-control']);
479
                            echo $this->formLabel($element);
480
                            echo $this->formText($element);
481
                            ?>
16846 efrain 482
	 	         </div>
483
	 	     </div>
484
	 		<div class="row">
485
	 	         <div class="col-12 mt-3">
15443 efrain 486
                            <?php
487
                            $element = $form->get('form_id');
488
                            $element->setOptions(['label' => 'LABEL_FORM_NAME']);
489
                            $element->setAttributes(['class' => 'form-control']);
490
                            echo $this->formLabel($element);
491
                            echo $this->formSelect($element);
492
                            ?>
16846 efrain 493
	 	         </div>
494
	 	     </div>
495
	 		<div class="row">
496
	 	         <div class="col-12 mt-3">
15443 efrain 497
                            <?php
498
                            $element = $form->get('supervisor_id');
499
                            $element->setOptions(['label' => 'LABEL_SUPERVISOR']);
500
                            $element->setAttributes(['class' => 'form-control']);
501
                            echo $this->formLabel($element);
502
                            echo $this->formSelect($element);
503
                            ?>
16846 efrain 504
	 	         </div>
505
	 	     </div>
506
	 		<div class="row">
507
	 	         <div class="col-12 mt-3">
15443 efrain 508
                            <?php
509
                            $element = $form->get('employee_id');
510
                            $element->setOptions(['label' => 'LABEL_EMPLOYEE']);
511
                            $element->setAttributes(['class' => 'form-control']);
512
                            echo $this->formLabel($element);
513
                            echo $this->formSelect($element);
514
                            ?>
16846 efrain 515
	 	         </div>
516
	 	     </div>
15443 efrain 517
 
16846 efrain 518
 
519
	 	</div>
520
	 	<div class="card-footer text-right">
521
	 	     <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
522
     		<button type="button" class="btn btn-default btn-evaluation-close">LABEL_CANCEL</button>
523
	 	</div>
524
	 	<?php echo $this->form()->closeTag($form); ?>
525
	</div>
526
</div>
16320 stevensc 527
 
16846 efrain 528
 
529