Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
15430 stevensc 1
<?php
2
 
66 efrain 3
use LeadersLinked\Model\JobDescription;
4
 
5
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
6
$currentUser    = $this->currentUserHelper();
7
 
8
$roleName = $currentUser->getUserTypeId();
9
 
15394 efrain 10
 
15443 efrain 11
$routeAdd       = $this->url('jobs-description/add');
12
$routeDatatable = $this->url('jobs-description');
13
$routeImport    = $this->url('jobs-description/import');
66 efrain 14
$routeDashboard = $this->url('dashboard');
15
 
15443 efrain 16
$allowAdd               = $acl->isAllowed($roleName, 'jobs-description/add') ? 1 : 0;
17
$allowEdit              = $acl->isAllowed($roleName, 'jobs-description/edit') ? 1 : 0;
18
$allowDelete            = $acl->isAllowed($roleName, 'jobs-description/delete') ? 1 : 0;
19
$allowReport            = $acl->isAllowed($roleName, 'jobs-description/report') ? 1 : 0;
20
$allowImport            = $acl->isAllowed($roleName, 'jobs-description/import') ? 1 : 0;
66 efrain 21
 
22
 
16822 efrain 23
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
24
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
16842 efrain 25
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-maxlength/bootstrap-maxlength.min.js'));
15394 efrain 26
 
16822 efrain 27
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/jquery.validate.js'));
28
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/additional-methods.js'));
29
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/localization/messages_es.js'));
15394 efrain 30
 
16822 efrain 31
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
32
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
15394 efrain 33
 
16822 efrain 34
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
35
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
36
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
37
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.min.js'));
15394 efrain 38
 
16822 efrain 39
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
40
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
66 efrain 41
 
15394 efrain 42
 
43
 
1227 geraldo 44
 
16822 efrain 45
$this->inlineScript()->appendFile($this->basePath('assets/vendors/select2/js/select2.js'));
46
$this->inlineScript()->appendFile($this->basePath('assets/vendors/select2/js/i18n/es.js'));
47
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2/css/select2.css'));
48
 
49
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2-bootstrap4-theme/select2-bootstrap4.css'));
50
 
15394 efrain 51
// JsRender //
16822 efrain 52
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jsrender/jsrender.min.js'));
15394 efrain 53
 
16822 efrain 54
$this->inlineScript()->appendFile($this->basePath('assets/vendors/orgchart/js/jquery.orgchart.js'));
55
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/orgchart/css/jquery.orgchart.css'));
15394 efrain 56
 
16845 efrain 57
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootbox/bootbox.all.js'));
16787 efrain 58
 
15394 efrain 59
$status_active = JobDescription::STATUS_ACTIVE;
16778 efrain 60
$status_inactive = JobDescription::STATUS_INACTIVE;
15394 efrain 61
 
16787 efrain 62
$this->headStyle()->captureStart();
63
echo <<<CSS
64
div.orgchart
65
{
66
    width: 100%;
67
    height: 600px
68
}
69
CSS;
70
$this->headStyle()->captureEnd();
71
 
72
 
15394 efrain 73
$this->inlineScript()->captureStart();
74
echo <<<JS
75
 
76
 
