Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16969 | Rev 16971 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
15461 efrain 1
<?php
2
$acl = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser = $this->currentUserHelper();
4
 
5
$roleName = $currentUser->getUserTypeId();
6
 
7
$routeDatatable     = $this->url('recruitment-and-selection/applications');
8
$routeUserByEmail   = $this->url('recruitment-and-selection/applications/user-by-email');
9
 
10
$allowAdd           = $acl->isAllowed($roleName, 'recruitment-and-selection/applications/add') ? 1 : 0;
11
$allowDelete        = $acl->isAllowed($roleName, 'recruitment-and-selection/applications/delete') ? 1 : 0;
12
$allowView          = $acl->isAllowed($roleName, 'recruitment-and-selection/applications/view') ? 1 : 0;
13
$allowUserByEmail   = $acl->isAllowed($roleName, 'recruitment-and-selection/applications/user-by-email') ? 1 : 0;
14
$allowLevel         = $acl->isAllowed($roleName, 'recruitment-and-selection/applications/level') ? 1 : 0;
15
$allowStatus        = $acl->isAllowed($roleName, 'recruitment-and-selection/applications/status') ? 1 : 0;
16
$allowComment       = $acl->isAllowed($roleName, 'recruitment-and-selection/applications/comment') ? 1 : 0;
17
 
18
$allowFileAdd       = $acl->isAllowed($roleName, 'recruitment-and-selection/applications/files/add') ? 1 : 0;
19
$allowInterviewAdd  = $acl->isAllowed($roleName, 'recruitment-and-selection/applications/interviews/add') ? 1 : 0;
20
 
21
 
22
 
16822 efrain 23
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
24
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
15461 efrain 25
 
26
 
27
 
16929 efrain 28
 
29
 
30
 
16822 efrain 31
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
32
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
15461 efrain 33
 
16822 efrain 34
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
35
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
36
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
37
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.min.js'));
15461 efrain 38
 
39
 
16822 efrain 40
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/css/fileinput.min.css'));
41
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fa/theme.css'));
15461 efrain 42
 
16843 efrain 43
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/piexif.js'));
44
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/sortable.js'));
16822 efrain 45
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/fileinput.js'));
46
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/locales/es.js'));
47
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/fa/theme.js'));
48
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fa/theme.js'));
15461 efrain 49
 
50
 
16822 efrain 51
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2/css/select2.min.css'));
16918 efrain 52
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2-bootstrap5-theme/select2-bootstrap-5-theme.css'));
15461 efrain 53
 
16822 efrain 54
$this->inlineScript()->appendFile($this->basePath('assets/vendors/select2/js/select2.full.min.js'));
15461 efrain 55
 
16822 efrain 56
$this->inlineScript()->appendFile($this->basePath('assets/vendors/moment/moment-with-locales.min.js'));
57
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css'));
58
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js'));
15461 efrain 59
 
60
 
16822 efrain 61
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
62
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
15461 efrain 63
 
64
 
16822 efrain 65
 
66
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-input-number/input-number-format.jquery.js'));
67
 
15461 efrain 68
// bootbox Alert //
69
 
16822 efrain 70
 
16969 efrain 71
$this->inlineScript()->appendFile($this->basePath('assets/vendors/ckeditor/ckeditor.js'));
72
 
15461 efrain 73
// JsRender //
16822 efrain 74
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jsrender/jsrender.min.js'));
15461 efrain 75
 
76
 
