Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
15404 stevensc 1
<?php
2
 
15337 efrain 3
use LeadersLinked\Model\JobDescription;
4
 
5
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
6
$currentUser    = $this->currentUserHelper();
7
 
8
$roleName = $currentUser->getUserTypeId();
9
 
10
 
11
$routeAdd       = $this->url('settings/jobs-description/add');
12
$routeDatatable = $this->url('settings/jobs-description');
13
$routeImport    = $this->url('settings/jobs-description/import');
14
$routeDashboard = $this->url('dashboard');
15
 
16
$allowAdd               = $acl->isAllowed($roleName, 'settings/jobs-description/add') ? 1 : 0;
17
$allowEdit              = $acl->isAllowed($roleName, 'settings/jobs-description/edit') ? 1 : 0;
18
$allowDelete            = $acl->isAllowed($roleName, 'settings/jobs-description/delete') ? 1 : 0;
19
$allowReport            = $acl->isAllowed($roleName, 'settings/jobs-description/report') ? 1 : 0;
20
$allowImport            = $acl->isAllowed($roleName, 'settings/jobs-description/import') ? 1 : 0;
21
 
22
 
23
$this->headLink()->appendStylesheet($this->basePath('plugins/nprogress/nprogress.css'));
24
$this->inlineScript()->appendFile($this->basePath('plugins/nprogress/nprogress.js'));
25
 
26
$this->inlineScript()->appendFile($this->basePath('plugins/ckeditor/ckeditor.js'));
27
 
28
 
29
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/jquery.validate.js'));
30
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/additional-methods.js'));
31
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/localization/messages_es.js'));
32
 
33
$this->headLink()->appendStylesheet($this->basePath('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css'));
34
$this->headLink()->appendStylesheet($this->basePath('plugins/datatables-responsive/css/responsive.bootstrap4.min.css'));
35
 
36
$this->inlineScript()->appendFile($this->basePath('plugins/datatables/jquery.dataTables.min.js'));
37
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js'));
38
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-responsive/js/dataTables.responsive.min.js'));
39
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-responsive/js/responsive.bootstrap4.min.js'));
40
 
41
 
42
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
43
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
44
 
45
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-confirmation/dist/bootstrap-confirmation.js'));
46
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap-checkbox/awesome-bootstrap-checkbox.css'));
47
 
48
$this->inlineScript()->appendFile($this->basePath('plugins/select2/js/select2.js'));
49
$this->inlineScript()->appendFile($this->basePath('plugins/select2/js/i18n/es.js'));
50
$this->headLink()->appendStylesheet($this->basePath('plugins/select2/css/select2.css'));
51
 
52
$this->headLink()->appendStylesheet($this->basePath('plugins/select2-bootstrap4-theme/select2-bootstrap4.css'));
53
 
54
 
55
// bootbox Alert //
56
$this->inlineScript()->appendFile($this->basePath('plugins/bootbox/bootbox.min.js'));
57
 
58
// JsRender //
59
$this->inlineScript()->appendFile($this->basePath('plugins/jsrender/jsrender.min.js'));
60
 
61
 
62
// Page Styles
63
$this->headLink()->appendStylesheet($this->basePath('css/pages/self-evaluation.css'));
64
 
65
 
66
$status_active = JobDescription::STATUS_ACTIVE;
67
 
68
$this->inlineScript()->captureStart();
69
echo <<<JS
70
 