77
jQuery(document).ready(function($) {
78
 
16770 efrain 79
 
80
 
15443 efrain 81
    var competencies_selected = new Array();
82
    var behaviors = new Array();
83
    var competency_types = new Array();
84
    var competencies = new Array();
15394 efrain 85
 
86
    var allowEdit = $allowEdit;
87
    var allowDelete = $allowDelete;
88
    var allowReport = $allowReport;
89
 
90
 
16787 efrain 91
    var datasource = {};
92
    var dataactions = [];
93
    var oc = null;
94
 
15394 efrain 95
    $.fn.renderCompetencies = function() {
96
        if(competencies_selected.length > 0) {
16766 efrain 97
 
98
 
15394 efrain 99
            $('#renderCompetencies').html($('#competencyTemplate').render(competencies_selected, {
100
                getCompetencyType: (uuid) => competency_types.filter((item) => item.uuid == uuid ? item : false)[0],
101
                getCompetency: (uuid) => competencies.filter((item) => item.uuid == uuid ? item : false)[0],
102
                getBehavior: (uuid) => behaviors.filter((item) => item.uuid == uuid ? item : false)[0]
103
            }));
104
        } else {
105
            $('#renderCompetencies').html('');
106
        }
107
    }
108
 
109
    $.fn.comboCompetencies = function() {
110
        $('#select-competency').children().remove();
111
        $.each(competency_types, function(i, competency_type) {
112
            competencies_filtered = competencies.filter((item) => item.competency_type_uuid == competency_type.uuid ? item : false)
113
            $.each(competencies_filtered, function(i, competency) {
114
 
115
 
116
                selected = competencies_selected.filter((item) => item.uuid == competency.uuid ? item : false)[0];
117
                if(!selected) {
118
                    $('#select-competency').append($('<option>', {
119
                        value: competency.uuid,
120
                        text: competency_type.name +  ' - ' + competency.name
121
                    }));
122
                }
123
 
124
            });
125
        });
126
 
127
    }
128
 
129
 
130
 
131
    $.validator.setDefaults({
132
        debug: true,
133
        highlight: function(element) {
134
            $(element).addClass('is-invalid');
135
        },
136
        unhighlight: function(element) {
137
            $(element).removeClass('is-invalid');
138
        },
139
        errorElement: 'span',
140
        errorClass: 'error invalid-feedback',
141
        errorPlacement: function(error, element) {
142
            if (element.parent('.form-group').length) {
143
                error.insertAfter(element);
144
            } else if (element.parent('.toggle').length) {
145
                error.insertAfter(element.parent().parent());
146
            } else {
147
                error.insertAfter(element.parent());
148
            }
149
        }
150
    });
151
 
152
    $.fn.showFormErrorValidator = function(fieldname, errors) {
153
        var field = $(fieldname);
154
        if (field) {
155
            $(field).addClass('is-invalid');
156
            var error = $('<span id="' + fieldname + '-error" class="error invalid-feedback">' + errors + '</div>');
157
            if (field.parent('.form-group').length) {
158
                error.insertAfter(field);
159
            } else if (field.parent('.toggle').length) {
160
                error.insertAfter(field.parent().parent());
161
            } else {
162
                error.insertAfter(field.parent());
163
            }
164
        }
165
    };
166
 
16770 efrain 167
 
168
 
16779 efrain 169
 
16787 efrain 170
    $.fn.recursiveTree = function(parent_branch, parent_item) {
171
        $.each(parent_item, function(i, item) {
172
            dataactions.push({
173
                'uuid' : item['uuid'],
174
                'link_report' : item['link_report'],
175
                'link_edit' : item['link_edit'],
176
                'link_delete' : item['link_delete'],
177
            })
16779 efrain 178
 
16787 efrain 179
            var branch  = {
180
                'uuid' : item['uuid'],
181
                'name' : item['name'],
182
                'children' : [
16770 efrain 183
 
16787 efrain 184
                ]
185
            }
16770 efrain 186
 
16787 efrain 187
            if(item.children.length > 0) {
188
                $.fn.recursiveTree(branch, item.children);
189
            }
16779 efrain 190
 
16787 efrain 191
            parent_branch.children.push(branch)
16779 efrain 192
 
16787 efrain 193
        });
16770 efrain 194
 
16787 efrain 195
    }
16770 efrain 196
 
197
 
198
 
199
 
200
    $.fn.refreshTree = function() {
201
        NProgress.start();
202
        $.ajax({
203
            'dataType': 'json',
204
            'accept': 'application/json',
205
            'method': 'get',
206
            'url': '$routeDatatable',
207
        }).done(function(response) {
208
            if (response['success']) {
16787 efrain 209
                dataactions = [];
210
                datasource = {
211
                    'uuid' : 'n-a',
212
                    'name' : '$company_name',
213
                    'children' : [
214
 
215
                    ]
216
                }
217
 
218
 
219
                $.fn.recursiveTree(datasource, response['data']['items']);
220
 
221
 
222
 
223
                oc.init({ 'data': datasource });
224
                oc.\$chart.find('.node').on('mouseover', function(e) {
225
                    e.preventDefault();
226
 
227
                    $('.horizontalEdge').hide();
228
                    $('.verticalEdge').hide();
16770 efrain 229
                });
16787 efrain 230
 
231
                oc.\$chart.find('.node').on('click', function() {
232
                    var message = $(this).children('.title').text();
233
 
234
 
235
                    if(!allowEdit && !allowDelete && !allowReport) {
236
                        return;
237
                    }
238
 
239
 
240
                    var uuid = $(this).attr('id');
241
                    var link_report = '';
242
                    var link_edit = '';
243
                    var link_delete = '';
244
 
245
                    $.each(dataactions, function(i, item) {
246
                        if(uuid == item.uuid) {
247
                            link_report = item.link_report;
248
                            link_edit = item.link_edit;
249
                            link_delete = item.link_delete;
250
                        }
251
                    });
252
 
253
                    var buttons =  {}
254
 
255
                    buttons.cancel = {
256
                        label: 'LABEL_CANCEL',
16845 efrain 257
                        className: 'btn-secondary',
16787 efrain 258
                        callback: function(){
259
                            console.log('CANCEL clicked');
260
                        }
261
                    };
262
 
263
 
264
                    if(allowEdit && link_edit) {
265
                        buttons.edit = {
266
                            label: 'LABEL_EDIT',
16845 efrain 267
                            className: ' btn-primary',
16787 efrain 268
                            callback: function(){
269
 
270
                                setTimeout(() => {
271
                                    $.fn.editJobDescription(link_edit);
272
                                },  250);
273
 
274
                            }
275
                        };
276
                    }
277
                    if(allowDelete && link_delete) {
278
                        buttons.delete = {
279
                            label: 'LABEL_DELETE',
16845 efrain 280
                            className: 'btn-danger',
16787 efrain 281
                            callback: function(){
282
                                setTimeout(() => {
283
                                    $.fn.deleteJobDescription(link_delete);
284
                                },  250);
285
 
286
 
287
 
288
 
289
                            }
290
                        };
291
                    }
292
 
293
                    if(allowReport && link_report) {
294
                        buttons.report = {
295
                            label: 'LABEL_REPORT',
16845 efrain 296
                            className: 'btn-info',
16787 efrain 297
                            callback: function() {
298
                                setTimeout(() => {
299
                                    $.fn.reportJobDescription(link_report);
300
                                },  250);
301
                            }
302
                        };
303
                    }
304
 
305
 
16845 efrain 306
 
307
 
16787 efrain 308
                    let dialog = bootbox.dialog({
309
                        title: 'LABEL_JOB_DESCRIPTION',
310
                        message: message,
311
                        size: 'large',
312
                        buttons: buttons,
313
                    });
314
                    dialog.show();
315
 
316
                });
317
 
16770 efrain 318
            } else {
319
                $.fn.showError(response['data']);
320
            }
321
        }).fail(function(jqXHR, textStatus, errorThrown) {
322
            $.fn.showError(textStatus);
323
         }).always(function() {
324
            NProgress.done();
325
        });
326
    }
327
 
15394 efrain 328
    var validator = $('#form').validate({
329
        debug: true,
330
        onclick: false,
331
        onkeyup: false,
332
        ignore: [],
333
        rules: {
334
            'name': {
335
                required: true,
336
                maxlength: 64,
337
            },
338
            'functions': {
339
                required: true,
15443 efrain 340
                maxlength: 1024,
15394 efrain 341
            },
342
            'objectives': {
15443 efrain 343
               required: true,
344
                maxlength: 1024,
15394 efrain 345
            },
346
            'status': {
347
                required: false,
348
            },
16787 efrain 349
            'job_description_id_boss' : {
350
                required: false,
351
            },
15394 efrain 352
        },
353
        submitHandler: function(form) {
354
 
16778 efrain 355
 
356
 
15394 efrain 357
            var data = {
358
                name : $('#form #name').val(),
359
                functions : $('#form #functions').val(),
360
                objectives : $('#form #objectives').val(),
16778 efrain 361
                status :  $('#form #status').prop('checked') ?  '$status_active' : '$status_inactive',
16787 efrain 362
                job_description_id_boss: $('#form #job_description_id_boss').val(),
15394 efrain 363
                competencies_selected : new Array(),
364
            };
365
 
366
 
367
            $.each(competencies_selected, function(i, c) {
368
                $.each(c.behaviors, function(i, b) {
369
                    data.competencies_selected.push({'competency_uuid' : c.uuid, 'behavior_uuid' : b.uuid, 'level' : b.level});
370
                });
371
            });
372
 
373
 
374
            NProgress.start();
375
            $.ajax({
376
                'dataType': 'json',
377
                'accept': 'application/json',
378
                'method': 'post',
379
                'url': $('#form').attr('action'),
380
                'data': data,
381
            }).done(function(response) {
382
                if (response['success']) {
383
                    $.fn.showSuccess(response['data']);
384
                    $('#row-lists').show();
385
                    $('#row-form').hide();
16770 efrain 386
                    $.fn.refreshTree();
15394 efrain 387
                } else {
388
                    validator.resetForm();
389
                    if (jQuery.type(response['data']) == 'string') {
390
                        $.fn.showError(response['data']);
391
                    } else {
392
                        $.each(response['data'], function(fieldname, errors) {
393
                            $.fn.showFormErrorValidator('#form #' + fieldname, errors);
394
                        });
395
                    }
396
                }
397
            }).fail(function(jqXHR, textStatus, errorThrown) {
398
                $.fn.showError(textStatus);
399
            }).always(function() {
400
                NProgress.done();
401
            });
402
            return false;
403
        },
404
        invalidHandler: function(form, validator) {}
405
    });
406
 
16770 efrain 407
    $('body').on('click', 'button.btn-refresh', function(e) {
15394 efrain 408
        e.preventDefault();
16770 efrain 409
        $.fn.refreshTree();
410
    });
411
 
412
    $('body').on('click', 'button.btn-cancel', function(e) {
413
        e.preventDefault();
414
        $('#row-lists').show();
415
        $('#row-form').hide();
416
        $('#div-listing').show();
417
    });
418
 
419
    $('body').on('click', 'button.btn-import', function(e) {
420
        e.preventDefault();
15394 efrain 421
        NProgress.start();
422
        $.ajax({
423
            'dataType': 'json',
16770 efrain 424
            'method': 'post',
425
            'url': '$routeImport',
426
        }).done(function(response) {
427
            if (response['success']) {
428
                $.fn.showSuccess(response['data']);
429
                $.fn.refreshTree();
430
            } else {
431
                $.fn.showError(response['data']);
432
            }
433
        }).fail(function(jqXHR, textStatus, errorThrown) {
434
            $.fn.showError(textStatus);
435
        }).always(function() {
436
            NProgress.done();
437
        });
438
        return false;
439
    });
440
 
441
    $('body').on('click', 'button.btn-add-job-description', function(e) {
442
        e.preventDefault();
443
 
16787 efrain 444
        var action = $(this).data('link');
15394 efrain 445
 
16787 efrain 446
        NProgress.start();
447
        $.ajax({
448
            'dataType': 'json',
449
            'accept': 'application/json',
450
            'method': 'get',
451
            'url' : '$routeAdd',
452
        }).done(function(response) {
16778 efrain 453
 
16787 efrain 454
            if (response['success']) {
455
                behaviors = response['data']['behaviors'];
456
                competency_types = response['data']['competency_types'];
457
                competencies = response['data']['competencies'];
16778 efrain 458
 
459
 
16787 efrain 460
                competencies_selected = [];
461
                $.each(competencies, function(i, competency) {
462
                    $.each(competency.behaviors, function(j, behavior) {
463
                        competencies[i].behaviors[j].level = 0;
16770 efrain 464
                    });
16787 efrain 465
                });
16778 efrain 466
 
16787 efrain 467
                $.fn.renderCompetencies();
468
                $.fn.comboCompetencies();
16778 efrain 469
 
16840 efrain 470
 
16787 efrain 471
                $('#form').attr('action', action);
472
                $('#form #name').val('');
473
                $('#form #status').bootstrapToggle('on');
16778 efrain 474
 
16787 efrain 475
                $('#form #functions').val('');
476
                $('#form #objectives').val('');
477
 
478
 
479
                $('#job_description_id_boss').empty();
480
                $.each(response['data']['jobs_description'], function(id, text) {
481
 
482
                    var option = new Option(text, id, false, false);
483
                    $('#job_description_id_boss').append(option).trigger('change');
484
                });
485
                $('#job_description_id_boss').trigger('change');
486
                $('#job_description_id_boss').val('').trigger('change');
16778 efrain 487
 
16787 efrain 488
                validator.resetForm();
16778 efrain 489
 
490
 
16787 efrain 491
                $('#custom-tabs #custom-tabs-general-tab').tab('show');
492
                $('#row-lists').hide();
493
                $('#row-form').show();
16778 efrain 494
 
16787 efrain 495
            } else   {
496
                $.fn.showError(response['data']);
497
            }
16778 efrain 498
 
16787 efrain 499
        }).fail(function(jqXHR, textStatus, errorThrown) {
500
            $.fn.showError(textStatus);
501
        }).always(function() {
502
            NProgress.done();
503
        });
504
    });
15394 efrain 505
 
16787 efrain 506
    $.fn.deleteJobDescription = function(action)
507
    {
16822 efrain 508
        swal.fire({
509
            title: 'LABEL_ARE_YOU_SURE',
510
            icon: 'question',
511
            cancelButtonText: 'LABEL_NO',
512
            showCancelButton: true,
513
            confirmButtonText: 'LABEL_YES'
514
          }).then((result) => {
515
            if (result.isConfirmed) {
16787 efrain 516
                    NProgress.start();
517
                    $.ajax({
518
                        'dataType'  : 'json',
519
                        'accept'    : 'application/json',
520
                        'method'    : 'post',
521
                        'url'       :  action,
522
                    }).done(function(response) {
523
                        if(response['success']) {
524
                            $.fn.showSuccess(response['data']);
525
                            $.fn.refreshTree();
526
                        } else {
527
                            $.fn.showError(response['data']);
528
                        }
529
                    }).fail(function( jqXHR, textStatus, errorThrown) {
530
                        $.fn.showError(textStatus);
531
                    }).always(function() {
532
                        NProgress.done();
533
                    });
16845 efrain 534
 
16787 efrain 535
            }
536
        });
16778 efrain 537
    }
15394 efrain 538
 
16787 efrain 539
    $.fn.editJobDescription = function(action)
540
    {
541
        NProgress.start();
15394 efrain 542
 
543
        $.ajax({
544
            'dataType': 'json',
16770 efrain 545
            'accept': 'application/json',
546
            'method': 'get',
547
            'url': action,
15394 efrain 548
        }).done(function(response) {
549
            if (response['success']) {
16840 efrain 550
 
16770 efrain 551
                $('#form').attr('action', action);
16787 efrain 552
                $('#form #id').val(response['data']['id']);
16770 efrain 553
                $('#form #name').val(response['data']['name']);
554
                $('#form #status').bootstrapToggle(response['data']['status'] == '$status_active' ? 'on' : 'off')
555
 
556
                $('#form #functions').val(response['data']['functions']);
557
                $('#form #objectives').val(response['data']['objectives']);
558
 
559
                behaviors = response['data']['behaviors'];
560
                competency_types = response['data']['competency_types'];
561
 
562
                competencies = response['data']['competencies'];
563
                competencies_selected = response['data']['competencies_selected'];
16787 efrain 564
 
565
                $('#job_description_id_boss').empty();
566
                $.each(response['data']['jobs_description'], function(id, text) {
567
 
568
                    var option = new Option(text, id, false, false);
569
                    $('#job_description_id_boss').append(option).trigger('change');
570
                });
571
 
572
                $('#job_description_id_boss').trigger('change');
573
                $('#job_description_id_boss').val(response['data']['job_description_id_boss']).trigger('change');
574
 
16770 efrain 575
 
576
                $.fn.renderCompetencies();
577
                $.fn.comboCompetencies();
578
 
579
 
580
                validator.resetForm();
581
                $('#custom-tabs #custom-tabs-general-tab').tab('show');
582
                $('#row-lists').hide();
583
                $('#row-form').show();
15394 efrain 584
            } else {
585
                $.fn.showError(response['data']);
586
            }
587
        }).fail(function(jqXHR, textStatus, errorThrown) {
588
            $.fn.showError(textStatus);
589
        }).always(function() {
590
            NProgress.done();
591
        });
16787 efrain 592
    }
15394 efrain 593
 
16787 efrain 594
    $.fn.reportJobDescription = function(action)
595
    {
16770 efrain 596
        window.open(action, '_blank');
15443 efrain 597
 
16787 efrain 598
    }
15394 efrain 599
 
600
    $('body').on('click', 'button[id="btn-select-competency"]', function(e) {
601
        var competency_uuid = $('#select-competency').val();
602
 
603
        if (competency_uuid.length == '') {
604
            $.fn.showError('ERROR_SELECT_COMPETENCY_IS_EMPTY');
605
        } else {
606
 
607
            competency = competencies.filter((item) => item.uuid == competency_uuid ? item : false)[0];
608
            if(competency) {
609
 
610
                var competency_selected = {
611
                    uuid : competency.uuid,
612
                    competency_type_uuid: competency.competency_type_uuid,
613
                    behaviors : new Array(),
614
                }
615
 
616
                $.each(competency.behaviors, function(index, uuid) {
617
                    competency_selected.behaviors.push({uuid: uuid, level: 0});
618
 
619
                })
620
 
621
 
622
                competencies_selected.push(competency_selected);
623
 
624
                $.fn.renderCompetencies();
625
                $.fn.comboCompetencies();
626
            }
627
        }
628
    });
629
 
16845 efrain 630
/*
16770 efrain 631
    $('body').on('click', 'i.btn-delete-job-description', function(e) {
15394 efrain 632
        e.preventDefault();
16777 efrain 633
        var action = $(this).data('link');
634
 
16822 efrain 635
          swal.fire({
636
            title: 'LABEL_ARE_YOU_SURE',
637
            icon: 'question',
638
            cancelButtonText: 'LABEL_NO',
639
            showCancelButton: true,
640
            confirmButtonText: 'LABEL_YES'
641
          }).then((result) => {
642
            if (result.isConfirmed) {
16777 efrain 643
                    NProgress.start();
644
                    $.ajax({
645
                        'dataType': 'json',
646
                        'accept': 'application/json',
647
                        'method': 'post',
648
                        'url': action,
649
                    }).done(function(response) {
650
                        if (response['success']) {
651
                            $.fn.showSuccess(response['data']);
652
                           $.fn.refreshTree();
653
                        } else {
654
                            $.fn.showError(response['data']);
655
                        }
656
                    }).fail(function(jqXHR, textStatus, errorThrown) {
657
                        $.fn.showError(textStatus);
658
                    }).always(function() {
659
                        NProgress.done();
660
                    });
16845 efrain 661
 
15394 efrain 662
            }
663
        });
16777 efrain 664
 
665
 
666
 
16845 efrain 667
    });*/
15394 efrain 668
 
16770 efrain 669
    $('body').on('click', 'button.btn-delete-job-description-competency', function(e) {
15394 efrain 670
        e.preventDefault();
671
 
672
        var uuid = $(this).data('competency');
16822 efrain 673
          swal.fire({
674
            title: 'LABEL_COMPETENCY_DELETE_TITLE',
15394 efrain 675
            message: 'LABEL_COMPETENCY_DELETE_MESSAGE',
16822 efrain 676
            icon: 'question',
677
            cancelButtonText: 'LABEL_NO',
678
            showCancelButton: true,
679
            confirmButtonText: 'LABEL_YES'
680
          }).then((result) => {
681
            if (result.isConfirmed) {
15394 efrain 682
                    competencies_selected = competencies_selected.filter((item) => item.uuid != uuid ? item : false);
683
 
684
 
685
                    $.fn.renderCompetencies();
686
                    $.fn.comboCompetencies();
687
 
688
            }
689
        });
690
    });
691
 
16770 efrain 692
    $('body').on('click','button.btn-edit-job-description-behavior', function(e) {
15394 efrain 693
        e.preventDefault();
694
 
695
        var competency_uuid = $(this).closest('div.panel-competency').data('competency');
696
        var behavior_uuid = $(this).data('behavior');
697
 
698
 
699
        competency_selected = competencies_selected.filter((item) => item.uuid == competency_uuid ? item : false)[0];
700
        if(competency_selected) {
701
            console.log(competency_selected);
702
 
703
            behavior = competency_selected .behaviors.filter((item) => item.uuid  == behavior_uuid ? item : false)[0];
704
            if(behavior) {
705
 
706
                $('#form-behavior #competency-uuid').val(competency_uuid);
707
                $('#form-behavior #behavior-uuid').val(behavior_uuid);
708
                $('#form-behavior #level').val(behavior.level);
709
 
710
                $('#modal-behavior').modal('show');
711
            }
712
 
713
        }
714
    });
715
 
716
    $('body').on('click','button.btn-behavior-submit', function(e) {
717
         e.preventDefault();
718
         $('#modal-behavior').modal('hide');
719
 
720
         var competency_uuid = $('#form-behavior #competency-uuid').val();
721
         var behavior_uuid = $('#form-behavior #behavior-uuid').val();
722
         var level = $('#form-behavior #level').val();
723
 
724
        competency_selected = competencies_selected.filter((item) => item.uuid == competency_uuid ? item : false)[0];
725
        if(competency_selected) {
726
            behavior = competency_selected .behaviors.filter((item) => item.uuid  == behavior_uuid ? item : false)[0];
727
            if(behavior) {
728
                behavior.level = level;
729
                $.fn.renderCompetencies();
730
            }
731
 
732
        }
733
 
734
    });
735
 
16770 efrain 736
    $('body').on('click', 'button.btn-edit-job-description-cancel', function(e) {
15394 efrain 737
        $('#row-lists').show();
738
        $('#row-form').hide();
739
    });
740
 
741
    $('#form #status').bootstrapToggle({
742
        'on': 'LABEL_ACTIVE',
743
        'off': 'LABEL_INACTIVE',
744
        'width': '160px',
745
        'height': '40px'
746
    });
747
 
15443 efrain 748
    $('#form #functions').maxlength({
749
        alwaysShow: true,
750
         validate: true
751
    });
752
 
753
    $('#form #objectives').maxlength({
754
        alwaysShow: true,
755
        validate: true
756
    });
757
 
16770 efrain 758
    $('#select-competency').select2({
15394 efrain 759
        theme: 'bootstrap4',
760
        width: '100%',
761
    });
762
 
16791 efrain 763
    $('#job_description_id_boss').select2({
16787 efrain 764
        theme: 'bootstrap4',
765
        width: '100%',
766
    });
15394 efrain 767
 
768
 
16787 efrain 769
    oc = $('#chart-container').orgchart({
770
        'data' : datasource,
771
        'nodeId': 'uuid' ,
772
    });
15394 efrain 773
 
16787 efrain 774
 
775
 
776
 
777
    $.fn.refreshTree();
15394 efrain 778
});
779
 