77
$this->inlineScript()->captureStart();
78
echo <<<JS
79
jQuery(document).ready(function($) {
80
 
81
    var allowDelete   = $allowDelete  ;
82
    var allowView   = $allowView  ;
83
 
16929 efrain 84
 
15461 efrain 85
    var gridTable = $('#gridTable').dataTable({
86
        'processing': true,
87
        'serverSide': true,
88
        'searching': true,
89
        'order': [
90
            [0, 'asc']
91
        ],
92
        'ordering': true,
93
        'ordenable': true,
94
        'responsive': true,
95
        'select': false,
96
        'paging': true,
97
        'pagingType': 'simple_numbers',
98
        'ajax': {
99
            'url': '$routeDatatable',
100
            'type': 'get',
101
            'data': function(d) {
102
                d.vacancy_id = $('#form-filter #vacancy_id').val();
103
            },
104
            'beforeSend': function(request) {
105
                NProgress.start();
106
            },
107
            'dataFilter': function(response) {
108
                var response = jQuery.parseJSON(response);
109
                var json = {};
110
                json.recordsTotal = 0;
111
                json.recordsFiltered = 0;
112
                json.data = [];
113
                if (response.success) {
114
 
115
 
116
                    $('#form-add').attr('action', response.data.link_add);
117
                    if(response.data.link_add.length == 0) {
118
                        $('btn.btn-add').hide();
119
                    } else {
120
                        $('btn.btn-add').show();
121
                    }
122
 
123
 
124
                    json.recordsTotal = response.data.total;
125
                    json.recordsFiltered = response.data.total;
126
                    json.data = response.data.items;
127
                } else {
128
                    $('btn.btn-add').hide();
129
                    $.fn.showError(response.data)
130
                }
131
                return JSON.stringify(json);
132
            }
133
        },
134
        'language': {
135
            'sProcessing': 'LABEL_DATATABLE_SPROCESSING',
136
            'sLengthMenu': 'LABEL_DATATABLE_SLENGTHMENU',
137
            'sZeroRecords': 'LABEL_DATATABLE_SZERORECORDS',
138
            'sEmptyTable': 'LABEL_DATATABLE_SEMPTYTABLE',
139
            'sInfo': 'LABEL_DATATABLE_SINFO',
140
            'sInfoEmpty': 'LABEL_DATATABLE_SINFOEMPTY',
141
            'sInfoFiltered': 'LABEL_DATATABLE_SINFOFILTERED',
142
            'sInfoPostFix': '',
143
            'sSearch': 'LABEL_DATATABLE_SSEARCH',
144
            'sUrl': '',
145
            'sInfoThousands': ',',
146
            'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
147
            'oPaginate': {
148
                'sFirst': 'LABEL_DATATABLE_SFIRST',
149
                'sLast': 'LABEL_DATATABLE_SLAST',
150
                'sNext': 'LABEL_DATATABLE_SNEXT',
151
                'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
152
            },
153
            'oAria': {
154
                'sSortAscending': ': LABEL_DATATABLE_SSORTASCENDING',
155
                'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
156
            },
157
        },
158
        'drawCallback': function(settings) {
159
            NProgress.done();
16822 efrain 160
 
15461 efrain 161
        },
162
         'aoColumns': [
163
                { 'mDataProp': 'first_name' },
164
                { 'mDataProp': 'last_name' },
165
                { 'mDataProp': 'email' },
166
                { 'mDataProp': 'status' },
167
                { 'mDataProp': 'level' },
168
                { 'mDataProp': 'actions' },
169
            ],
170
        'columnDefs': [
171
            {
172
                'targets': -1,
173
                'orderable': false,
174
                'render': function(data, type, row) {
175
                    s = '';
176
                    if (allowView) {
16932 efrain 177
                        s = s + '<button class="btn btn-primary btn-view" data-href="' + data['link_view'] + '" data-toggle="tooltip" title="LABEL_VIEW"><i class="fa fa-external-link-alt"></i> LABEL_VIEW </button>&nbsp;';
15461 efrain 178
                    }
179
                    if (allowDelete) {
180
                        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;';
181
                    }
182
 
183
                    return s;
184
                }
185
            }
186
        ],
187
    });
188
 
189
    var validatorAdd = $('#form-add').validate({
190
            debug: true,
191
            onclick: false,
192
            onkeyup: false,
193
            ignore: [],
194
            rules: {
195
                'email': {
196
                    required: true,
197
                    maxlength: 250,
198
                    email: true,
199
                },
200
                'first_name': {
201
                    required: true,
202
                    maxlength: 128,
203
                },
204
                'last_name': {
205
                    required: true,
206
                    maxlength: 128,
207
                },
208
            },
209
            submitHandler: function(form)
210
            {
211
               $.ajax({
212
                    'dataType'  : 'json',
213
                    'accept'    : 'application/json',
214
                    'method'    : 'post',
215
                    'url'       :  $('#form-add').attr('action'),
216
                    'data'      :  $('#form-add').serialize()
217
                }).done(function(response) {
218
                    NProgress.start();
219
                    if(response['success']) {
220
                        $.fn.showSuccess(response['data']);
221
 
222
                        $('#modal-add-application').modal('hide');
223
 
224
 
225
                        gridTable.api().ajax.reload(null, false);
226
                    } else {
227
                        validatorAdd.resetForm();
228
                        if(jQuery.type(response['data']) == 'string') {
229
                            $.fn.showError(response['data']);
230
                        } else  {
231
                            $.each(response['data'], function( fieldname, errors ) {
232
                                $.fn.showFormErrorValidator('#form-add #' + fieldname, errors);
233
                            });
234
                        }
235
                    }
236
                }).fail(function( jqXHR, textStatus, errorThrown) {
237
                    $.fn.showError(textStatus);
238
                }).always(function() {
239
                    NProgress.done();
240
 
241
                });
242
                return false;
243
 
244
            },
245
            invalidHandler: function(form, validator) {
246
 
247
                return false;
248
            }
249
        });
250
 
251
 
252
 
253
 
254
    var validatorFile = $('#form-file').validate({
255
            debug: true,
256
            onclick: false,
257
            onkeyup: false,
258
            ignore: [],
259
            rules: {
260
 
261
                'name': {
262
                    required: true,
263
                    maxlength: 128,
264
                },
265
                'file': {
266
                    required: true,
267
                    extension: 'pdf|doc|docx',
268
 
269
                },
270
            },
271
            submitHandler: function(form)
272
            {
273
                var formdata = false;
274
                if (window.FormData){
275
                    formdata = new FormData(form); //form[0]);
276
                }
277
 
278
 
279
               $.ajax({
280
                    'dataType'  : 'json',
281
                    'accept'    : 'application/json',
282
                    'method'    : 'post',
283
                    'url'       :  $('#form-file').attr('action'),
284
                    'data'      :  formdata ? formdata : $('#form-file').serialize(),
285
                    'processData' : false,
286
                    'contentType' : false,
287
                }).done(function(response) {
288
                    NProgress.start();
289
                    if(response['success']) {
290
                        $.fn.showSuccess(response['data']['message']);
291
                        $('#fileTable tbody').html(
292
                            $('#fileTemplate').render( response['data']['files'] )
293
                        );
294
 
295
                        $('#modal-add-file').modal('hide');
296
 
297
 
298
                    } else {
299
                        validatorFile.resetForm();
300
                        if(jQuery.type(response['data']) == 'string') {
301
                            $.fn.showError(response['data']);
302
                        } else  {
303
                            $.each(response['data'], function( fieldname, errors ) {
304
                                $.fn.showFormErrorValidator('#form-file #' + fieldname, errors);
305
                            });
306
                        }
307
                    }
308
                }).fail(function( jqXHR, textStatus, errorThrown) {
309
                    $.fn.showError(textStatus);
310
                }).always(function() {
311
                    NProgress.done();
312
 
313
                });
314
                return false;
315
 
316
            },
317
            invalidHandler: function(form, validator) {
318
 
319
                return false;
320
            }
321
        });
322
 
323
       var validatorStatus = $('#form-status').validate({
324
            debug: true,
325
            onclick: false,
326
            onkeyup: false,
327
            ignore: [],
328
            rules: {
329
                'status': {
330
                    required: true,
331
                },
332
            },
333
            submitHandler: function(form)
334
            {
335
 
336
               $.ajax({
337
                    'dataType'  : 'json',
338
                    'accept'    : 'application/json',
339
                    'method'    : 'post',
340
                    'url'       :  $('#form-status').attr('action'),
341
                    'data'      :  $('#form-status').serialize(),
342
 
343
                }).done(function(response) {
344
                    NProgress.start();
345
                    if(response['success']) {
346
                        $.fn.showSuccess(response['data']['message']);
347
 
348
                        $('#view_application_status').html(response['data']['status']);
349
                        $('#modal-status').modal('hide');
350
 
351
 
352
                    } else {
353
                        validatorFile.resetForm();
354
                        if(jQuery.type(response['data']) == 'string') {
355
                            $.fn.showError(response['data']);
356
                        } else  {
357
                            $.each(response['data'], function( fieldname, errors ) {
358
                                $.fn.showFormErrorValidator('#form-status #' + fieldname, errors);
359
                            });
360
                        }
361
                    }
362
                }).fail(function( jqXHR, textStatus, errorThrown) {
363
                    $.fn.showError(textStatus);
364
                }).always(function() {
365
                    NProgress.done();
366
 
367
                });
368
                return false;
369
 
370
            },
371
            invalidHandler: function(form, validator) {
372
 
373
                return false;
374
            }
375
        });
376
 
377
       var validatorLevel = $('#form-level').validate({
378
            debug: true,
379
            onclick: false,
380
            onkeyup: false,
381
            ignore: [],
382
            rules: {
383
                'level': {
384
                    required: true,
385
                },
386
            },
387
            submitHandler: function(form)
388
            {
389
 
390
               $.ajax({
391
                    'dataType'  : 'json',
392
                    'accept'    : 'application/json',
393
                    'method'    : 'post',
394
                    'url'       :  $('#form-level').attr('action'),
395
                    'data'      :  $('#form-level').serialize(),
396
 
397
                }).done(function(response) {
398
                    NProgress.start();
399
                    if(response['success']) {
400
                        $.fn.showSuccess(response['data']['message']);
401
 
402
                        $('#view_application_level').html(response['data']['level']);
403
                        $('#modal-level').modal('hide');
404
 
405
 
406
                    } else {
407
                        validatorFile.resetForm();
408
                        if(jQuery.type(response['data']) == 'string') {
409
                            $.fn.showError(response['data']);
410
                        } else  {
411
                            $.each(response['data'], function( fieldname, errors ) {
412
                                $.fn.showFormErrorValidator('#form-level #' + fieldname, errors);
413
                            });
414
                        }
415
                    }
416
                }).fail(function( jqXHR, textStatus, errorThrown) {
417
                    $.fn.showError(textStatus);
418
                }).always(function() {
419
                    NProgress.done();
420
 
421
                });
422
                return false;
423
 
424
            },
425
            invalidHandler: function(form, validator) {
426
 
427
                return false;
428
            }
429
        });
430
 
431
       var validatorComment = $('#form-comment').validate({
432
            debug: true,
433
            onclick: false,
434
            onkeyup: false,
435
            ignore: [],
436
            rules: {
437
                'points': {
438
                    required: true,
439
                    min: 0,
440
                    max: 100,
441
                },
442
                'comment': {
443
                    updateCkeditor:function() {
444
                            CKEDITOR.instances.comment.updateElement();
445
                    },
446
                    required: false,
447
                },
448
 
449
            },
450
            submitHandler: function(form)
451
            {
452
 
453
               $.ajax({
454
                    'dataType'  : 'json',
455
                    'accept'    : 'application/json',
456
                    'method'    : 'post',
457
                    'url'       :  $('#form-comment').attr('action'),
458
                    'data'      :  $('#form-comment').serialize(),
459
 
460
                }).done(function(response) {
461
                    NProgress.start();
462
                    if(response['success']) {
463
                        $.fn.showSuccess(response['data']['message']);
464
 
465
 
466
                        $('#view_application_points').html(response['data']['points']);
467
                        $('#view_application_comment').html(response['data']['comment']);
468
 
469
                        $('#modal-comment').modal('hide');
470
 
471
 
472
                    } else {
473
                        validatorFile.resetForm();
474
                        if(jQuery.type(response['data']) == 'string') {
475
                            $.fn.showError(response['data']);
476
                        } else  {
477
                            $.each(response['data'], function( fieldname, errors ) {
478
                                $.fn.showFormErrorValidator('#form-comment #' + fieldname, errors);
479
                            });
480
                        }
481
                    }
482
                }).fail(function( jqXHR, textStatus, errorThrown) {
483
                    $.fn.showError(textStatus);
484
                }).always(function() {
485
                    NProgress.done();
486
 
487
                });
488
                return false;
489
 
490
            },
491
            invalidHandler: function(form, validator) {
492
 
493
                return false;
494
            }
495
        });
496
 
497
    var validatorInterview = $('#form-interview').validate({
498
            debug: true,
499
            onclick: false,
500
            onkeyup: false,
501
            ignore: [],
502
            rules: {
503
                'user_id': {
504
                    required: true,
505
                },
506
                'type': {
507
                    required: true,
508
                },
509
                'last_date': {
510
                    required: true,
511
                },
512
 
513
 
514
            },
515
            submitHandler: function(form)
516
            {
517
 
518
               $.ajax({
519
                    'dataType'  : 'json',
520
                    'accept'    : 'application/json',
521
                    'method'    : 'post',
522
                    'url'       :  $('#form-interview').attr('action'),
523
                    'data'      :  $('#form-interview').serialize(),
524
 
525
                }).done(function(response) {
526
                    NProgress.start();
527
                    if(response['success']) {
528
                        $.fn.showSuccess(response['data']['message']);
529
 
530
                        $('#interviewTable tbody').html(
531
                            $('#interviewTemplate').render( response['data']['interviews'] )
532
                        );
533
 
534
 
535
                        $('#modal-interview').modal('hide');
536
 
537
 
538
                    } else {
539
                        validatorInterview.resetForm();
540
                        if(jQuery.type(response['data']) == 'string') {
541
                            $.fn.showError(response['data']);
542
                        } else  {
543
                            $.each(response['data'], function( fieldname, errors ) {
544
                                $.fn.showFormErrorValidator('#form-interview #' + fieldname, errors);
545
                            });
546
                        }
547
                    }
548
                }).fail(function( jqXHR, textStatus, errorThrown) {
549
                    $.fn.showError(textStatus);
550
                }).always(function() {
551
                    NProgress.done();
552
 
553
                });
554
                return false;
555
 
556
            },
557
            invalidHandler: function(form, validator) {
558
 
559
                return false;
560
            }
561
        });
562
 
563
 
16970 efrain 564
        $('#form-filter #vacancy_id').change(function(e) {
565
     e.preventDefault();
566
        gridTable.api().ajax.reload(null, false);
567
 
568
        });
569
 
15461 efrain 570
 
571
    $('body').on('click', 'button.btn-refresh', function (e) {
572
        e.preventDefault();
573
        gridTable.api().ajax.reload(null, false);
574
 
575
    });
576
 
16822 efrain 577
 $('body').on('click', 'button.btn-delete', function(e) {
578
        e.preventDefault();
579
        var action = $(this).data('href');
15461 efrain 580
 
581
 
16822 efrain 582
          swal.fire({
583
            title: 'LABEL_ARE_YOU_SURE',
584
            icon: 'question',
585
            cancelButtonText: 'LABEL_NO',
586
            showCancelButton: true,
587
            confirmButtonText: 'LABEL_YES'
588
          }).then((result) => {
589
            if (result.isConfirmed) {
15461 efrain 590
 
16822 efrain 591
                    NProgress.start();
592
                    $.ajax({
593
                        'dataType'  : 'json',
594
                        'accept'    : 'application/json',
595
                        'method'    : 'post',
596
                        'url'       :  action,
597
                    }).done(function(response) {
598
                        if(response['success']) {
599
                            $.fn.showSuccess(response['data']);
600
                            gridTable.api().ajax.reload(null, false);
601
                        } else {
602
                            $.fn.showError(response['data']);
603
                        }
604
                    }).fail(function( jqXHR, textStatus, errorThrown) {
605
                        $.fn.showError(textStatus);
606
                    }).always(function() {
607
                        NProgress.done();
608
                    });
609
            }
610
       });
611
    });
15461 efrain 612
 
16822 efrain 613
 
614
 
16845 efrain 615
    $('body').on('click', 'span.btn-search-email', function(e) {
15461 efrain 616
        e.preventDefault();
617
        NProgress.start();
618
 
619
 
620
        $.ajax({
621
            'dataType'  : 'json',
622
            'accept'    : 'application/json',
623
            'method'    : 'get',
624
            'url'       : '$routeUserByEmail',
625
            'data'      : {
626
                email:  $('#form-add #email').val()
627
            }
628
        }).done(function(response) {
629
 
630
            NProgress.done();
631
            if(response['success']) {
632
 
633
                $('#form-add #user_id').val(response['data']['uuid']);
634
                $('#form-add #first_name').val(response['data']['first_name']);
635
                $('#form-add #last_name').val(response['data']['last_name']);
636
 
637
 
638
            } else {
639
                $('#form-add #user_id').val('');
640
                $('#form-add #first_name').val('');
641
                $('#form-add #last_name').val('');
642
 
643
                $.fn.showError(response['data']);
644
            }
645
        }).fail(function( jqXHR, textStatus, errorThrown) {
646
        $.fn.showError(textStatus);
647
        }).always(function() {
648
            NProgress.done();
649
        });
650
        return false;
651
    });
652
 
653
 
654
 
655
 
656
 
657
 
658
 
659
    $('body').on('click', 'button.btn-add', function (e) {
660
        e.preventDefault();
661
 
662
        $('#form-add #user_id').val('');
663
        $('#form-add #email').val('');
664
        $('#form-add #first_name').val('');
665
        $('#form-add #last_name').val('');
666
        validatorAdd.resetForm();
667
 
668
        $('#modal-add-application').modal('show');
669
 
670
 
671
 
672
 
673
 
674
    });
675
 
676
    $('body').on('click', 'button.btn-cancel-modal-interview', function(e) {
677
        e.preventDefault();
678
 
679
 
680
        $('#modal-interview').modal('hide');
681
 
682
    });
683
 
684
 
685
    $('body').on('click', 'button.btn-cancel-modal-application', function(e) {
686
        e.preventDefault();
687
 
688
 
689
        $('#modal-add-application').modal('hide');
690
 
691
    });
692
 
693
 
694
    $('body').on('click', 'button.btn-close-application', function(e) {
695
        e.preventDefault();
696
 
697
        $('#row-view').hide();
698
        $('#row-list').show();
699
    });
700
 
701
    $('body').on('click', 'button.btn-view', function(e) {
702
        e.preventDefault();
703
         NProgress.start();
704
 
705
 
706
        $.ajax({
707
            'dataType'  : 'json',
708
            'accept'    : 'application/json',
709
            'method'    : 'get',
710
            'url'       : $(this).data('href'),
711
        }).done(function(response) {
712
           NProgress.done();
713
 
714
            $('#row-list').hide();
715
 
716
            $('#view_title_name').html(response['data']['vacancy']['name']);
717
            $('#view_title_last_date').html(response['data']['vacancy']['last_date']);
718
 
719
 
720
            $('#view_vacancy_name').html(response['data']['vacancy']['name']);
721
            $('#view_vacancy_last_date').html(response['data']['vacancy']['last_date']);
722
            $('#view_vacancy_job_description').html(response['data']['vacancy']['job_description']);
723
            $('#view_vacancy_industry').html(response['data']['vacancy']['industry']);
724
            $('#view_vacancy_job_category').html(response['data']['vacancy']['job_category']);
725
 
726
            $('#view_candidate_first_name').html(response['data']['application']['first_name']);
727
            $('#view_candidate_last_name').html(response['data']['application']['last_name']);
728
            $('#view_vacancy_email').html(response['data']['application']['email']);
729
 
730
            $('#view_application_level').html(response['data']['application']['level']);
731
            $('#view_application_status').html(response['data']['application']['status']);
732
            $('#view_application_points').html(response['data']['application']['points']);
733
            $('#view_application_comment').html(response['data']['application']['comment']);
734
 
735
 
736
            $('#form-level').attr('action', response['data']['link_level']);
737
            $('#form-status').attr('action', response['data']['link_status']);
738
            $('#form-comment').attr('action', response['data']['link_comment']);
739
 
740
 
741
            $('#form-file').attr('action', response['data']['link_files_add']);
742
            $('#fileTable').data('route', response['data']['link_files']);
743
 
744
 
745
            $('#form-interview').attr('action', response['data']['link_interviews_add']);
746
            $('#interviewTable').data('route', response['data']['link_interviews']);
747
 
748
 
749
            $('#fileTable tbody').html(
750
               $('#fileTemplate').render( response['data']['files'] )
751
            );
752
 
753
            $('#interviewTable tbody').html(
754
               $('#interviewTemplate').render( response['data']['interviews'] )
755
            );
756
 
757
 
758
 
759
            $('#row-view').show();
760
 
761
 
762
        }).fail(function( jqXHR, textStatus, errorThrown) {
763
            $.fn.showError(textStatus);
764
        }).always(function() {
765
            NProgress.done();
766
        });
767
        return false;
768
    });
769
 
770
    $('body').on('click', 'button.btn-delete-file', function(e) {
771
        e.preventDefault();
772
        var action = $(this).data('href');
773
 
774
        $.ajax({
775
            'dataType': 'json',
776
            'accept': 'application/json',
777
            'method': 'post',
778
            'url': action,
779
        }).done(function(response) {
780
            if (response['success']) {
781
                $.fn.showSuccess(response['data']['message']);
782
                $('#fileTable tbody').html(
783
                    $('#fileTemplate').render( response['data']['files'] )
784
                );
785
            } else {
786
                $.fn.showError(response['data']);
787
            }
788
        }).fail(function(jqXHR, textStatus, errorThrown) {
789
            $.fn.showError(textStatus);
790
        }).always(function() {
791
            NProgress.done();
792
        });
793
 
794
    });
795
 
796
 
797
    $('body').on('click', 'button.btn-delete-interview', function(e) {
798
        e.preventDefault();
799
        var action = $(this).data('href');
800
 
801
        $.ajax({
802
            'dataType': 'json',
803
            'accept': 'application/json',
804
            'method': 'post',
805
            'url': action,
806
        }).done(function(response) {
807
            if (response['success']) {
808
                $.fn.showSuccess(response['data']['message']);
809
                $('#interviewTable tbody').html(
15462 efrain 810
                    $('#interviewTemplate').render( response['data']['interviews'] )
15461 efrain 811
                );
812
            } else {
813
                $.fn.showError(response['data']);
814
            }
815
        }).fail(function(jqXHR, textStatus, errorThrown) {
816
            $.fn.showError(textStatus);
817
        }).always(function() {
818
            NProgress.done();
819
        });
820
 
821
    });
822
 
823
    $('body').on('click', 'button.btn-edit-interview', function(e) {
824
        e.preventDefault();
825
        var action = $(this).data('href');
826
 
827
        $.ajax({
828
            'dataType': 'json',
829
            'accept': 'application/json',
830
            'method': 'get',
831
            'url': action,
832
        }).done(function(response) {
833
            if (response['success']) {
834
 
835
                $('#form-interview').attr('action',action);
836
                $('#form-interview #user_id').val(response['data']['user_id']).trigger('change');
837
                $('#form-interview #type').val(response['data']['type']).trigger('change');
838
                $('#form-interview #last_date').val(response['data']['last_date']);
839
 
840
                $('#modal-interview').modal('show');
841
 
842
 
843
            } else {
844
                $.fn.showError(response['data']);
845
            }
846
        }).fail(function(jqXHR, textStatus, errorThrown) {
847
            $.fn.showError(textStatus);
848
        }).always(function() {
849
            NProgress.done();
850
        });
851
 
852
    });
853
 
854
 
855
    $('body').on('click', 'button.btn-add-interview', function(e) {
856
        e.preventDefault();
857
        var action = $(this).data('href');
858
 
859
        $('#form-interview').attr('action',action);
860
        $('#form-interview #user_id').val('').trigger('change');
861
        $('#form-interview #type').val('').trigger('change');
862
        $('#form-interview #last_date').val('');
863
        $('#modal-interview').modal('show');
864
 
865
 
866
    });
867
 
868
 
869
 
870
    $('body').on('click', 'button.btn-change-level', function(e) {
871
        e.preventDefault();
872
        var action = $('#form-level').attr('action');
873
 
874
        $.ajax({
875
            'dataType': 'json',
876
            'accept': 'application/json',
877
            'method': 'get',
878
            'url': action,
879
        }).done(function(response) {
880
            if (response['success']) {
881
 
882
                $('#form-level #level').val(response['data']['level']).trigger('change');
883
                $('#modal-level').modal('show');
884
 
885
 
886
            } else {
887
                $.fn.showError(response['data']);
888
            }
889
        }).fail(function(jqXHR, textStatus, errorThrown) {
890
            $.fn.showError(textStatus);
891
        }).always(function() {
892
            NProgress.done();
893
        });
894
 
895
    });
896
 
897
 
898
    $('body').on('click', 'button.btn-change-status', function(e) {
899
        e.preventDefault();
900
        var action = $('#form-status').attr('action');
901
 
902
        $.ajax({
903
            'dataType': 'json',
904
            'accept': 'application/json',
905
            'method': 'get',
906
            'url': action,
907
        }).done(function(response) {
908
            if (response['success']) {
909
 
910
                $('#form-status #status').val(response['data']['status']).trigger('change');
911
                $('#modal-status').modal('show');
912
 
913
 
914
            } else {
915
                $.fn.showError(response['data']);
916
            }
917
        }).fail(function(jqXHR, textStatus, errorThrown) {
918
            $.fn.showError(textStatus);
919
        }).always(function() {
920
            NProgress.done();
921
        });
922
 
923
    });
924
 
925
 
926
    $('body').on('click', 'button.btn-change-comment', function(e) {
927
        e.preventDefault();
928
        var action = $('#form-comment').attr('action');
929
 
930
        $.ajax({
931
            'dataType': 'json',
932
            'accept': 'application/json',
933
            'method': 'get',
934
            'url': action,
935
        }).done(function(response) {
936
            if (response['success']) {
937
 
938
 
939
                CKEDITOR.instances.comment.setData(response['data']['comment']);
940
                $('#form-comment #points').val(response['data']['points']);
941
                $('#modal-comment').modal('show');
942
 
943
 
944
            } else {
945
                $.fn.showError(response['data']);
946
            }
947
        }).fail(function(jqXHR, textStatus, errorThrown) {
948
            $.fn.showError(textStatus);
949
        }).always(function() {
950
            NProgress.done();
951
        });
952
 
953
    });
954
 
955
 
956
    $('#form-file #file').fileinput({
957
        theme: 'fa',
958
        language: 'es',
959
        showUpload: false,
960
        dropZoneEnabled: false,
961
        maxFileCount: 1,
962
        allowedFileExtensions: ['pdf','doc','docx'],
963
        msgPlaceholder: '',
964
    });
965
 
966
 
967
    $('body').on('click', 'button.btn-add-file', function(e) {
968
        e.preventDefault();
969
 
970
 
971
        $('#form-file #name').val('');
972
        $('#form-file #file').fileinput('reset');
973
        $('#form-file #file').val('');
974
 
975
 
976
        validatorFile.resetForm();
977
        $('#modal-add-file').modal('show');
978
    });
979
 
980
    $('body').on('click', 'button.btn-cancel-modal-file', function(e) {
981
        e.preventDefault();
982
 
983
 
984
         $('#modal-add-file').modal('hide');
985
    });
986
 
987
    $('body').on('click', 'button.btn-cancel-modal-comment', function(e) {
988
        e.preventDefault();
989
 
990
 
991
         $('#modal-comment').modal('hide');
992
    });
993
 
994
    $('body').on('click', 'button.btn-cancel-modal-level', function(e) {
995
        e.preventDefault();
996
 
997
 
998
         $('#modal-level').modal('hide');
999
    });
1000
 
1001
    $('body').on('click', 'button.btn-cancel-modal-status', function(e) {
1002
        e.preventDefault();
1003
 
1004
 
1005
         $('#modal-status').modal('hide');
1006
    });
1007
 
15464 efrain 1008
    $('body').on('click', 'button.btn-view-file', function(e) {
1009
        e.preventDefault();
1010
        var action   = $(this).data('href');
15461 efrain 1011
 
15464 efrain 1012
 
1013
        NProgress.start();
1014
        $.ajax({
1015
            'dataType'  : 'json',
1016
            'method'    : 'get',
1017
            'url'       :  action,
1018
        }).done(function(response) {
1019
            if(response['success']) {
1020
                var anchor = window.document.createElement("a");
1021
                anchor.href = 'data:application/octet-stream;charset=utf-8;base64,' + response['data']['content'] ;
1022
                anchor.download = response['data']['basename'];
1023
                document.body.appendChild(anchor);
1024
                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
1025
                document.body.removeChild(anchor);
1026
            } else {
1027
                $.fn.showError(response['data']);
1028
            }
1029
        }).fail(function( jqXHR, textStatus, errorThrown) {
1030
            $.fn.showError(textStatus);
1031
        }).always(function() {
1032
            NProgress.done();
1033
        });
1034
    });
1035
 
15461 efrain 1036
 
1037
    $('body').on('click', 'button.btn-report-interview', function(e) {
1038
        e.preventDefault();
1039
        var action   = $(this).data('href');
1040
 
1041
 
1042
        NProgress.start();
1043
        $.ajax({
1044
            'dataType'  : 'json',
1045
            'method'    : 'get',
1046
            'url'       :  action,
1047
        }).done(function(response) {
1048
            if(response['success']) {
1049
                var anchor = window.document.createElement("a");
1050
                anchor.href = 'data:application/octet-stream;charset=utf-8;base64,' + response['data']['content'] ;
1051
                anchor.download = response['data']['basename'];
1052
                document.body.appendChild(anchor);
1053
                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
1054
                document.body.removeChild(anchor);
1055
            } else {
1056
                $.fn.showError(response['data']);
1057
            }
1058
        }).fail(function( jqXHR, textStatus, errorThrown) {
1059
            $.fn.showError(textStatus);
1060
        }).always(function() {
1061
            NProgress.done();
1062
        });
1063
    });
1064
 
1065
    $('#form-level #level').select2({
16918 efrain 1066
        theme: 'bootstrap-5',
15461 efrain 1067
        width: '100%',
16941 stevensc 1068
        dropdownParent: $('#modal-level'),
15461 efrain 1069
    });
1070
 
1071
    $('#form-status #status').select2({
16918 efrain 1072
        theme: 'bootstrap-5',
15461 efrain 1073
        width: '100%',
16941 stevensc 1074
        dropdownParent: $('#modal-status'),
15461 efrain 1075
    });
1076
 
1077
 
1078
    $('#form-interview #type').select2({
16918 efrain 1079
        theme: 'bootstrap-5',
15461 efrain 1080
        width: '100%',
16941 stevensc 1081
        dropdownParent: $('#modal-interview'),
15461 efrain 1082
    });
1083
 
16941 stevensc 1084
 
15461 efrain 1085
    $('#form-interview #user_id').select2({
16918 efrain 1086
        theme: 'bootstrap-5',
15461 efrain 1087
        width: '100%',
16941 stevensc 1088
        dropdownParent: $('#modal-interview'),
15461 efrain 1089
    });
16941 stevensc 1090
 
15461 efrain 1091
    $('#form-interview #last_date').datetimepicker({
1092
        locale: 'es',
1093
        format: 'DD/MM/YYYY'
1094
    });
1095
 
1096
 
1097
 
1098
    $('#form-comment #points').inputNumberFormat({decimal: 0});
1099
 
1100
 
1101
    CKEDITOR.replace('comment');
1102
 
1103
 
1104
  });
