Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15430 | Rev 15443 | 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
 
15431 stevensc 426
    CKEDITOR.replace('functions');
427
    CKEDITOR.replace('objectives');
15337 efrain 428
    /**
429
     * Clicked select competency
430
     */
431
    $('body').on('click', 'button[id="btn-select-competency"]', function(e) {
432
        if ($("#select-competency").val() == "") {
433
            $.fn.showError('LABEL_ERROR_SELECT_COMPETENCY');
434
        } else {
435
            competencies_selected.push(competencies.filter((item) => item.competency_id == $("#select-competency").val() ? item : false)[0]);
436
            $("#select-subordinate").val('');
437
            renderData(competencies_selected);
438
            setCompetencySelect();
439
        }
440
    });
441
    /**
442
     * Clicked select subordinate
443
     */
444
    $('body').on('click', 'button[id="btn-select-subordinate"]', function(e) {
445
        if ($("#select-subordinate").val() == "") {
446
            $.fn.showError('LABEL_ERROR_SELECT_DEPENDENT');
447
        } else {
448
            subordinates_selected.push(subordinates.filter((item) => item.job_description_id == $("#select-subordinate").val() ? item : false)[0]);
449
            renderSubordinateData(subordinates_selected);
450
            setSubordinateSelect();
451
        }
452
    });
453
    /**
454
     * Clicked remove subordinate
455
     */
456
    $('body').on('click', 'button.btn-delete-subordinate', function(e) {
457
        var job_description_id = $(this).data('subordinate');
458
        bootbox.confirm({
459
            title: "LABEL_DELETE LABEL_DEPENDENT",
460
            message: "LABEL_QUESTION_DELETE",
461
            buttons: {
462
                cancel: {
463
                    label: '<i class="fa fa-times"></i> LABEL_CANCEL'
464
                },
465
                confirm: {
466
                    label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
467
                }
468
            },
469
            callback: function(result) {
470
                if (result) {
471
                    subordinates_selected = subordinates_selected.filter((item) => item.job_description_id != job_description_id);
472
                    renderSubordinateData(subordinates_selected);
473
                    return setSubordinateSelect();
474
                }
475
            }
476
        });
477
    });
478
    const setCompetencySelect = () => {
479
        $('#select-competency').children().remove();
480
        $('#select-competency').append($('<option>', {
481
            value: '',
482
            text: 'LABEL_SELECT'
483
        }));
484
        $.each(competencies, function(i, item) {
485
            if (!filterItemById(item.competency_id)) {
486
                var type = filterTypeById(item.competency_type_id);
487
                $('#select-competency').append($('<option>', {
488
                    value: item.competency_id,
489
                    text: type.name + ' - ' + item.name
490
                }));
491
            }
492
        });
493
    }
494
    const setSubordinateSelect = () => {
495
        $('#select-subordinate').children().remove();
496
        $('#select-subordinate').append($('<option>', {
497
            value: '',
498
            text: 'LABEL_SELECT'
499
        }));
500
        $.each(subordinates, function(i, item) {
501
            if (!filterDependedItemById(item.job_description_id)) {
502
                $('#select-subordinate').append($('<option>', {
503
                    value: item.job_description_id,
504
                    text: item.name
505
                }));
506
            }
507
        });
508
    }
509
    /**
510
     * Render Competencies data
511
     */
512
    const renderData = (data) => {
513
        data.length > 0 ?
514
            $("#competencies-job").html($("#sectionTemplate").render(data, {
515
                getType: filterTypeById
516
            })) :
517
            $("#competencies-job").html('');
518
    }
519
    /**
520
     * Render Subordinate data
521
     */
522
    const renderSubordinateData = (data) => {
523
        data.length > 0 ?
524
            $("#subordinate").html($("#sectionJob").render(data)) :
525
            $("#subordinate").html('');
526
    }
527
    /**
528
     * Filter competencies selected
529
     */
530
    const filterItemById = (id) => competencies_selected.filter((item) => item.competency_id == id ? item : false)[0];
531
    /**
532
     * Filter depended selected
533
     */
534
    const filterDependedItemById = (id) => subordinates_selected.filter((item) => item.job_description_id == id ? item : false)[0];