14184 stevensc 780
JS;
66 efrain 781
$this->inlineScript()->captureEnd();
15394 efrain 782
?>
16770 efrain 783
 
784
 
14185 stevensc 785
 
16845 efrain 786
    <div class="container">
787
        <div class="row" id="row-lists">
16891 efrain 788
            <div class="col-12 mt-3">
15430 stevensc 789
                <div class="card">
16845 efrain 790
                	<div class="card-header">
791
                		<h6 class="card-title">LABEL_JOBS_DESCRIPTION</h6>
792
                	</div>
15430 stevensc 793
                    <div class="card-body">
16791 efrain 794
						<div id="chart-container" style="width: 100%; height: 600px">
795
            		 	</div>
15430 stevensc 796
                    </div>
797
                    <div class="card-footer clearfix">
16776 efrain 798
                		<div  style="float:right;" >
15430 stevensc 799
                            <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
800
                            <?php if ($allowAdd) : ?>
801
                                <?php if ($allowImport) : ?>
802
                                    <button type="button" class="btn btn-primary btn-import"><i class="fa fa-upload"></i> LABEL_IMPORT </button>
803
                                <?php endif; ?>
16770 efrain 804
                                <button type="button" class="btn btn-primary btn-add-job-description" data-link="<?php echo $routeAdd ?>"><i class="fa fa-plus"></i> LABEL_ADD </button>