71
var competencies = [];
72
var competencies_type = [];
73
var subordinates = [];
74
var competencies_selected = [];
75
var subordinates_selected = [];
76
jQuery(document).ready(function($) {
77
    $.validator.setDefaults({
78
        debug: true,
79
        highlight: function(element) {
80
            $(element).addClass('is-invalid');
81
        },
82
        unhighlight: function(element) {
83
            $(element).removeClass('is-invalid');
84
        },
85
        errorElement: 'span',
86
        errorClass: 'error invalid-feedback',
87
        errorPlacement: function(error, element) {
88
            if (element.parent('.form-group').length) {
89
                error.insertAfter(element);
90
            } else if (element.parent('.toggle').length) {
91
                error.insertAfter(element.parent().parent());
92
            } else {
93
                error.insertAfter(element.parent());
94
            }
95
        }
96
    });
97
    $.fn.showFormErrorValidator = function(fieldname, errors) {
98
        var field = $(fieldname);
99
        if (field) {
100
            $(field).addClass('is-invalid');
101
            var error = $('<span id="' + fieldname + '-error" class="error invalid-feedback">' + errors + '</div>');
102
            if (field.parent('.form-group').length) {
103
                error.insertAfter(field);
104
            } else if (field.parent('.toggle').length) {
105
                error.insertAfter(field.parent().parent());
106
            } else {
107
                error.insertAfter(field.parent());
108
            }
109
        }
110
    };
111
    var allowEdit = $allowEdit;
112
    var allowDelete = $allowDelete;
113
    var allowReport = $allowReport;
114
    var gridTable = $('#gridTable').dataTable({
115
        'processing': true,
116
        'serverSide': true,
117
        'searching': true,
118
        'order': [
119
            [0, 'asc']
120
        ],
121
        'ordering': true,
122
        'ordenable': true,
123
        'responsive': true,
124
        'select': false,
125
        'paging': true,
126
        'pagingType': 'simple_numbers',
127
        'ajax': {
128
            'url': '$routeDatatable',
129
            'type': 'get',
130
            'beforeSend': function(request) {
131
                NProgress.start();
132
            },
133
            'dataFilter': function(response) {
134
                var response = jQuery.parseJSON(response);
135
                var json = {};
136
                json.recordsTotal = 0;
137
                json.recordsFiltered = 0;
138
                json.data = [];
139
                if (response.success) {
140
                    json.recordsTotal = response.data.total;
141
                    json.recordsFiltered = response.data.total;
142
                    json.data = response.data.items;
143
                } else {
144
                    $.fn.showError(response.data)
145
                }
146
                return JSON.stringify(json);
147
            }
148
        },
149
        'language': {
150
            'sProcessing': 'LABEL_DATATABLE_SPROCESSING',
151
            'sLengthMenu': 'LABEL_DATATABLE_SLENGTHMENU',
152
            'sZeroRecords': 'LABEL_DATATABLE_SZERORECORDS',
153
            'sEmptyTable': 'LABEL_DATATABLE_SEMPTYTABLE',
154
            'sInfo': 'LABEL_DATATABLE_SINFO',
155
            'sInfoEmpty': 'LABEL_DATATABLE_SINFOEMPTY',
156
            'sInfoFiltered': 'LABEL_DATATABLE_SINFOFILTERED',
157
            'sInfoPostFix': '',
158
            'sSearch': 'LABEL_DATATABLE_SSEARCH',
159
            'sUrl': '',
160
            'sInfoThousands': ',',
161
            'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
162
            'oPaginate': {
163
                'sFirst': 'LABEL_DATATABLE_SFIRST',
164
                'sLast': 'LABEL_DATATABLE_SLAST',
165
                'sNext': 'LABEL_DATATABLE_SNEXT',
166
                'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
167
            },
168
            'oAria': {
169
                'sSortAscending': ': LABEL_DATATABLE_SSORTASCENDING',
170
                'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
171
            },
172
        },
173
        'drawCallback': function(settings) {
174
            NProgress.done();
175
            $('button.btn-delete').confirmation({
176
                rootSelector: 'button.btn-delete',
177
                title: 'LABEL_ARE_YOU_SURE',
178
                singleton: true,
179
                btnOkLabel: 'LABEL_YES',
180
                btnCancelLabel: 'LABEL_NO',
181
                onConfirm: function(value) {
182
                    action = $(this).data('href');
183
                    NProgress.start();
184
                    $.ajax({
185
                        'dataType': 'json',
186
                        'accept': 'application/json',
187
                        'method': 'post',
188
                        'url': action,
189
                    }).done(function(response) {
190
                        if (response['success']) {
191
                            $.fn.showSuccess(response['data']);
192
                            gridTable.api().ajax.reload(null, false);
193
                        } else {
194
                            $.fn.showError(response['data']);
195
                        }
196
                    }).fail(function(jqXHR, textStatus, errorThrown) {
197
                        $.fn.showError(textStatus);
198
                    }).always(function() {
199
                        NProgress.done();
200
                    });
201
                },
202
            });
203
        },
204
        'aoColumns': [{
205
                'mDataProp': 'name'
206
            },
207
            {
208
                'mDataProp': 'status'
209
            },
210
            {
211
                'mDataProp': 'actions'
212
            },
213
        ],
214
        'columnDefs': [{
215
                'targets': 0,
216
                'className': 'text-vertical-middle',
217
            },
218
            {
219
                'targets': -2,
220
                'orderable': false,
221
                'className': 'text-center',
222
                'render': function(data, type, row) {
223
                    checked = data == 'a' ? ' checked="checked" ' : '';
224
                    return '<div class="checkbox checkbox-success">' +
225
                        '<input class="styled" type="checkbox" ' + checked + ' disabled="disabled">' +
226
                        '<label ></label></div>';
227
                }
228
            },
229
            {
230
                'targets': -1,
231
                'orderable': false,
232
                'render': function(data, type, row) {
233
                    s = '';
234
                    if (allowEdit) {
235
                        s = s + '<button class="btn btn-primary btn-edit" data-href="' + data['link_edit'] + '" data-toggle="tooltip" title="LABEL_EDIT"><i class="fa fa-pencil"></i> LABEL_EDIT </button>&nbsp;';
236
                    }
237
                    if (allowDelete) {
238
                        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;';
239
                    }
240
                    if (allowReport) {
241
                        s = s + '<a class="btn btn-default btn-pdf" href="' + data['link_report'] + '" target="_blank" data-toggle="tooltip" title="LABEL_PDF"><i class="fa fa-file-o"></i> LABEL_PDF </button>&nbsp;';
242
                    }
243
                    return s;
244
                }
245
            }
246
        ],
247
    });
248
    var validator = $('#form').validate({
249
        debug: true,
250
        onclick: false,
251
        onkeyup: false,
252
        ignore: [],
253
        rules: {
254
            'name': {
255
                required: true,
256
                maxlength: 64,
257
            },
258
            'functions': {
259
                updateCkeditor: function() {
260
                    CKEDITOR.instances.functions.updateElement();
261
                },
262
                required: true,
263
            },
264
            'objectives': {
265
                updateCkeditor: function() {
266
                    CKEDITOR.instances.objectives.updateElement();
267
                },
268
                required: true,
269
            },
270
            'status': {
271
                required: false,
272
            },
273
        },
274
        submitHandler: function(form) {
275
            $("#competencies_selected").val(JSON.stringify(competencies_selected));
276
            $("#subordinates_selected").val(JSON.stringify(subordinates_selected));
277
            $.ajax({
278
                'dataType': 'json',
279
                'accept': 'application/json',
280
                'method': 'post',
281
                'url': $('#form').attr('action'),
282
                'data': $('#form').serialize()
283
            }).done(function(response) {
284
                NProgress.start();
285
                if (response['success']) {
286
                    $.fn.showSuccess(response['data']);
287
                    $('#row-lists').show();
288
        $('#row-form').hide();
289
                    gridTable.api().ajax.reload(null, false);
290
                } else {
291
                    validator.resetForm();
292
                    if (jQuery.type(response['data']) == 'string') {
293
                        $.fn.showError(response['data']);
294
                    } else {
295
                        $.each(response['data'], function(fieldname, errors) {
296
                            $.fn.showFormErrorValidator('#form #' + fieldname, errors);
297
                        });
298
                    }
299
                }
300
            }).fail(function(jqXHR, textStatus, errorThrown) {
301
                $.fn.showError(textStatus);
302
            }).always(function() {
303
                NProgress.done();
304
            });
305
            return false;
306
        },
307
        invalidHandler: function(form, validator) {}
308
    });
309
    $('body').on('click', 'button.btn-add', function(e) {
310
        e.preventDefault();
311
        NProgress.start();
312
        $.ajax({
313
            'dataType': 'json',
314
            'accept': 'application/json',
315
            'method': 'get',
316
            'url': '$routeAdd',
317
        }).done(function(response) {
318
            if (response['success']) {
319
                $('span[id="form-title"]').html('LABEL_ADD');
320
                $('#form').attr('action', '$routeAdd');
321
                $('#form #name').val('');
322
                $('#form #status').bootstrapToggle('on');
323
                CKEDITOR.instances.functions.setData('');
324
                CKEDITOR.instances.objectives.setData('');
325
                subordinates_selected = [];
326
                competencies_selected = [];
327
                competencies = response['data']['competencies'];
328
                competencies_type = response['data']['competency_types'];
329
                subordinates = response['data']['jobs_description'];
330
                renderData([]);
331
                renderSubordinateData([]);
332
                setCompetencySelect();
333
                setSubordinateSelect();
334
                validator.resetForm();
335
                $('#custom-tabs #custom-tabs-general-tab').tab('show');
336
                $('#row-lists').hide();
337
        $('#row-form').show();
338
            } else {
339
                $.fn.showError(response['data']);
340
            }
341
        }).fail(function(jqXHR, textStatus, errorThrown) {
342
            $.fn.showError(textStatus);
343
        }).always(function() {
344
            NProgress.done();
345
        });
346
    });
347
    $('body').on('click', 'button.btn-edit', function(e) {
348
        e.preventDefault();
349
        NProgress.start();
350
        var action = $(this).data('href');
351
        $.ajax({
352
            'dataType': 'json',
353
            'accept': 'application/json',
354
            'method': 'get',
355
            'url': action,
356
        }).done(function(response) {
357
            if (response['success']) {
358
                $('span[id="form-title"]').html('LABEL_EDIT');
359
                $('#form').attr('action', action);
360
                $('#form #name').val(response['data']['name']);
361
                $('#form #status').bootstrapToggle(response['data']['status'] == '$status_active' ? 'on' : 'off')
362
                CKEDITOR.instances.functions.setData(response['data']['functions']);
363
                CKEDITOR.instances.objectives.setData(response['data']['objectives']);
364
                $('#tableCompetencies tbody').empty();
365
                competencies = response['data']['competencies'];
366
                competencies_type = response['data']['competency_types'];
367
                competencies_selected = response['data']['competencies_selected'];
368
                subordinates_selected = response['data']['subordinates_selected'];
369
                subordinates = response['data']['jobs_description'];
370
                renderData(competencies_selected);
371
                renderSubordinateData(subordinates_selected);
372
                setCompetencySelect();
373
                setSubordinateSelect();
374
                $('#job_description_id_boss').val(response['data']['job_description_id_boss']);
375
                validator.resetForm();
376
                $('#custom-tabs #custom-tabs-general-tab').tab('show');
377
                $('#row-lists').hide();
378
        $('#row-form').show();
379
            } else {
380
                $.fn.showError(response['data']);
381
            }
382
        }).fail(function(jqXHR, textStatus, errorThrown) {
383
            $.fn.showError(textStatus);
384
        }).always(function() {
385
            NProgress.done();
386
        });
387
    });
388
    $('body').on('click', 'button.btn-refresh', function(e) {
389
        e.preventDefault();
390
        gridTable.api().ajax.reload(null, false);
391
    });
392
    $('body').on('click', 'button.btn-cancel', function(e) {
393
        e.preventDefault();
394
        $('#row-lists').show();
395
        $('#row-form').hide();
396
        $('#div-listing').show();
397
    });
398
    $('body').on('click', 'button.btn-import', function(e) {
399
        e.preventDefault();
400
        NProgress.start();
401
        $.ajax({
402
            'dataType': 'json',
403
            'method': 'post',
404
            'url': '$routeImport',
405
        }).done(function(response) {
406
            if (response['success']) {
407
                $.fn.showSuccess(response['data']);
408
                gridTable.api().ajax.reload(null, false);
409
            } else {
410
                $.fn.showError(response['data']);
411
            }
412
        }).fail(function(jqXHR, textStatus, errorThrown) {
413
            $.fn.showError(textStatus);
414
        }).always(function() {
415
            NProgress.done();
416
        });
417
        return false;
418
    });
419
    $('#form #status').bootstrapToggle({
420
        'on': 'LABEL_ACTIVE',
421
        'off': 'LABEL_INACTIVE',
422
        'width': '160px',
423
        'height': '40px'
424
    });
15407 stevensc 425
 
15337 efrain 426
    /**
427
     * Clicked select competency
428
     */
429
    $('body').on('click', 'button[id="btn-select-competency"]', function(e) {
430
        if ($("#select-competency").val() == "") {
431
            $.fn.showError('LABEL_ERROR_SELECT_COMPETENCY');
432
        } else {
433
            competencies_selected.push(competencies.filter((item) => item.competency_id == $("#select-competency").val() ? item : false)[0]);
434
            $("#select-subordinate").val('');
435
            renderData(competencies_selected);
436
            setCompetencySelect();
437
        }
438
    });
439
    /**
440
     * Clicked select subordinate
441
     */
442
    $('body').on('click', 'button[id="btn-select-subordinate"]', function(e) {
443
        if ($("#select-subordinate").val() == "") {
444
            $.fn.showError('LABEL_ERROR_SELECT_DEPENDENT');
445
        } else {
446
            subordinates_selected.push(subordinates.filter((item) => item.job_description_id == $("#select-subordinate").val() ? item : false)[0]);
447
            renderSubordinateData(subordinates_selected);
448
            setSubordinateSelect();
449
        }
450
    });
451
    /**
452
     * Clicked remove subordinate
453
     */
454
    $('body').on('click', 'button.btn-delete-subordinate', function(e) {
455
        var job_description_id = $(this).data('subordinate');
456
        bootbox.confirm({
457
            title: "LABEL_DELETE LABEL_DEPENDENT",
458
            message: "LABEL_QUESTION_DELETE",
459
            buttons: {
460
                cancel: {
461
                    label: '<i class="fa fa-times"></i> LABEL_CANCEL'
462
                },
463
                confirm: {
464
                    label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
465
                }
466
            },
467
            callback: function(result) {
468
                if (result) {
469
                    subordinates_selected = subordinates_selected.filter((item) => item.job_description_id != job_description_id);
470
                    renderSubordinateData(subordinates_selected);
471
                    return setSubordinateSelect();
472
                }
473
            }
474
        });
475
    });
476
    const setCompetencySelect = () => {
477
        $('#select-competency').children().remove();
478
        $('#select-competency').append($('<option>', {
479
            value: '',
480
            text: 'LABEL_SELECT'
481
        }));
482
        $.each(competencies, function(i, item) {
483
            if (!filterItemById(item.competency_id)) {
484
                var type = filterTypeById(item.competency_type_id);
485
                $('#select-competency').append($('<option>', {
486
                    value: item.competency_id,
487
                    text: type.name + ' - ' + item.name
488
                }));
489
            }
490
        });
491
    }
492
    const setSubordinateSelect = () => {
493
        $('#select-subordinate').children().remove();
494
        $('#select-subordinate').append($('<option>', {
495
            value: '',
496
            text: 'LABEL_SELECT'
497
        }));
498
        $.each(subordinates, function(i, item) {
499
            if (!filterDependedItemById(item.job_description_id)) {
500
                $('#select-subordinate').append($('<option>', {
501
                    value: item.job_description_id,
502
                    text: item.name
503
                }));
504
            }
505
        });
506
    }
507
    /**
508
     * Render Competencies data
509
     */
510
    const renderData = (data) => {
511
        data.length > 0 ?
512
            $("#competencies-job").html($("#sectionTemplate").render(data, {
513
                getType: filterTypeById
514
            })) :
515
            $("#competencies-job").html('');
516
    }
517
    /**
518
     * Render Subordinate data
519
     */
520
    const renderSubordinateData = (data) => {
521
        data.length > 0 ?
522
            $("#subordinate").html($("#sectionJob").render(data)) :
523
            $("#subordinate").html('');
524
    }
525
    /**
526
     * Filter competencies selected
527
     */
528
    const filterItemById = (id) => competencies_selected.filter((item) => item.competency_id == id ? item : false)[0];
529
    /**
530
     * Filter depended selected
531
     */
532
    const filterDependedItemById = (id) => subordinates_selected.filter((item) => item.job_description_id == id ? item : false)[0];
533
    /**
534
     * Filter competencie type
535
     */
536
    const filterTypeById = (id) => competencies_type.filter((item) => item.competency_type_id == id ? item : false)[0];
537
    /**
538
     * Clicked remove competency
539
     */
540
    $('body').on('click', 'button.btn-delete-competency', function(e) {
541
        var id_competency = $(this).data('competency');
542
        bootbox.confirm({
543
            title: "LABEL_DELETE LABEL_COMPETENCY",
544
            message: "LABEL_QUESTION_DELETE",
545
            buttons: {
546
                cancel: {
547
                    label: '<i class="fa fa-times"></i> LABEL_CANCEL'
548
                },
549
                confirm: {
550
                    label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
551
                }
552
            },
553
            callback: function(result) {
554
                if (result) {
555
                    removeCompetency(id_competency);
556
                }
557
            }
558
        });
559
    });
560
    /**
561
     * Clicked on edit behavior
562
     */
563
    $('body').on('click', 'button.btn-edit-behavior', function(e) {
564
        e.preventDefault();
565
        var competency_id = $(this).data('competency');
566
        var behavior_id = $(this).data('behavior');
567
        competencies_selected.map((item) => {
568
            if (item.competency_id == competency_id) {
569
                item.behaviors.map((b) => {
570
                    if (b.behavior_id == behavior_id) {
571
                        $('#form-behavior #behavior-id').val(b.behavior_id);
572
                        $('#form-behavior #behavior-competency').val(b.competency_id);
573
                        $('#form-behavior #behavior-level').val(b.level);
574
                        $('#modal-behavior h4[class="modal-title"]').html('LABEL_EDIT LABEL_CONDUCT');
575
                        $('#modal-behavior').modal('show');
576
                        return;
577
                    }
578
                });
579
            }
580
        });
581
    });
582
    /**
583
     * Remove Competency
584
     */
585
    const removeCompetency = (competency_id) => {
586
        competencies_selected = competencies_selected.filter((item) => item.competency_id != competency_id);
587
        return renderData(competencies_selected);
588
    }
589
    /**
590
     * Edit item Behavior
591
     */
592
    const editBehavior = (competency_id, behavior_id, level) => {
593
        competencies_selected.map((item) => {
594
            if (item.competency_id == competency_id) {
595
                item.behaviors.map((opt) => {
596
                    if (opt.behavior_id == behavior_id) {
597
                        opt.level = level
598
                    }
599
                });
600
            }
601
        });
602
        return renderData(competencies_selected);
603
    }
604
    /**
605
     * Clicked cancel new/edit Form
606
     */
607
    $('button.btn-behavior-submit').click(function(e) {
608
        if ($("#behavior-description").val() == "") {
609
            $.fn.showError('ERROR_ENTER_DESCRIPTION');
610
            return;
611
        } else {
612
            editBehavior($("#behavior-competency").val(), $("#behavior-id").val(), $("#behavior-level").val())
613
            $('#modal-behavior').modal('hide');
614
            return;
615
        }
616
    });
617
 
618
    $('#select-subordinate').select2({
619
        theme: 'bootstrap4',
620
        width: '100%',
621
    });
622
 
623
    $('#select-competency').select2({
624
        theme: 'bootstrap4',
625
        width: '100%',
626
    });
627
 
628
    /**
629
     * Clicked cancel new/edit Form
630
     */
631
    $('body').on('click', 'button.btn-edit-cancel', function(e) {
632
        $('#row-lists').show();
633
        $('#row-form').hide();
634
    });
15425 stevensc 635
 
15426 stevensc 636
    CKEDITOR.replace('functions');
15427 stevensc 637
    CKEDITOR.replace('objectives');
15425 stevensc 638
 
15337 efrain 639
});
640
JS;
641
$this->inlineScript()->captureEnd();
642
?>
643
<section class="content" id="row-lists">
644
 