535
    /**
536
     * Filter competencie type
537
     */
538
    const filterTypeById = (id) => competencies_type.filter((item) => item.competency_type_id == id ? item : false)[0];
539
    /**
540
     * Clicked remove competency
541
     */
542
    $('body').on('click', 'button.btn-delete-competency', function(e) {
543
        var id_competency = $(this).data('competency');
544
        bootbox.confirm({
545
            title: "LABEL_DELETE LABEL_COMPETENCY",
546
            message: "LABEL_QUESTION_DELETE",
547
            buttons: {
548
                cancel: {
549
                    label: '<i class="fa fa-times"></i> LABEL_CANCEL'
550
                },
551
                confirm: {
552
                    label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
553
                }
554
            },
555
            callback: function(result) {
556
                if (result) {
557
                    removeCompetency(id_competency);
558
                }
559
            }
560
        });
561
    });
562
    /**
563
     * Clicked on edit behavior
564
     */
565
    $('body').on('click', 'button.btn-edit-behavior', function(e) {
566
        e.preventDefault();
567
        var competency_id = $(this).data('competency');
568
        var behavior_id = $(this).data('behavior');
569
        competencies_selected.map((item) => {
570
            if (item.competency_id == competency_id) {
571
                item.behaviors.map((b) => {
572
                    if (b.behavior_id == behavior_id) {
573
                        $('#form-behavior #behavior-id').val(b.behavior_id);
574
                        $('#form-behavior #behavior-competency').val(b.competency_id);
575
                        $('#form-behavior #behavior-level').val(b.level);
576
                        $('#modal-behavior h4[class="modal-title"]').html('LABEL_EDIT LABEL_CONDUCT');
577
                        $('#modal-behavior').modal('show');
578
                        return;
579
                    }
580
                });
581
            }
582
        });
583
    });
584
    /**
585
     * Remove Competency
586
     */
587
    const removeCompetency = (competency_id) => {
588
        competencies_selected = competencies_selected.filter((item) => item.competency_id != competency_id);
589
        return renderData(competencies_selected);
590
    }
591
    /**
592
     * Edit item Behavior
593
     */
594
    const editBehavior = (competency_id, behavior_id, level) => {
595
        competencies_selected.map((item) => {
596
            if (item.competency_id == competency_id) {
597
                item.behaviors.map((opt) => {
598
                    if (opt.behavior_id == behavior_id) {
599
                        opt.level = level
600
                    }
601
                });
602
            }
603
        });
604
        return renderData(competencies_selected);
605
    }
606
    /**
607
     * Clicked cancel new/edit Form
608
     */
609
    $('button.btn-behavior-submit').click(function(e) {
610
        if ($("#behavior-description").val() == "") {
611
            $.fn.showError('ERROR_ENTER_DESCRIPTION');
612
            return;
613
        } else {
614
            editBehavior($("#behavior-competency").val(), $("#behavior-id").val(), $("#behavior-level").val())
615
            $('#modal-behavior').modal('hide');
616
            return;
617
        }
618
    });
619
 
620
    $('#select-subordinate').select2({
621
        theme: 'bootstrap4',
622
        width: '100%',
623
    });
624
 
625
    $('#select-competency').select2({
626
        theme: 'bootstrap4',
627
        width: '100%',
628
    });
629
 
630
    /**
631
     * Clicked cancel new/edit Form
632
     */
633
    $('body').on('click', 'button.btn-edit-cancel', function(e) {
634
        $('#row-lists').show();
635
        $('#row-form').hide();
636
    });
15431 stevensc 637
});
15425 stevensc 638
 
15337 efrain 639
JS;
640
$this->inlineScript()->captureEnd();
641
?>
642
<section class="content" id="row-lists">
643
 
15404 stevensc 644
    <!-- Content Header (Page header) -->
645
    <div class="content-header">
646
        <div class="container-fluid">
647
            <div class="row mb-2">
648
                <div class="col-sm-12">
649
                    <h1>LABEL_JOBS_DESCRIPTION</h1>
650
                </div>
15337 efrain 651
            </div>
15404 stevensc 652
        </div>
653
        <!-- /.container-fluid -->
