Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15428 | Rev 15430 | 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
 
15427 stevensc 639
    CKEDITOR.editorConfig = function( config ) {
15428 stevensc 640
        config.config.toolbar = [
641
            [ 'Source', '-', 'Bold', 'Italic' ]
642
        ];
15427 stevensc 643
    };
15426 stevensc 644
 
15337 efrain 645
});
646
JS;
647
$this->inlineScript()->captureEnd();
648
?>
649
<section class="content" id="row-lists">
650
 
15404 stevensc 651
    <!-- Content Header (Page header) -->
652
    <div class="content-header">
653
        <div class="container-fluid">
654
            <div class="row mb-2">
655
                <div class="col-sm-12">
656
                    <h1>LABEL_JOBS_DESCRIPTION</h1>
657
                </div>
15337 efrain 658
            </div>
15404 stevensc 659
        </div>
660
        <!-- /.container-fluid -->
661
    </div>
662
    <div class="container-fluid">
663
        <div class="row">
664
            <div class="col-12">
665
                <div class="card">
666
                    <div class="card-body">
667
                        <table id="gridTable" class="table   table-hover">
668
                            <thead>
669
                                <tr>
670
                                    <th>LABEL_NAME</th>
671
                                    <th>LABEL_ACTIVE</th>
672
                                    <th>LABEL_ACTIONS</th>
673
                                </tr>
674
                            </thead>
675
                            <tbody>
676
                            </tbody>
677
                        </table>
678
                    </div>
679
                    <div class="card-footer clearfix">
680
                        <div style="float:right;">
681
                            <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
682
                            <?php if ($allowAdd) : ?>
683
                                <?php if ($allowImport) : ?>
684
                                    <button type="button" class="btn btn-primary btn-import"><i class="fa fa-upload"></i> LABEL_IMPORT </button>
685
                                <?php endif; ?>
686
                                <button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
687
                            <?php endif; ?>
688
                        </div>
689
                    </div>
690
                </div>
691
            </div>
692
        </div>
693
    </div>
15337 efrain 694
</section>
695
 
696
<section id="row-form" style="display:none">
15404 stevensc 697
    <div class="container">
698
        <!-- Modal Header -->
699
        <div class="modal-header">
15429 stevensc 700
            <h4 class="modal-title">LABEL_JOB_DESCRIPTION<span id="form-title"></span></h4>
15404 stevensc 701
        </div>
702
        <!-- Modal body -->
703
        <div class="modal-body">
704
            <div class="card card-primary card-outline card-tabs">
705
                <div class="card-header p-0 pt-1 border-bottom-0">
706
                    <ul class="nav nav-tabs" id="custom-tabs" role="tablist">
707
                        <li class="nav-item">
708
                            <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>
709
                        </li>
710
                        <li class="nav-item">
711
                            <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>
712
                        </li>
713
                        <li class="nav-item">
714
                            <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>
715
                        </li>
716
                    </ul>
717
                </div>
718
                <div class="card-body">
719
                    <?php
720
                    $form = $this->form;
721
                    $form->setAttributes([
722
                        'method'    => 'post',
723
                        'name'      => 'form',
724
                        'id'        => 'form'
725
                    ]);
726
 
727
                    $form->prepare();
728
                    echo $this->form()->openTag($form);
729
                    ?>
730
                    <input type="hidden" id="subordinates_selected" name="subordinates_selected" value="">
731
                    <input type="hidden" id="competencies_selected" name="competencies_selected" value="">
732
                    <div class="tab-content" id="custom-tabs-three-tabContent">
733
                        <div class="tab-pane fade show active" id="custom-tabs-general" role="tabpanel" aria-labelledby="custom-tabs-general-tab">
734
                            <div class="row">
735
                                <div class="col-md col-sm-12 col-12">
736
                                    <div class="form-group m-0">
737
                                        <?php
738
                                        $element = $form->get('name');
739
                                        $element->setOptions(['label' => 'LABEL_NAME']);
740
                                        $element->setAttributes(['class' => 'form-control']);
741
 
742
                                        echo $this->formLabel($element);
743
                                        echo $this->formText($element);
744
                                        ?>
745
                                    </div>
746
                                </div>
747
                                <div class="col-md col-sm-12 col-12">
748
                                    <div class="form-group m-0">
749
                                        <?php
750
                                        $element = $form->get('job_description_id_boss');
751
                                        $element->setOptions(['label' => 'LABEL_BOSS']);