1105
JS;
1106
 
1107
$this->inlineScript()->captureEnd();
1108
 
1109
?>
1110
<!-- Content Header (Page header) -->
1111
 
16845 efrain 1112
<div class="container">
16941 stevensc 1113
    <div class="card" id="row-list">
1114
        <div class="card-header">
16958 efrain 1115
            <h6 class="card-title">LABEL_APPLICATIONS_TO_NEW_JOBS</h6>
16941 stevensc 1116
        </div>
15461 efrain 1117
 
16941 stevensc 1118
 
1119
        <div class="card-body">
1120
            <div class="row">
1121
                <div class="col-12 mt-3">
1122
                    <?php
1123
                    $form = $this->formFilter;
1124
                    $form->setAttributes([
1125
                        'method'    => 'post',
1126
                        'name'      => 'form-filter',
1127
                        'id'        => 'form-filter'
1128
                    ]);
1129
 
1130
                    $form->prepare();
1131
                    echo $this->form()->openTag($form);
1132
 
16845 efrain 1133
                    $element = $form->get('vacancy_id');
1134
                    $element->setAttributes(['class' => 'form-control']);
1135
                    $element->setOptions(['label' => 'LABEL_VACANCY']);
1136
                    ?>
16941 stevensc 1137
                    <table class="table">