15404 stevensc 645
    <!-- Content Header (Page header) -->
646
    <div class="content-header">
647
        <div class="container-fluid">
648
            <div class="row mb-2">
649
                <div class="col-sm-12">
650
                    <h1>LABEL_JOBS_DESCRIPTION</h1>
651
                </div>
15337 efrain 652
            </div>
15404 stevensc 653
        </div>
654
        <!-- /.container-fluid -->
655
    </div>
656
    <div class="container-fluid">
657
        <div class="row">
658
            <div class="col-12">
659
                <div class="card">
660
                    <div class="card-body">
661
                        <table id="gridTable" class="table   table-hover">
662
                            <thead>
663
                                <tr>
664
                                    <th>LABEL_NAME</th>
665
                                    <th>LABEL_ACTIVE</th>
666
                                    <th>LABEL_ACTIONS</th>
667
                                </tr>
668
                            </thead>
669
                            <tbody>
670
                            </tbody>
671
                        </table>
672
                    </div>
673
                    <div class="card-footer clearfix">
674
                        <div style="float:right;">
675
                            <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
676
                            <?php if ($allowAdd) : ?>
677
                                <?php if ($allowImport) : ?>
678
                                    <button type="button" class="btn btn-primary btn-import"><i class="fa fa-upload"></i> LABEL_IMPORT </button>