15430 stevensc 805
                            <?php endif; ?>
806
                        </div>
807
                    </div>
808
                </div>
809
            </div>
810
        </div>
16845 efrain 811
 
15394 efrain 812
 
16845 efrain 813
 
814
 
815
	<div class="card"  id="row-form" style="display:none">
16776 efrain 816
        <div class="card-header">
16845 efrain 817
            <h6 class="modal-title">LABEL_JOB_DESCRIPTION</h6>
15430 stevensc 818
        </div>
16845 efrain 819
   		<?php
820
        $form = $this->form;
821
        $form->setAttributes([
822
            'method'    => 'post',
823
            'name'      => 'form',
824
            'id'        => 'form'
825
        ]);
15430 stevensc 826
 
16845 efrain 827
        $form->prepare();
828
        echo $this->form()->openTag($form);
15430 stevensc 829
 
16845 efrain 830
        $element = $form->get('competencies');
831
        echo $this->formHidden($element);
15430 stevensc 832
 
16845 efrain 833
        ?>
834
 		<div class="card-body">
835
 
836
			<ul class="nav nav-tabs" id="myTab" role="tablist">
837
              <li class="nav-item">
838
                <a class="nav-link active" id="custom-tabs-general-tab" data-bs-toggle="tab" href="#custom-tabs-general" role="tab" aria-controls="home" aria-selected="true">LABEL_GENERAL</a>