1138
                        <tbody>
1139
                            <tr>
1140
                                <td><?php echo $this->formLabel($element); ?></td>
1141
                                <td><?php echo $this->formSelect($element); ?></td>
1142
                            </tr>
1143
                        </tbody>
1144
                    </table>
1145
                    <?php echo $this->form()->closeTag($form); ?>
1146
                </div>
1147
            </div>
1148
            <div class="row">
1149
                <div class="col-12 mt-3">
1150
 
1151
                    <table id="gridTable" class="table   table-bordered">
1152
                        <thead>
1153
                            <tr>
1154
                                <th>LABEL_FIRST_NAME</th>
1155
                                <th>LABEL_LAST_NAME</th>
1156
                                <th>LABEL_EMAIL</th>
1157
                                <th>LABEL_STATUS</th>
1158
                                <th>LABEL_LEVEL</th>
1159
                                <th>LABEL_ACTIONS</th>
1160
                            </tr>
1161
                        </thead>
1162
                        <tbody>
1163
                        </tbody>
1164
                    </table>
1165
 
1166
                </div>
1167
            </div>
1168
        </div>
1169
        <div class="card-footer text-right">
1170
            <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
1171
            <?php if ($allowAdd) : ?>
1172
                <button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
1173
            <?php endif; ?>