679
                                <?php endif; ?>
680
                                <button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
681
                            <?php endif; ?>
682
                        </div>
683
                    </div>
684
                </div>
685
            </div>
686
        </div>
687
    </div>
15337 efrain 688
</section>
689
 
690
<section id="row-form" style="display:none">
15404 stevensc 691
    <div class="container">
692
        <!-- Modal Header -->
693
        <div class="modal-header">
15430 stevensc 694
            <h4 class="modal-title">LABEL_JOB_DESCRIPTION - <span id="form-title"></span></h4>
15404 stevensc 695
        </div>
696
        <!-- Modal body -->
697
        <div class="modal-body">
698
            <div class="card card-primary card-outline card-tabs">
699
                <div class="card-header p-0 pt-1 border-bottom-0">
700
                    <ul class="nav nav-tabs" id="custom-tabs" role="tablist">
701
                        <li class="nav-item">
702
                            <a class="nav-link active" id="custom-tabs-general-tab" data-toggle="pill" href="#custom-tabs-general" role="tab" aria-controls="custom-tabs-general" aria-selected="true">LABEL_GENERAL</a>
703
                        </li>
704
                        <li class="nav-item">
705
                            <a class="nav-link" id="custom-tabs-compentencies-tab" data-toggle="pill" href="#custom-tabs-compentencies" role="tab" aria-controls="custom-tabs-compentencies" aria-selected="false">LABEL_COMPETENCIES</a>