839
              </li>
840
              <li class="nav-item">
841
                <a class="nav-link" id="custom-tabs-compentencies-tab" data-bs-toggle="tab" href="#custom-tabs-compentencies" role="tab" aria-controls="custom-tabs-compentencies" aria-selected="false">LABEL_COMPETENCIES</a>
842
              </li>
15430 stevensc 843
 
16845 efrain 844
            </ul>
845
            <div class="tab-content border border-top-0 p-3" id="myTabContent">
846
              <div class="tab-pane fade show active" id="custom-tabs-general" role="tabpanel" aria-labelledby="custom-tabs-general-tab">
15430 stevensc 847
 
16845 efrain 848
 				<div class="row">
849
                                <div class="col-12 mt-3">
850
                           			<?php
851
                                    $element = $form->get('name');
852
                                    $element->setOptions(['label' => 'LABEL_NAME']);
853
                                    $element->setAttributes(['class' => 'form-control']);
15430 stevensc 854
 
16845 efrain 855
                                    echo $this->formLabel($element);
856
                                    echo $this->formText($element);
857
                                    ?>
858
                               	</div>
859
                          	</div>
860
                          	<div class="row">
861
                                <div class="col-12 mt-3">
15430 stevensc 862
                                        <label>LABEL_STATUS</label>