654
    </div>
655
    <div class="container-fluid">
656
        <div class="row">
657
            <div class="col-12">
658
                <div class="card">
659
                    <div class="card-body">
660
                        <table id="gridTable" class="table   table-hover">
661
                            <thead>
662
                                <tr>
663
                                    <th>LABEL_NAME</th>
664
                                    <th>LABEL_ACTIVE</th>
665
                                    <th>LABEL_ACTIONS</th>
666
                                </tr>
667
                            </thead>
668
                            <tbody>
669
                            </tbody>
670
                        </table>
671
                    </div>
672
                    <div class="card-footer clearfix">
673
                        <div style="float:right;">
674
                            <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
675
                            <?php if ($allowAdd) : ?>
676
                                <?php if ($allowImport) : ?>
677
                                    <button type="button" class="btn btn-primary btn-import"><i class="fa fa-upload"></i> LABEL_IMPORT </button>
678
                                <?php endif; ?>
679
                                <button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
680
                            <?php endif; ?>
681
                        </div>
682
                    </div>
683
                </div>
684
            </div>
685
        </div>
686
    </div>
15337 efrain 687
</section>
688
 
689
<section id="row-form" style="display:none">
15404 stevensc 690
    <div class="container">
691
        <!-- Modal Header -->
692
        <div class="modal-header">
15430 stevensc 693
            <h4 class="modal-title">LABEL_JOB_DESCRIPTION - <span id="form-title"></span></h4>
15404 stevensc 694
        </div>
695
        <!-- Modal body -->
696
        <div class="modal-body">
697
            <div class="card card-primary card-outline card-tabs">
698
                <div class="card-header p-0 pt-1 border-bottom-0">
699
                    <ul class="nav nav-tabs" id="custom-tabs" role="tablist">
700
                        <li class="nav-item">
701
                            <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>
702
                        </li>
703
                        <li class="nav-item">
704
                            <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>
705
                        </li>
706
                        <li class="nav-item">
707
                            <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>
708
                        </li>
709
                    </ul>
710
                </div>
711
                <div class="card-body">
712
                    <?php
713
                    $form = $this->form;
714
                    $form->setAttributes([
715
                        'method'    => 'post',
716
                        'name'      => 'form',
717
                        'id'        => 'form'
718
                    ]);
719
 
720
                    $form->prepare();
721
                    echo $this->form()->openTag($form);
722
                    ?>
723
                    <input type="hidden" id="subordinates_selected" name="subordinates_selected" value="">
724
                    <input type="hidden" id="competencies_selected" name="competencies_selected" value="">
725
                    <div class="tab-content" id="custom-tabs-three-tabContent">
726
                        <div class="tab-pane fade show active" id="custom-tabs-general" role="tabpanel" aria-labelledby="custom-tabs-general-tab">
727
                            <div class="row">
728
                                <div class="col-md col-sm-12 col-12">
729
                                    <div class="form-group m-0">
730
                                        <?php
731
                                        $element = $form->get('name');
732
                                        $element->setOptions(['label' => 'LABEL_NAME']);
733
                                        $element->setAttributes(['class' => 'form-control']);
734
 
735
                                        echo $this->formLabel($element);
736
                                        echo $this->formText($element);
737
                                        ?>
738
                                    </div>
739
                                </div>
740
                                <div class="col-md col-sm-12 col-12">
741
                                    <div class="form-group m-0">
742
                                        <?php
743
                                        $element = $form->get('job_description_id_boss');
744
                                        $element->setOptions(['label' => 'LABEL_BOSS']);
745
                                        $element->setAttributes(['class' => 'form-control']);
746
 
747
                                        echo $this->formLabel($element);
748
                                        echo $this->formSelect($element);
749
                                        ?>
750
                                    </div>
751
                                </div>
752
                                <div class="col-md col-sm-12 col-12 d-flex align-items-center justify-content-center">
753
                                    <div class="form-group m-0">
754
                                        <label>LABEL_STATUS</label>
755
                                        <br />
756
                                        <?php
757
                                        $element = $form->get('status');
758
                                        $element->setOptions(['label' => 'LABEL_STATUS']);
759
                                        // echo $this->formLabel($element);