706
                        </li>
707
                        <li class="nav-item">
708
                            <a class="nav-link" id="custom-tabs-subordinate-tab" data-toggle="pill" href="#custom-tabs-subordinate" role="tab" aria-controls="custom-tabs-subordinate" aria-selected="false">LABEL_SUBORDINATES</a>
709
                        </li>
710
                    </ul>
711
                </div>
712
                <div class="card-body">
713
                    <?php
714
                    $form = $this->form;
715
                    $form->setAttributes([
716
                        'method'    => 'post',
717
                        'name'      => 'form',
718
                        'id'        => 'form'
719
                    ]);
720
 
721
                    $form->prepare();
722
                    echo $this->form()->openTag($form);
723
                    ?>
724
                    <input type="hidden" id="subordinates_selected" name="subordinates_selected" value="">
725
                    <input type="hidden" id="competencies_selected" name="competencies_selected" value="">
726
                    <div class="tab-content" id="custom-tabs-three-tabContent">
727
                        <div class="tab-pane fade show active" id="custom-tabs-general" role="tabpanel" aria-labelledby="custom-tabs-general-tab">
728
                            <div class="row">
729
                                <div class="col-md col-sm-12 col-12">
730
                                    <div class="form-group m-0">
731
                                        <?php
732
                                        $element = $form->get('name');