863
                                        <br />
864
                                        <?php
865
                                        $element = $form->get('status');
866
                                        $element->setOptions(['label' => 'LABEL_STATUS']);
867
                                        // echo $this->formLabel($element);
868
                                        echo $this->formCheckbox($element);
869
                                        ?>
16845 efrain 870
 
15430 stevensc 871
                                </div>
872
                            </div>
16845 efrain 873
                          	<div class="row">
874
                                <div class="col-12 mt-3">
15430 stevensc 875
                                <?php
876
                                $element = $form->get('objectives');
877
                                $element->setOptions(['label' => 'LABEL_OBJECTIVES']);
878
                                $element->setAttributes(['class' => 'form-control']);
879
 
880
                                echo $this->formLabel($element);
881
                                echo $this->formTextArea($element);
882
                                ?>
16845 efrain 883
                                </div>
15430 stevensc 884
                            </div>
16845 efrain 885
                          	<div class="row">
886
                                <div class="col-12 mt-3">
15430 stevensc 887
                                <?php
888
                                $element = $form->get('functions');
889
                                $element->setOptions(['label' => 'LABEL_FUNCTIONS']);
890
                                $element->setAttributes(['class' => 'form-control']);
891
 
892
                                echo $this->formLabel($element);
893
                                echo $this->formTextArea($element);
894
                                ?>
16845 efrain 895
                                </div>
15430 stevensc 896
                            </div>
16845 efrain 897
                          	<div class="row">
898
                                <div class="col-12 mt-3">
16787 efrain 899
                                <?php
900
                                $element = $form->get('job_description_id_boss');
901
                                $element->setOptions(['label' => 'LABEL_BOSS']);
902
                                $element->setAttributes(['class' => 'form-control']);
903
 
904
                                echo $this->formLabel($element);
905
                                echo $this->formSelect($element);
906
                                ?>
15430 stevensc 907
                                </div>
908
                            </div>
16845 efrain 909
 
910
 
911
              </div>
912
              <div class="tab-pane fade" id="custom-tabs-compentencies" role="tabpanel" aria-labelledby="custom-tabs-compentencies-tab">
913
 
914
           		<div class="row">