1174
        </div>
1175
    </div>
1176
 
1177
 
1178
    <div class="card" id="row-view" style="display: none">
1179
        <div class="card-header">
1180
            <h6 class="card-title">
1181
                <span id="view_title_name"></span>
16845 efrain 1182
                <small class="float-right">LABEL_LAST_DATE: <span id="view_title_last_date"></span></small>
16941 stevensc 1183
            </h6>
1184
        </div>
1185
        <div class="card-body">
1186
            <div class="row invoice-info">
15461 efrain 1187
                <div class="col-sm-6 invoice-col">
16941 stevensc 1188
                    <strong>LABEL_VACANCY</strong>
1189
                    <address>
1190
                        <span id="view_vacancy_name"></span><br>
1191
                        LABEL_LAST_DATE : <span id="view_vacancy_last_date"></span><br>
1192
                        LABEL_JOB_DESCRIPTION : <span id="view_vacancy_job_description"></span><br>
1193
                        LABEL_INDUSTRY : <span id="view_vacancy_industry"></span><br>
1194
                        LABEL_JOB_CATEGORY : <span id="view_vacancy_job_category"></span>
1195
                    </address>
15461 efrain 1196
                </div>
1197
                <!-- /.col -->
1198
                <div class="col-sm-3 invoice-col">