733
                                        $element->setOptions(['label' => 'LABEL_NAME']);
734
                                        $element->setAttributes(['class' => 'form-control']);
735
 
736
                                        echo $this->formLabel($element);
737
                                        echo $this->formText($element);
738
                                        ?>
739
                                    </div>
740
                                </div>
741
                                <div class="col-md col-sm-12 col-12">
742
                                    <div class="form-group m-0">
743
                                        <?php
744
                                        $element = $form->get('job_description_id_boss');
745
                                        $element->setOptions(['label' => 'LABEL_BOSS']);
746
                                        $element->setAttributes(['class' => 'form-control']);
747
 
748
                                        echo $this->formLabel($element);
749
                                        echo $this->formSelect($element);
750
                                        ?>
751
                                    </div>
752
                                </div>
753
                                <div class="col-md col-sm-12 col-12 d-flex align-items-center justify-content-center">
754
                                    <div class="form-group m-0">
755
                                        <label>LABEL_STATUS</label>
756
                                        <br />
757
                                        <?php
758
                                        $element = $form->get('status');
759
                                        $element->setOptions(['label' => 'LABEL_STATUS']);
760
                                        // echo $this->formLabel($element);
761
                                        echo $this->formCheckbox($element);
762
                                        ?>
763
                                    </div>