915
                	<div class="col-md-8 col-sm-8 col-xs-12 mt-3">
916
                 		<select id="select-competency" class="form-control"> </select>
917
               		</div>
918
                 	<div class="col-md-4 col-sm-4 col-xs-12 mt-3">
919
                 		<button type="button" class="btn btn-primary" id="btn-select-competency" data-toggle="tooltip" title="LABEL_ADD LABEL_COMPETENCY">LABEL_ADD LABEL_COMPETENCY</button>
920
             		</div>
921
              	</div>
922
                <div class="row">
923
             		<div class="col-12 mt-3" id="renderCompetencies">
924
             		</div>
925
            	</div>
926
 
927
              </div>
928
 
15394 efrain 929
            </div>
16845 efrain 930
 
16776 efrain 931
 
15430 stevensc 932
        </div>
16845 efrain 933
        <div class="card-footer text-right">
15430 stevensc 934
            <button type="submit" form="form" class="btn btn-primary">LABEL_SAVE</button>
16770 efrain 935
            <button type="button" class="btn btn-danger btn-edit-job-description-cancel">Cerrar</button>
15430 stevensc 936
        </div>
16845 efrain 937
         <?php echo $this->form()->closeTag($form); ?>
16776 efrain 938
	</div>
939
 
940
 
16845 efrain 941
 </div>
15394 efrain 942
 
943
 
944
<!--start modal behavior-->
15430 stevensc 945
<div id="modal-behavior" class="modal" tabindex="-1" role="dialog">
16778 efrain 946
	<form action="#" name="form-behavior" id="form-behavior">
947
        <div class="modal-dialog " role="document">
948
    		<input type="hidden" id="behavior-uuid" name="behavior-uuid" value="" />
949
       		<input type="hidden" id="competency-uuid" name="competency-uuid value="" />
950
       		<div class=" modal-content">
951
                <div class="modal-header">
16845 efrain 952
                    <h6 class="modal-title">LABEL_EDIT LABEL_LEVEL</h6>
16864 efrain 953
                     <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
16778 efrain 954
                </div>
955
                <div class="modal-body">
16845 efrain 956
             		<div class="row">
957
                		<div class="col-12 mt-3">
958
                              <label for="behavior-value">LABEL_LEVEL</label>
959
                              <input type="number" step="1" min="0" max="100" id="level" name="level">
960
                        </div>
961
                    </div>
962
               	</div>
16891 efrain 963
             	<div class="modal-footer text-right">
16845 efrain 964
                	<button type="button" class="btn btn-primary btn-behavior-submit">LABEL_SAVE</button>
16864 efrain 965
                 	<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close">LABEL_CLOSE</button>
16845 efrain 966
 
16778 efrain 967
            	</div>
968
        	</div>
969
    	</div>
970
	</form>
15394 efrain 971
</div>
15436 stevensc 972
 
15394 efrain 973
 
15443 efrain 974
 
15430 stevensc 975
<!---Template Competencies --->
976
<script id="competencyTemplate" type="text/x-jsrender">
977
    <div class="panel panel-default panel-competency" id="panel-{{:uuid}}" data-competency="{{:uuid}}">
15394 efrain 978
   <div class="panel-heading">
16845 efrain 979
      <h6 class="panel-title" style="    font-size: 18px;">
15394 efrain 980
         <a class="accordion-toggle" data-toggle="collapse" aria-expanded="true" data-parent="#panel-{{:uuid}}" href="#collapse-{{:uuid}}">
981
         <span class="section-name{{:uuid}}">
982
            {{:~getCompetencyType(competency_type_uuid).name}} - {{:~getCompetency(uuid).name}}
983
         </span>
984
         </a>
16845 efrain 985
      </h6>
15394 efrain 986
   </div>
987
   <div id="collapse-{{:uuid}}" class="panel-collapse in collapse show">
988
      <div class="panel-body">
989
         <div class="table-responsive">
990
            <table class="table table-bordered">
991
               <thead>
992
                  <tr>
993
                     <th style="width: 20%;">LABEL_ELEMENT</th>
994
                     <th style="width: 50%;">LABEL_TITLE</th>
995
                     <th style="width: 10%;">LABEL_LEVEL</th>
996
                     <th style="width: 20%;">LABEL_ACTIONS</th>
997
                  </tr>
998
               </thead>
999
               <tbody>
1000
                  <tr>
1001
                     <td class="text-left">LABEL_COMPETENCY</td>
1002
                     <td class="text-left">{{:name}}</td>
1003
                     <td>
1004
                     </td>
1005
                     <td>
16770 efrain 1006
                        <button  type="button" class="btn btn-default btn-delete-job-description-competency" data-competency="{{:uuid}}" data-toggle="tooltip"  data-original-title="LABEL_DELETE LABEL_COMPETENCY"><i class="fa fa-ban" aria-hidden="true"></i> LABEL_DELETE LABEL_COMPETENCY </button>
15394 efrain 1007
                     </td>
1008
                  </tr>
1009
                  {{for behaviors}}
1010
                  <tr >
1011
                     <td class="text-left">--LABEL_BEHAVIOR</td>
1012
                     <td class="text-left">
1013
                       {{:~getBehavior(uuid).description}}
1014
                     </td>
15443 efrain 1015
                     <td class="text-right">
1016
                        {{:level}}
1017
                     </td>
15394 efrain 1018
                     <td>
16770 efrain 1019
                        <button type="button"  class="btn btn-default btn-edit-job-description-behavior" data-behavior="{{:uuid}}" data-toggle="tooltip"  data-original-title="LABEL_EDIT LABEL_LEVEL"><i class="fa fa-edit" aria-hidden="true"></i> LABEL_EDIT LABEL_LEVEL</button>