16941 stevensc 1199
                    <strong>LABEL_CANDIDATE</strong>
1200
                    <address>
1201
                        LABEL_FIRST_NAME : <strong id="view_candidate_first_name"></strong><br>
1202
                        LABEL_LAST_NAME : <strong id="view_candidate_last_name"></strong><br>
1203
                        LABEL_EMAIL : <span id="view_vacancy_email"></span><br>
1204
                    </address>
15461 efrain 1205
                </div>
1206
                <!-- /.col -->
1207
                <div class="col-sm-3 invoice-col">
16941 stevensc 1208
                    <strong> LABEL_APPLICATION</strong><br>
1209
                    <address>
1210
                        LABEL_LEVEL : <span id="view_application_level"></span>
1211
                        <?php if ($allowLevel) : ?>
1212
                            <button class="btn btn-default btn-change-level"><i class="fa fa-external-link-alt"></i></button>
1213
                        <?php endif; ?>
1214
                        <br>
1215
                        LABEL_STATUS : <span id="view_application_status"></span>
1216
                        <?php if ($allowStatus) : ?>
1217
                            <button class="btn btn-default btn-change-status"><i class="fa fa-external-link-alt"></i></button>
1218
                        <?php endif; ?>
1219
                        <br>
1220
                        LABEL_POINTS : <span id="view_application_points"></span>
1221
                        <?php if ($allowComment) : ?>
1222
                            <button class="btn btn-default btn-change-comment"><i class="fa fa-external-link-alt"></i></button>
1223
                        <?php endif; ?>
1224
                        <br>
1225
                    </address>
15461 efrain 1226
                </div>
1227
                <!-- /.col -->
16941 stevensc 1228
            </div>
1229
            <div class="row invoice-info">
1230
                <div class="col-sm-12 invoice-col">
1231
                    <strong>LABEL_COMMENT</strong><br />
1232
                    <div id="view_application_comment">
1233
                    </div>
1234
                </div>
1235
            </div>
1236
            <!-- /.row -->
15461 efrain 1237
 
16941 stevensc 1238
            <!-- Table row -->
1239
            <div class="row">
15461 efrain 1240
                <div class="col-12 table-responsive">
16941 stevensc 1241
                    <table class="table " id="fileTable">
1242
                        <thead>
1243
                            <tr>
1244
                                <th>LABEL_NAME</th>
1245
                                <th>LABEL_FILE</th>
1246
                                <th>LABEL_ACTIONS</th>
1247
                            </tr>
1248
                        </thead>
1249
                        <tbody>
1250
 
1251
                        </tbody>
1252
 
1253
                        <tfoot>
1254
                            <tr>
1255
                                <td colspan="3" class="text-right">
1256
                                    <?php if ($allowFileAdd) : ?>
1257
                                        <button type="button" class="btn btn-primary btn-add-file"><i class="fa fa-plus"></i> LABEL_ADD </button>
1258
                                    <?php endif; ?>
1259
                                </td>
1260
                            </tr>
1261
                        </tfoot>
1262
 
1263
                    </table>
15461 efrain 1264
                </div>
1265
                <!-- /.col -->
16941 stevensc 1266
            </div>
1267
            <!-- /.row -->
1268
 
1269
 
1270
            <!-- Table row -->
1271
            <div class="row">
15461 efrain 1272
                <div class="col-12 table-responsive">
16941 stevensc 1273
                    <table class="table " id="interviewTable">
1274
                        <thead>
1275
                            <tr>
1276
                                <th>LABEL_TYPE</th>
1277
                                <th>LABEL_LAST_DATE</th>
1278
                                <th>LABEL_INTERVIEWED_BY</th>
1279
                                <th>LABEL_STATUS</th>
1280
                                <th>LABEL_ACTIONS</th>
1281
                            </tr>
1282
                        </thead>
1283
                        <tbody>
1284
 
1285
                        </tbody>
1286
 
1287
                        <tfoot>
1288
                            <tr>
1289
                                <td colspan="5" class="text-right">
1290
                                    <?php if ($allowInterviewAdd) : ?>
1291
                                        <button type="button" class="btn btn-primary  btn-add-interview"><i class="fa fa-plus"></i> LABEL_ADD </button>
1292
                                    <?php endif; ?>
1293
                                </td>
1294
                            </tr>
1295
                        </tfoot>
1296
 
1297
                    </table>
15461 efrain 1298
                </div>
1299
                <!-- /.col -->
16941 stevensc 1300
            </div>
1301
            <!-- /.row -->
1302
        </div>
1303
        <div class="card-footer text-right">
1304
            <button type="button" class="btn btn-primary btn-close-application"><i class="far fa-time"></i> LABEL_CLOSE </button>
1305
        </div>
1306
    </div>
1307
 
16845 efrain 1308
</div>
15461 efrain 1309
 
1310
 
1311
 
1312
 
1313
 
1314
 
1315
 
1316
 
1317
 
1318
 
16941 stevensc 1319
 
1320
 
1321
 
1322
 
15461 efrain 1323
<!-- The Modal -->
1324
<div class="modal" id="modal-add-application">
1325
    <div class="modal-dialog  modal-xl">
1326
        <div class="modal-content">
1327
 
1328
            <!-- Modal Header -->
1329
            <div class="modal-header">
16845 efrain 1330
                <h6>LABEL_ADD_APPLICATION</h6>
15461 efrain 1331
            </div>
1332
 
16941 stevensc 1333
            <?php
1334
            $form = $this->formAdd;
1335
            $form->setAttributes([
1336
                'method'    => 'post',
1337
                'name'      => 'form-add',
1338
                'id'        => 'form-add'
1339
            ]);
15461 efrain 1340
 
16941 stevensc 1341
            $form->prepare();
1342
            echo $this->form()->openTag($form);
16845 efrain 1343
 
16941 stevensc 1344
            $element = $form->get('user_id');
1345
            echo $this->formHidden($element);
1346
 
1347
            ?>
1348
 
16845 efrain 1349
            <!-- Modal body -->
1350
            <div class="modal-body">
15461 efrain 1351
 
16941 stevensc 1352
                <div class="row">
1353
                    <div class="col-12 mt-3">
1354
                        <?php
1355
                        $element = $form->get('email');
1356
                        $element->setOptions(['label' => 'LABEL_EMAIL']);
1357
                        $element->setAttributes(['class' => 'form-control']);
16845 efrain 1358
 
16941 stevensc 1359
                        echo $this->formLabel($element);
1360
                        ?>
1361
 
1362
 
1363
                        <?php if ($allowUserByEmail) : ?>
1364
 
1365
                            <div class="input-group mb-3">
1366
                                <?php echo  $this->formText($element); ?>
1367
                                <span class="input-group-text btn-search-email">
1368
 
1369
                                    <i class="fa fa-search" aria-hidden="true"></i></span>
1370
 
1371
                            </div>
1372
 
1373
 
1374
                        <?php
1375
                        else :
1376
                            echo $this->formText($element);
1377
                        endif; ?>
1378
 
16845 efrain 1379
                    </div>
15461 efrain 1380
                </div>
16941 stevensc 1381
                <div class="row">