760
                                        echo $this->formCheckbox($element);
761
                                        ?>
762
                                    </div>
763
                                </div>
764
                            </div>
765
                            <div class="form-group">
766
                                <?php
767
                                $element = $form->get('objectives');
768
                                $element->setOptions(['label' => 'LABEL_OBJECTIVES']);
769
                                $element->setAttributes(['class' => 'form-control']);
770
 
771
                                echo $this->formLabel($element);
772
                                echo $this->formTextArea($element);
773
                                ?>
774
                            </div>
775
                            <div class="form-group">
776
                                <?php
777
                                $element = $form->get('functions');
778
                                $element->setOptions(['label' => 'LABEL_FUNCTIONS']);
779
                                $element->setAttributes(['class' => 'form-control']);
780
 
781
                                echo $this->formLabel($element);
782
                                echo $this->formTextArea($element);
783
                                ?>
784
                            </div>
15337 efrain 785
                        </div>
15404 stevensc 786
                        <div class="tab-pane fade" id="custom-tabs-compentencies" role="tabpanel" aria-labelledby="custom-tabs-compentencies-tab">
787
                            <div class="row">
788
                                <div class="col-md-8 col-sm-8 col-xs-12">
789
                                    <select id="select-competency" class="form-control"> </select>
790
                                </div>
791
                                <div class="col-md-4 col-sm-4 col-xs-12">
792
                                    <button type="button" class="btn btn-primary" id="btn-select-competency" data-toggle="tooltip" title="LABEL_ADD LABEL_COMPETENCY">LABEL_ADD LABEL_COMPETENCY</button>
793
                                </div>
794
                            </div>
795
                            <div class="row">
796
                                <br>
797
                                <div class="col-md-12 col-sm-12 col-xs-12" id="competencies-job" style="margin-top: 10px;">
798
                                </div>
799
                            </div>
15337 efrain 800
                        </div>
15404 stevensc 801
                        <div class="tab-pane fade" id="custom-tabs-subordinate" role="tabpanel" aria-labelledby="custom-tabs-subordinate-tab">
802
                            <div class="row">
803
                                <div class="col-md-8 col-sm-8 col-xs-12">
804
                                    <select id="select-subordinate" class="form-control"></select>
805
                                </div>
806
                                <div class="col-md-4 col-sm-4 col-xs-12">
807
                                    <button type="button" class="btn btn-primary" id="btn-select-subordinate" data-toggle="tooltip" title="LABEL_ADD ">LABEL_ADD </button>
808
                                </div>
809
                            </div>
810
                            <div class="row">
811
                                <div class="col-md-12 col-sm-12 col-xs-12" style="margin-top: 10px;">
812
                                    <table class="table table-bordered">
813
                                        <thead>
814
                                            <tr>
815
                                                <th style="width: 60%;">LABEL_NAME</th>
816
                                                <th style="width: 20%;">LABEL_ACTIONS</th>
817
                                            </tr>
818
                                        </thead>
819
                                        <tbody id="subordinate"></tbody>
820
                                    </table>
821
                                </div>
822
                            </div>
15337 efrain 823
                        </div>
15404 stevensc 824
                    </div>
825
                </div>
15337 efrain 826
            </div>
15404 stevensc 827
            <?php echo $this->form()->closeTag($form); ?>
828
            <!-- /.card -->
829
        </div>
830
        <!-- Modal footer -->
831
        <div class="modal-footer">
832
            <button type="submit" form="form" class="btn btn-primary">LABEL_SAVE</button>
833
            <button type="button" class="btn btn-danger btn-edit-cancel">Cerrar</button>
834
        </div>
15337 efrain 835
</section>
836
 
837
 
838
<!--start modal behavior-->
15404 stevensc 839
<div id="modal-behavior" class="modal" tabindex="-1" role="dialog">
840
    <div class="modal-dialog modal-lg" role="document">
841
        <form action="#" name="form-behavior" id="form-behavior">
842
            <input type="hidden" name="behavior-id" id="behavior-id" value="" />
843
            <input type="hidden" name="behavior-competency" id="behavior-competency" value="" />
844
            <div class="modal-content">