752
                                        $element->setAttributes(['class' => 'form-control']);
753
 
754
                                        echo $this->formLabel($element);
755
                                        echo $this->formSelect($element);
756
                                        ?>
757
                                    </div>
758
                                </div>
759
                                <div class="col-md col-sm-12 col-12 d-flex align-items-center justify-content-center">
760
                                    <div class="form-group m-0">
761
                                        <label>LABEL_STATUS</label>
762
                                        <br />
763
                                        <?php
764
                                        $element = $form->get('status');
765
                                        $element->setOptions(['label' => 'LABEL_STATUS']);
766
                                        // echo $this->formLabel($element);
767
                                        echo $this->formCheckbox($element);
768
                                        ?>
769
                                    </div>
770
                                </div>
771
                            </div>
772
                            <div class="form-group">
773
                                <?php
774
                                $element = $form->get('objectives');
775
                                $element->setOptions(['label' => 'LABEL_OBJECTIVES']);
776
                                $element->setAttributes(['class' => 'form-control']);
777
 
778
                                echo $this->formLabel($element);
779
                                echo $this->formTextArea($element);
780
                                ?>
781
                            </div>
782
                            <div class="form-group">
783
                                <?php
784
                                $element = $form->get('functions');
785
                                $element->setOptions(['label' => 'LABEL_FUNCTIONS']);
786
                                $element->setAttributes(['class' => 'form-control']);
787
 
788
                                echo $this->formLabel($element);
789
                                echo $this->formTextArea($element);
790
                                ?>
791
                            </div>
15337 efrain 792
                        </div>
15404 stevensc 793
                        <div class="tab-pane fade" id="custom-tabs-compentencies" role="tabpanel" aria-labelledby="custom-tabs-compentencies-tab">
794
                            <div class="row">
795
                                <div class="col-md-8 col-sm-8 col-xs-12">
796
                                    <select id="select-competency" class="form-control"> </select>
797
                                </div>
798
                                <div class="col-md-4 col-sm-4 col-xs-12">
799
                                    <button type="button" class="btn btn-primary" id="btn-select-competency" data-toggle="tooltip" title="LABEL_ADD LABEL_COMPETENCY">LABEL_ADD LABEL_COMPETENCY</button>
800
                                </div>
801
                            </div>
802
                            <div class="row">
803
                                <br>
804
                                <div class="col-md-12 col-sm-12 col-xs-12" id="competencies-job" style="margin-top: 10px;">
805
                                </div>
806
                            </div>
15337 efrain 807
                        </div>
15404 stevensc 808
                        <div class="tab-pane fade" id="custom-tabs-subordinate" role="tabpanel" aria-labelledby="custom-tabs-subordinate-tab">
809
                            <div class="row">
810
                                <div class="col-md-8 col-sm-8 col-xs-12">
811
                                    <select id="select-subordinate" class="form-control"></select>
812
                                </div>
813
                                <div class="col-md-4 col-sm-4 col-xs-12">
814
                                    <button type="button" class="btn btn-primary" id="btn-select-subordinate" data-toggle="tooltip" title="LABEL_ADD ">LABEL_ADD </button>
815
                                </div>
816
                            </div>
817
                            <div class="row">
818
                                <div class="col-md-12 col-sm-12 col-xs-12" style="margin-top: 10px;">
819
                                    <table class="table table-bordered">
820
                                        <thead>
821
                                            <tr>
822
                                                <th style="width: 60%;">LABEL_NAME</th>
823
                                                <th style="width: 20%;">LABEL_ACTIONS</th>
824
                                            </tr>
825
                                        </thead>
826
                                        <tbody id="subordinate"></tbody>
827
                                    </table>
828
                                </div>
829
                            </div>
15337 efrain 830
                        </div>
15404 stevensc 831
                    </div>
832
                </div>
15337 efrain 833
            </div>
15404 stevensc 834
            <?php echo $this->form()->closeTag($form); ?>
835
            <!-- /.card -->
836
        </div>
837
        <!-- Modal footer -->
838
        <div class="modal-footer">
839
            <button type="submit" form="form" class="btn btn-primary">LABEL_SAVE</button>
840
            <button type="button" class="btn btn-danger btn-edit-cancel">Cerrar</button>
841
        </div>
15337 efrain 842
</section>
843
 
844
 
845
<!--start modal behavior-->
15404 stevensc 846
<div id="modal-behavior" class="modal" tabindex="-1" role="dialog">
847
    <div class="modal-dialog modal-lg" role="document">