1382
                    <div class="col-12 mt-3">
1383
                        <?php
1384
                        $element = $form->get('first_name');
1385
                        $element->setOptions(['label' => 'LABEL_FIRST_NAME']);
1386
                        $element->setAttributes(['class' => 'form-control']);
15461 efrain 1387
 
16941 stevensc 1388
                        echo $this->formLabel($element);
1389
                        echo $this->formText($element);
1390
                        ?>
16845 efrain 1391
                    </div>
15461 efrain 1392
                </div>
16941 stevensc 1393
                <div class="row">
1394
                    <div class="col-12 mt-3">
1395
                        <?php
1396
                        $element = $form->get('last_name');
1397
                        $element->setOptions(['label' => 'LABEL_LAST_NAME']);
1398
                        $element->setAttributes(['class' => 'form-control']);
15461 efrain 1399
 
16941 stevensc 1400
                        echo $this->formLabel($element);
1401
                        echo $this->formText($element);
1402
                        ?>
16845 efrain 1403
                    </div>
15461 efrain 1404
                </div>
1405
 
16941 stevensc 1406
 
16845 efrain 1407
            </div>
16941 stevensc 1408
            <div class="modal-footer text-right">
1409
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1410
                <button type="button" class="btn btn-light btn-cancel-modal-application">LABEL_CANCEL</button>
1411
            </div>
1412
            <?php echo $this->form()->closeTag($form); ?>
15461 efrain 1413
        </div>
1414
    </div>
1415
</div>
1416
 
1417
 
1418
<!-- The Modal -->
1419
<div class="modal" id="modal-add-file">
1420
    <div class="modal-dialog  modal-xl">
1421
        <div class="modal-content">
1422
 
1423
            <!-- Modal Header -->
1424
            <div class="modal-header">
16845 efrain 1425
                <h6>LABEL_ADD_FILE</h6>
15461 efrain 1426
            </div>
1427
 
16941 stevensc 1428
            <?php
1429
            $form = $this->formFile;
1430
            $form->setAttributes([
1431
                'method'    => 'post',
1432
                'name'      => 'form-file',
1433
                'id'        => 'form-file'
1434
            ]);
15461 efrain 1435
 
16941 stevensc 1436
            $form->prepare();
1437
            echo $this->form()->openTag($form);
15461 efrain 1438
 
1439
 
16941 stevensc 1440
 
1441
            ?>
16845 efrain 1442
            <div class="modal-body">
15461 efrain 1443
 
16941 stevensc 1444
 
16845 efrain 1445
                <div class="row">
16941 stevensc 1446
                    <div class="col-12 mt-3">
1447
                        <?php
1448
                        $element = $form->get('name');
1449
                        $element->setOptions(['label' => 'LABEL_NAME']);
1450
                        $element->setAttributes(['class' => 'form-control']);
15461 efrain 1451
 
16941 stevensc 1452
                        echo $this->formLabel($element);
1453
                        echo $this->formText($element);
1454
                        ?>
16845 efrain 1455
                    </div>
15461 efrain 1456
                </div>
16941 stevensc 1457
                <div class="row">
1458
                    <div class="col-12 mt-3">
1459
                        <?php
1460
                        $element = $form->get('file');
1461
                        $element->setOptions(['label' => 'LABEL_FILE']);
1462
                        $element->setAttributes(['class' => 'form-control']);
15461 efrain 1463
 
16941 stevensc 1464
                        echo $this->formLabel($element);
1465
                        echo $this->formFile($element);
1466
                        ?>
16845 efrain 1467
                    </div>
15461 efrain 1468
                </div>
1469
 
16845 efrain 1470
 
1471
            </div>
16941 stevensc 1472
            <div class="modal-footer text-right">
1473
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1474
                <button type="button" class="btn btn-light btn-cancel-modal-file">LABEL_CANCEL</button>
1475
            </div>
1476
            <?php echo $this->form()->closeTag($form); ?>
15461 efrain 1477
 
1478
        </div>
1479
    </div>
1480
</div>
1481
 
1482
 
1483
<!-- The Modal -->
1484
<div class="modal" id="modal-comment">
1485
    <div class="modal-dialog  modal-xl">
1486
        <div class="modal-content">
1487
 
1488
            <!-- Modal Header -->
1489
            <div class="modal-header">
16845 efrain 1490
                <h6>LABEL_EVALUATION</h6>
15461 efrain 1491
            </div>
1492
 
16941 stevensc 1493
            <?php
1494
            $form = $this->formComment;
1495
            $form->setAttributes([
1496
                'method'    => 'post',
1497
                'name'      => 'form-comment',
1498
                'id'        => 'form-comment'
1499
            ]);
15461 efrain 1500
 
16941 stevensc 1501
            $form->prepare();
1502
            echo $this->form()->openTag($form);
15461 efrain 1503
 
1504
 
16941 stevensc 1505
 
1506
            ?>
16845 efrain 1507
            <div class="modal-body">
15461 efrain 1508
 
1509
 
16941 stevensc 1510
                <div class="row">
1511
                    <div class="col-12 mt-3">
1512
                        <?php
1513
                        $element = $form->get('points');
1514
                        $element->setOptions(['label' => 'LABEL_POINTS']);
1515
                        $element->setAttributes(['class' => 'form-control']);
1516
 
1517
                        echo $this->formLabel($element);
1518
                        echo $this->formText($element);
1519
                        ?>
16845 efrain 1520
                    </div>
15461 efrain 1521
                </div>
16941 stevensc 1522
                <div class="row">
1523
                    <div class="col-12 mt-3">
1524
                        <?php
1525
                        $element = $form->get('comment');
1526
                        $element->setOptions(['label' => 'LABEL_COMMENT']);
1527
                        $element->setAttributes(['class' => 'form-control']);
15461 efrain 1528
 
16941 stevensc 1529
                        echo $this->formLabel($element);
1530
                        echo $this->formTextArea($element);
1531
                        ?>
16845 efrain 1532
                    </div>
15461 efrain 1533
                </div>
1534
 
16845 efrain 1535
 
1536
            </div>
16941 stevensc 1537
            <div class="modal-footer text-right">
1538
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1539
                <button type="button" class="btn btn-light btn-cancel-modal-comment">LABEL_CANCEL</button>
1540
            </div>
1541
            <?php echo $this->form()->closeTag($form); ?>
15461 efrain 1542
 
1543
        </div>
1544
    </div>
1545
</div>
1546
 
1547
 
1548
 
1549
<!-- The Modal -->
1550
<div class="modal" id="modal-level">
1551
    <div class="modal-dialog  modal-xl">
1552
        <div class="modal-content">
1553
 
1554
            <!-- Modal Header -->
1555
            <div class="modal-header">
16845 efrain 1556
                <h6>LABEL_LEVEL</h6>
15461 efrain 1557
            </div>
1558
 
16941 stevensc 1559
            <?php
1560
            $form = $this->formLevel;
1561
            $form->setAttributes([
1562
                'method'    => 'post',
1563
                'name'      => 'form-level',
1564
                'id'        => 'form-level'
1565
            ]);
15461 efrain 1566
 
16941 stevensc 1567
            $form->prepare();
1568
            echo $this->form()->openTag($form);
15461 efrain 1569
 
1570
 
16941 stevensc 1571
 
1572
            ?>
16845 efrain 1573
            <div class="modal-body">
15461 efrain 1574
 
16941 stevensc 1575
 
16845 efrain 1576
                <div class="row">
16941 stevensc 1577
                    <div class="col-12 mt-3">
1578
                        <?php
1579
                        $element = $form->get('level');
1580
                        $element->setOptions(['label' => 'LABEL_LEVEL']);
1581
                        $element->setAttributes(['class' => 'form-control']);
15461 efrain 1582
 
16941 stevensc 1583
                        echo $this->formLabel($element);