845
                <div class="modal-header">
846
                    <h4 class="modal-title">LABEL_EDIT LABEL_LEVEL</h4>
847
                    <button type="button" class="close" data-dismiss="modal" aria-label="Close">
848
                        <span aria-hidden="true">&times;</span>
849
                    </button>
850
                </div>
851
                <div class="modal-body">
852
                    <div class="form-group">
853
                        <label for="behavior-value">LABEL_LEVEL</label>
854
                        <select class="form-control" id="behavior-level" name="behavior-level">
855
                            <option value="0">LABEL_NA</option>
856
                            <option value="1">LABEL_LEVEL_ONE</option>
857
                            <option value="2">LABEL_LEVEL_TWO</option>
858
                            <option value="3">LABEL_LEVEL_THREE</option>
859
                            <option value="4">LABEL_LEVEL_FOUR</option>
860
                        </select>
861
                    </div>
862
                </div>
863
                <div class="modal-footer">
864
                    <button type="button" class="btn btn-primary btn-behavior-submit">LABEL_SAVE</button>
865
                    <button type="button" class="btn btn-secondary" data-dismiss="modal">LABEL_CLOSE</button>
866
                </div>
15337 efrain 867
            </div>
15404 stevensc 868
        </form>
869
    </div>
15337 efrain 870
</div>
871
<!---end modal behavior --->
872
 
15404 stevensc 873
<!---Template Competencies --->
874
<script id="sectionTemplate" type="text/x-jsrender">
875
    <div class="panel panel-default" id="panel-{{:competency_id}}">
15337 efrain 876
   <div class="panel-heading">
877
      <h4 class="panel-title" style="    font-size: 18px;">
878
         <a class="accordion-toggle" data-toggle="collapse" aria-expanded="true" data-parent="#panel-{{:competency_id}}" href="#collapse-{{:competency_id}}">
879
         <span class="section-name{{:competency_id}}">
880
         {{:~getType(competency_type_id).name}} - {{:name}}
881
         </span>
882
         </a>
883
      </h4>
884
   </div>
885
   <div id="collapse-{{:competency_id}}" class="panel-collapse in collapse show">
886
      <div class="panel-body">
887
         <div class="table-responsive">
888
            <table class="table table-bordered">
889
               <thead>
890
                  <tr>
891
                     <th style="width: 20%;">LABEL_ELEMENT</th>
892
                     <th style="width: 50%;">LABEL_TITLE</th>
893
                     <th style="width: 10%;">LABEL_LEVEL</th>
894
                     <th style="width: 20%;">LABEL_ACTIONS</th>
895
                  </tr>
896
               </thead>
897
               <tbody>
898
                  <tr>
899
                     <td class="text-left">LABEL_COMPETENCY</td>
900
                     <td class="text-left">{{:name}}</td>
901
                     <td>
902
                     </td>
903
                     <td>
904
                        <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>
905
                     </td>
906
                  </tr>
907
                  {{for behaviors}}
908
                  <tr >
909
                     <td class="text-left">--LABEL_CONDUCT</td>
910
                     <td class="text-left">
911
                        {{:description}}
912
                     </td>
913
                     <td>
914
                        {{if level == '0'}} LABEL_NA {{/if}}
915
                        {{if level == '1' }} LABEL_LEVEL_ONE {{/if}}
916
                        {{if level == '2' }} LABEL_LEVEL_TWO {{/if}}
917
                        {{if level == '3' }} LABEL_LEVEL_THREE {{/if}}
918
                        {{if level == '4' }} LABEL_LEVEL_FOUR {{/if}}
919
                     </td>
920
                     <td>
921
                        <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>
922
                     </td>
923
                  </tr>
924
                  {{/for}}
925
               </tbody>
926
            </table>
927
         </div>
928
      </div>
929
   </div>
930
</div>
931
   </script>
932
 
933
 
15404 stevensc 934
<script id="sectionJob" type="text/x-jsrender">
935
    <tr>
15337 efrain 936
   <td class="text-left">{{:name}}</td>
937
   <td>
938
      <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>
939
   </td>
940
</tr>
941
    </script>
942
 
15404 stevensc 943
<!-- End Template Competencies-->