764
                                </div>
765
                            </div>
766
                            <div class="form-group">
767
                                <?php
768
                                $element = $form->get('objectives');
769
                                $element->setOptions(['label' => 'LABEL_OBJECTIVES']);
770
                                $element->setAttributes(['class' => 'form-control']);
771
 
772
                                echo $this->formLabel($element);
773
                                echo $this->formTextArea($element);
774
                                ?>
775
                            </div>
776
                            <div class="form-group">
777
                                <?php
778
                                $element = $form->get('functions');
779
                                $element->setOptions(['label' => 'LABEL_FUNCTIONS']);
780
                                $element->setAttributes(['class' => 'form-control']);
781
 
782
                                echo $this->formLabel($element);
783
                                echo $this->formTextArea($element);
784
                                ?>
785
                            </div>
15337 efrain 786
                        </div>
15404 stevensc 787
                        <div class="tab-pane fade" id="custom-tabs-compentencies" role="tabpanel" aria-labelledby="custom-tabs-compentencies-tab">
788
                            <div class="row">
789
                                <div class="col-md-8 col-sm-8 col-xs-12">
790
                                    <select id="select-competency" class="form-control"> </select>
791
                                </div>
792
                                <div class="col-md-4 col-sm-4 col-xs-12">
793
                                    <button type="button" class="btn btn-primary" id="btn-select-competency" data-toggle="tooltip" title="LABEL_ADD LABEL_COMPETENCY">LABEL_ADD LABEL_COMPETENCY</button>
794
                                </div>
795
                            </div>
796
                            <div class="row">
797
                                <br>
798
                                <div class="col-md-12 col-sm-12 col-xs-12" id="competencies-job" style="margin-top: 10px;">
799
                                </div>
800
                            </div>
15337 efrain 801
                        </div>
15404 stevensc 802
                        <div class="tab-pane fade" id="custom-tabs-subordinate" role="tabpanel" aria-labelledby="custom-tabs-subordinate-tab">
803
                            <div class="row">
804
                                <div class="col-md-8 col-sm-8 col-xs-12">
805
                                    <select id="select-subordinate" class="form-control"></select>
806
                                </div>
807
                                <div class="col-md-4 col-sm-4 col-xs-12">
808
                                    <button type="button" class="btn btn-primary" id="btn-select-subordinate" data-toggle="tooltip" title="LABEL_ADD ">LABEL_ADD </button>
809
                                </div>
810
                            </div>
811
                            <div class="row">
812
                                <div class="col-md-12 col-sm-12 col-xs-12" style="margin-top: 10px;">
813
                                    <table class="table table-bordered">
814
                                        <thead>
815
                                            <tr>
816
                                                <th style="width: 60%;">LABEL_NAME</th>
817
                                                <th style="width: 20%;">LABEL_ACTIONS</th>
818
                                            </tr>
819
                                        </thead>
820
                                        <tbody id="subordinate"></tbody>
821
                                    </table>
822
                                </div>
823
                            </div>
15337 efrain 824
                        </div>
15404 stevensc 825
                    </div>
826
                </div>
15337 efrain 827
            </div>
15404 stevensc 828
            <?php echo $this->form()->closeTag($form); ?>
829
            <!-- /.card -->
830
        </div>
831
        <!-- Modal footer -->
832
        <div class="modal-footer">
833
            <button type="submit" form="form" class="btn btn-primary">LABEL_SAVE</button>
834
            <button type="button" class="btn btn-danger btn-edit-cancel">Cerrar</button>
835
        </div>
15337 efrain 836
</section>
837
 
838
 
839
<!--start modal behavior-->
15404 stevensc 840
<div id="modal-behavior" class="modal" tabindex="-1" role="dialog">
841
    <div class="modal-dialog modal-lg" role="document">
842
        <form action="#" name="form-behavior" id="form-behavior">
843
            <input type="hidden" name="behavior-id" id="behavior-id" value="" />
844
            <input type="hidden" name="behavior-competency" id="behavior-competency" value="" />
845
            <div class="modal-content">
846
                <div class="modal-header">
847
                    <h4 class="modal-title">LABEL_EDIT LABEL_LEVEL</h4>
848
                    <button type="button" class="close" data-dismiss="modal" aria-label="Close">