1584
                        echo $this->formSelect($element);
1585
                        ?>
16845 efrain 1586
                    </div>
15461 efrain 1587
                </div>
1588
 
1589
 
16941 stevensc 1590
 
16845 efrain 1591
            </div>
1592
 
16941 stevensc 1593
            <div class="modal-footer text-right">
1594
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1595
                <button type="button" class="btn btn-light btn-cancel-modal-level">LABEL_CANCEL</button>
1596
            </div>
1597
            <?php echo $this->form()->closeTag($form); ?>
15461 efrain 1598
        </div>
1599
    </div>
1600
</div>
1601
 
1602
 
1603
<!-- The Modal -->
1604
<div class="modal" id="modal-status">
1605
    <div class="modal-dialog  modal-xl">
1606
        <div class="modal-content">
1607
 
1608
            <!-- Modal Header -->
1609
            <div class="modal-header">
16845 efrain 1610
                <h6>LABEL_STATUS</h6>
15461 efrain 1611
            </div>
1612
 
16941 stevensc 1613
            <?php
1614
            $form = $this->formStatus;
1615
            $form->setAttributes([
1616
                'method'    => 'post',
1617
                'name'      => 'form-status',
1618
                'id'        => 'form-status'
1619
            ]);
15461 efrain 1620
 
16941 stevensc 1621
            $form->prepare();
1622
            echo $this->form()->openTag($form);
15461 efrain 1623
 
1624
 
16941 stevensc 1625
 
1626
            ?>
1627
 
16845 efrain 1628
            <!-- Modal body -->
1629
            <div class="modal-body">
15461 efrain 1630
 
16941 stevensc 1631
 
16845 efrain 1632
                <div class="row">
16941 stevensc 1633
                    <div class="col-12 mt-3">
1634
                        <?php
1635
                        $element = $form->get('status');
1636
                        $element->setOptions(['label' => 'LABEL_STATUS']);
1637
                        $element->setAttributes(['class' => 'form-control']);
15461 efrain 1638
 
16941 stevensc 1639
                        echo $this->formLabel($element);
1640
                        echo $this->formSelect($element);
1641
                        ?>
16845 efrain 1642
                    </div>
15461 efrain 1643
                </div>
1644
 
1645
 
1646
            </div>
1647
 
16941 stevensc 1648
            <div class="modal-footer text-right">
1649
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1650
                <button type="button" class="btn btn-light btn-cancel-modal-status">LABEL_CANCEL</button>
1651
            </div>
1652
            <?php echo $this->form()->closeTag($form); ?>
15461 efrain 1653
        </div>
1654
    </div>
1655
</div>
1656
 
1657
 
1658
<div class="modal" id="modal-interview">
1659
    <div class="modal-dialog  modal-xl">
1660
        <div class="modal-content">
1661
 
1662
            <!-- Modal Header -->
1663
            <div class="modal-header">
16845 efrain 1664
                <h6>LABEL_INTERVIEW</h6>
15461 efrain 1665
            </div>
1666
 
16941 stevensc 1667
            <?php
1668
            $form = $this->formInterview;
1669
            $form->setAttributes([
1670
                'method'    => 'post',
1671
                'name'      => 'form-interview',
1672
                'id'        => 'form-interview'
1673
            ]);
15461 efrain 1674
 
16941 stevensc 1675
            $form->prepare();
1676
            echo $this->form()->openTag($form);
15461 efrain 1677
 
16941 stevensc 1678
 
1679
 
1680
            ?>
1681
 
16845 efrain 1682
            <div class="modal-body">
15461 efrain 1683
 
16941 stevensc 1684
                <div class="row">
1685
                    <div class="col-12 mt-3">
1686
                        <?php
1687
                        $element = $form->get('user_id');
1688
                        $element->setOptions(['label' => 'LABEL_INTERVIEWED_BY']);
1689
                        $element->setAttributes(['class' => 'form-control']);
1690
 
1691
                        echo $this->formLabel($element);
1692
                        echo $this->formSelect($element);
1693
                        ?>
16845 efrain 1694
                    </div>
15461 efrain 1695
                </div>
1696
 
16845 efrain 1697
                <div class="row">
16941 stevensc 1698
                    <div class="col-12 mt-3">
1699
                        <?php
1700
                        $element = $form->get('type');
1701
                        $element->setOptions(['label' => 'LABEL_TYPE']);
1702
                        $element->setAttributes(['class' => 'form-control']);
15461 efrain 1703
 
16941 stevensc 1704
                        echo $this->formLabel($element);
1705
                        echo $this->formSelect($element);
1706
                        ?>
16845 efrain 1707
                    </div>
15461 efrain 1708
                </div>
1709
 
16941 stevensc 1710
                <div class="row">
1711
                    <div class="col-12 mt-3">
1712
                        <?php
1713
                        $element = $form->get('last_date');
1714
                        $element->setOptions(['label' => 'LABEL_LAST_DATE']);
1715
                        $element->setAttributes(['class' => 'form-control']);
1716
 
1717
                        echo $this->formLabel($element);
1718
                        echo $this->formText($element);
1719
                        ?>
16845 efrain 1720
                    </div>
15461 efrain 1721
                </div>
1722
 
1723
 
16845 efrain 1724
 
15461 efrain 1725
            </div>
1726
 
16941 stevensc 1727
            <div class="modal-footer text-right">
1728
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1729
                <button type="button" class="btn btn-light btn-cancel-modal-interview">LABEL_CANCEL</button>
1730
            </div>
1731
            <?php echo $this->form()->closeTag($form); ?>
15461 efrain 1732
        </div>
1733
    </div>
1734
</div>
1735
 
1736
 
1737
 
1738
<script id="fileTemplate" type="text/x-jsrender">
1739
    <tr>
1740
        <td>{{>name}}</td>
1741
        <td>{{>filename}}</td>
1742
        <td>
1743
            {{if link_view}}
16845 efrain 1744
            <button class="btn btn-primary btn-view-file" data-href="{{>link_view}}" data-toggle="tooltip" title="LABEL_DOWNLOAD"><i class="fa fa-download"></i> LABEL_DOWNLOAD </button>
15461 efrain 1745
            {{/if}}
1746
            {{if link_delete}}
1747
            <button class="btn btn-danger btn-delete-file" data-href="{{>link_delete}}" data-toggle="tooltip" title="LABEL_DELETE"><i class="fa fa-trash"></i> LABEL_DELETE </button>
1748
            {{/if}}
1749
        </td>
1750
    </tr>
1751
</script>
1752
 
1753
 
1754
 
1755
 
1756
 
1757
<script id="interviewTemplate" type="text/x-jsrender">
1758
    <tr>
1759
        <td>{{>type}}</td>
1760
        <td>{{>last_date}}</td>
1761
        <td>{{>interviewer}}</td>
1762
        <td>{{>status}}</td>
1763
        <td>
1764
            {{if link_report}}
16845 efrain 1765
            <button class="btn btn-primary btn-report-interview" data-href="{{>link_report}}" data-toggle="tooltip" title="LABEL_DOWNLOAD"><i class="fa fa-download"></i> LABEL_DOWNLOAD </button>
15461 efrain 1766
            {{/if}}
1767
            {{if link_edit}}
16906 efrain 1768
            <button class="btn btn-primary btn-edit-interview" data-href="{{>link_edit}}" data-toggle="tooltip" title="LABEL_EDIT"><i class="fa fa-pen"></i> LABEL_EDIT </button>
15461 efrain 1769
            {{/if}}
1770
            {{if link_delete}}
1771
            <button class="btn btn-danger btn-delete-interview" data-href="{{>link_delete}}" data-toggle="tooltip" title="LABEL_DELETE"><i class="fa fa-trash"></i> LABEL_DELETE </button>
1772
            {{/if}}
1773
        </td>
1774
    </tr>
16941 stevensc 1775
</script>