848
        <form action="#" name="form-behavior" id="form-behavior">
849
            <input type="hidden" name="behavior-id" id="behavior-id" value="" />
850
            <input type="hidden" name="behavior-competency" id="behavior-competency" value="" />
851
            <div class="modal-content">
852
                <div class="modal-header">
853
                    <h4 class="modal-title">LABEL_EDIT LABEL_LEVEL</h4>
854
                    <button type="button" class="close" data-dismiss="modal" aria-label="Close">
855
                        <span aria-hidden="true">&times;</span>
856
                    </button>
857
                </div>
858
                <div class="modal-body">
859
                    <div class="form-group">
860
                        <label for="behavior-value">LABEL_LEVEL</label>
861
                        <select class="form-control" id="behavior-level" name="behavior-level">
862
                            <option value="0">LABEL_NA</option>
863
                            <option value="1">LABEL_LEVEL_ONE</option>
864
                            <option value="2">LABEL_LEVEL_TWO</option>
865
                            <option value="3">LABEL_LEVEL_THREE</option>
866
                            <option value="4">LABEL_LEVEL_FOUR</option>
867
                        </select>
868
                    </div>
869
                </div>
870
                <div class="modal-footer">
871
                    <button type="button" class="btn btn-primary btn-behavior-submit">LABEL_SAVE</button>
872
                    <button type="button" class="btn btn-secondary" data-dismiss="modal">LABEL_CLOSE</button>
873
                </div>
15337 efrain 874
            </div>
15404 stevensc 875
        </form>
876
    </div>
15337 efrain 877
</div>
878
<!---end modal behavior --->
879
 
15404 stevensc 880
<!---Template Competencies --->
881
<script id="sectionTemplate" type="text/x-jsrender">
882
    <div class="panel panel-default" id="panel-{{:competency_id}}">
15337 efrain 883
   <div class="panel-heading">
884
      <h4 class="panel-title" style="    font-size: 18px;">
885
         <a class="accordion-toggle" data-toggle="collapse" aria-expanded="true" data-parent="#panel-{{:competency_id}}" href="#collapse-{{:competency_id}}">
886
         <span class="section-name{{:competency_id}}">
887
         {{:~getType(competency_type_id).name}} - {{:name}}
888
         </span>
889
         </a>
890
      </h4>
891
   </div>
892
   <div id="collapse-{{:competency_id}}" class="panel-collapse in collapse show">
893
      <div class="panel-body">
894
         <div class="table-responsive">
895
            <table class="table table-bordered">
896
               <thead>
897
                  <tr>
898
                     <th style="width: 20%;">LABEL_ELEMENT</th>
899
                     <th style="width: 50%;">LABEL_TITLE</th>
900
                     <th style="width: 10%;">LABEL_LEVEL</th>
901
                     <th style="width: 20%;">LABEL_ACTIONS</th>
902
                  </tr>
903
               </thead>
904
               <tbody>
905
                  <tr>
906
                     <td class="text-left">LABEL_COMPETENCY</td>
907
                     <td class="text-left">{{:name}}</td>
908
                     <td>
909
                     </td>
910
                     <td>
911
                        <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>
912
                     </td>
913
                  </tr>
914
                  {{for behaviors}}
915
                  <tr >
916
                     <td class="text-left">--LABEL_CONDUCT</td>
917
                     <td class="text-left">
918
                        {{:description}}
919
                     </td>
920
                     <td>
921
                        {{if level == '0'}} LABEL_NA {{/if}}
922
                        {{if level == '1' }} LABEL_LEVEL_ONE {{/if}}
923
                        {{if level == '2' }} LABEL_LEVEL_TWO {{/if}}
924
                        {{if level == '3' }} LABEL_LEVEL_THREE {{/if}}
925
                        {{if level == '4' }} LABEL_LEVEL_FOUR {{/if}}
926
                     </td>
927
                     <td>
928
                        <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>
929
                     </td>
930
                  </tr>
931
                  {{/for}}
932
               </tbody>
933
            </table>
934
         </div>
935
      </div>
936
   </div>
937
</div>
938
   </script>
939
 
940
 
15404 stevensc 941
<script id="sectionJob" type="text/x-jsrender">
942
    <tr>
15337 efrain 943
   <td class="text-left">{{:name}}</td>
944
   <td>
945
      <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>
946
   </td>
947
</tr>
948
    </script>
949
 
15404 stevensc 950
<!-- End Template Competencies-->