849
                        <span aria-hidden="true">&times;</span>
850
                    </button>
851
                </div>
852
                <div class="modal-body">
853
                    <div class="form-group">
854
                        <label for="behavior-value">LABEL_LEVEL</label>
855
                        <select class="form-control" id="behavior-level" name="behavior-level">
856
                            <option value="0">LABEL_NA</option>
857
                            <option value="1">LABEL_LEVEL_ONE</option>
858
                            <option value="2">LABEL_LEVEL_TWO</option>
859
                            <option value="3">LABEL_LEVEL_THREE</option>
860
                            <option value="4">LABEL_LEVEL_FOUR</option>
861
                        </select>
862
                    </div>
863
                </div>
864
                <div class="modal-footer">
865
                    <button type="button" class="btn btn-primary btn-behavior-submit">LABEL_SAVE</button>
866
                    <button type="button" class="btn btn-secondary" data-dismiss="modal">LABEL_CLOSE</button>
867
                </div>
15337 efrain 868
            </div>
15404 stevensc 869
        </form>
870
    </div>
15337 efrain 871
</div>
872
<!---end modal behavior --->
873
 
15404 stevensc 874
<!---Template Competencies --->
875
<script id="sectionTemplate" type="text/x-jsrender">
876
    <div class="panel panel-default" id="panel-{{:competency_id}}">
15337 efrain 877
   <div class="panel-heading">
878
      <h4 class="panel-title" style="    font-size: 18px;">
879
         <a class="accordion-toggle" data-toggle="collapse" aria-expanded="true" data-parent="#panel-{{:competency_id}}" href="#collapse-{{:competency_id}}">
880
         <span class="section-name{{:competency_id}}">
881
         {{:~getType(competency_type_id).name}} - {{:name}}
882
         </span>
883
         </a>
884
      </h4>
885
   </div>
886
   <div id="collapse-{{:competency_id}}" class="panel-collapse in collapse show">
887
      <div class="panel-body">
888
         <div class="table-responsive">
889
            <table class="table table-bordered">
890
               <thead>
891
                  <tr>
892
                     <th style="width: 20%;">LABEL_ELEMENT</th>
893
                     <th style="width: 50%;">LABEL_TITLE</th>
894
                     <th style="width: 10%;">LABEL_LEVEL</th>
895
                     <th style="width: 20%;">LABEL_ACTIONS</th>
896
                  </tr>
897
               </thead>
898
               <tbody>
899
                  <tr>
900
                     <td class="text-left">LABEL_COMPETENCY</td>
901
                     <td class="text-left">{{:name}}</td>
902
                     <td>
903
                     </td>
904
                     <td>
905
                        <button  type="button" class="btn btn-default btn-delete-competency" data-competency="{{:competency_id}}" data-toggle="tooltip"  data-original-title="LABEL_DELETE LABEL_COMPETENCY"><i class="fa fa-ban" aria-hidden="true"></i> LABEL_DELETE LABEL_COMPETENCY </button>
906
                     </td>
907
                  </tr>
908
                  {{for behaviors}}
909
                  <tr >
910
                     <td class="text-left">--LABEL_CONDUCT</td>
911
                     <td class="text-left">
912
                        {{:description}}
913
                     </td>
914
                     <td>
915
                        {{if level == '0'}} LABEL_NA {{/if}}
916
                        {{if level == '1' }} LABEL_LEVEL_ONE {{/if}}
917
                        {{if level == '2' }} LABEL_LEVEL_TWO {{/if}}
918
                        {{if level == '3' }} LABEL_LEVEL_THREE {{/if}}
919
                        {{if level == '4' }} LABEL_LEVEL_FOUR {{/if}}
920
                     </td>
921
                     <td>
922
                        <button type="button"  class="btn btn-default btn-edit-behavior" data-competency="{{:competency_id}}" data-behavior="{{:behavior_id}}" data-toggle="tooltip"  data-original-title="LABEL_EDIT LABEL_LEVEL"><i class="fa fa-edit" aria-hidden="true"></i> LABEL_EDIT LABEL_LEVEL</button>
923
                     </td>
924
                  </tr>
925
                  {{/for}}
926
               </tbody>
927
            </table>
928
         </div>
929
      </div>
930
   </div>
931
</div>
932
   </script>
933
 
934
 
15404 stevensc 935
<script id="sectionJob" type="text/x-jsrender">
936
    <tr>
15337 efrain 937
   <td class="text-left">{{:name}}</td>
938
   <td>
939
      <button type="button" class="btn btn-default btn-delete-subordinate" data-subordinate="{{:job_description_id}}" data-toggle="tooltip"  data-original-title="LABEL_DELETE"><i class="fa fa-ban" aria-hidden="true"></i> LABEL_DELETE</button>
940
   </td>
941
</tr>
942
    </script>
943
 
15404 stevensc 944
<!-- End Template Competencies-->