15443 efrain 1020
                     </td>
1021
                  </tr>
1022
                  {{/for}}
1023
               </tbody>
1024
            </table>
1025
         </div>
1026
      </div>
1027
   </div>
1028
</div>
1029
</script>
1030
 
1031
<script id="competencyTemplateWithLevel" type="text/x-jsrender">
1032
 <div class="panel panel-default panel-competency" id="panel-{{:uuid}}" data-competency="{{:uuid}}">
1033
   <div class="panel-heading">
16845 efrain 1034
      <h6 class="panel-title" style="    font-size: 18px;">
15443 efrain 1035
         <a class="accordion-toggle" data-toggle="collapse" aria-expanded="true" data-parent="#panel-{{:uuid}}" href="#collapse-{{:uuid}}">
1036
         <span class="section-name{{:uuid}}">
1037
            {{:~getCompetencyType(competency_type_uuid).name}} - {{:~getCompetency(uuid).name}}
1038
         </span>
1039
         </a>
16845 efrain 1040
      </h6>
15443 efrain 1041
   </div>
1042
   <div id="collapse-{{:uuid}}" class="panel-collapse in collapse show">
1043
      <div class="panel-body">
1044
         <div class="table-responsive">
1045
            <table class="table table-bordered">
1046
               <thead>
1047
                  <tr>
1048
                     <th style="width: 20%;">LABEL_ELEMENT</th>
1049
                     <th style="width: 50%;">LABEL_TITLE</th>
1050
                     <th style="width: 10%;">LABEL_LEVEL</th>
1051
                     <th style="width: 20%;">LABEL_ACTIONS</th>
1052
                  </tr>
1053
               </thead>
1054
               <tbody>
1055
                  <tr>
1056
                     <td class="text-left">LABEL_COMPETENCY</td>
1057
                     <td class="text-left">{{:name}}</td>
1058
                     <td>
1059
                     </td>
1060
                     <td>
16770 efrain 1061
                        <button  type="button" class="btn btn-default btn-delete-job-description-competency" data-competency="{{:uuid}}" data-toggle="tooltip"  data-original-title="LABEL_DELETE LABEL_COMPETENCY"><i class="fa fa-ban" aria-hidden="true"></i> LABEL_DELETE LABEL_COMPETENCY </button>
15443 efrain 1062
                     </td>
1063
                  </tr>
1064
                  {{for behaviors}}
1065
                  <tr >
1066
                     <td class="text-left">--LABEL_BEHAVIOR</td>
1067
                     <td class="text-left">
1068
                       {{:~getBehavior(uuid).description}}
1069
                     </td>
1070
                     <td>
15394 efrain 1071
                        {{if level == '0'}} LABEL_NA {{/if}}
1072
                        {{if level == '1' }} LABEL_LEVEL_ONE {{/if}}
1073
                        {{if level == '2' }} LABEL_LEVEL_TWO {{/if}}
1074
                        {{if level == '3' }} LABEL_LEVEL_THREE {{/if}}
1075
                        {{if level == '4' }} LABEL_LEVEL_FOUR {{/if}}
1076
                     </td>
1077
                     <td>
16770 efrain 1078
                        <button type="button"  class="btn btn-default btn-edit-job-description-behavior" data-behavior="{{:uuid}}" data-toggle="tooltip"  data-original-title="LABEL_EDIT LABEL_LEVEL"><i class="fa fa-edit" aria-hidden="true"></i> LABEL_EDIT LABEL_LEVEL</button>
15394 efrain 1079
                     </td>
1080
                  </tr>
1081
                  {{/for}}
1082
               </tbody>
1083
            </table>
1084
         </div>
1085
      </div>
1086
   </div>
1087
</div>
1088
</script>
1089
 
16770 efrain 1090
<script id="listJobDescriptionTemplate" type="text/x-jsrender">
16779 efrain 1091
	<li data-id="{{:uuid}}" >
1092
        <div class="content">
1093
 
1094
 
1095
 
1096
        <div class="sidebar {{if status == '<?php echo JobDescription::STATUS_INACTIVE ?>' }} sidebar-inactive {{/if}}">
1097
 
16778 efrain 1098
        {{>name}}
16779 efrain 1099
        <div class="float-right right-sidebar">
16778 efrain 1100
            {{if status == '<?php echo JobDescription::STATUS_ACTIVE ?>' }}
16770 efrain 1101
            {{if link_add }}
1102
            <i class="fa fa-plus btn-add-job-description" data-link="{{:link_add}}"></i>&nbsp;
1103
            {{/if}}
16778 efrain 1104
            {{/if}}
16770 efrain 1105
            {{if link_edit }}
16906 efrain 1106
            <i class="fa-pen btn-edit-job-description" data-link="{{:link_edit}}"></i>&nbsp;
16770 efrain 1107
            {{/if}}
1108
            {{if link_delete }}
1109
            <i class="fa fa-trash btn-delete-job-description" data-link="{{:link_delete}}"></i>&nbsp;
1110
            {{/if}}
16778 efrain 1111
            {{if status == '<?php echo JobDescription::STATUS_ACTIVE ?>' }}
16770 efrain 1112
            {{if link_report }}
1113
            <i class="fa fa-file-o btn-pdf-job-description" data-link="{{:link_report}}"></i>&nbsp;
1114
            {{/if}}
16778 efrain 1115
            {{/if}}
16770 efrain 1116
        </div>
16779 efrain 1117
        </div>
1118
        </div>
16770 efrain 1119
        <ol>
1120
	   {{for children tmpl="#listJobDescriptionTemplate"/}}
1121
	   </ol>
1122
	</li>
1123
</script>
15394 efrain 1124