Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15431 | Rev 16787 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 15431 Rev 15443
Línea 6... Línea 6...
6
$currentUser    = $this->currentUserHelper();
6
$currentUser    = $this->currentUserHelper();
Línea 7... Línea 7...
7
 
7
 
Línea 8... Línea 8...
8
$roleName = $currentUser->getUserTypeId();
8
$roleName = $currentUser->getUserTypeId();
9
 
9
 
10
 
10
 
11
$routeAdd       = $this->url('settings/jobs-description/add');
11
$routeAdd       = $this->url('jobs-description/add');
Línea 12... Línea 12...
12
$routeDatatable = $this->url('settings/jobs-description');
12
$routeDatatable = $this->url('jobs-description');
13
$routeImport    = $this->url('settings/jobs-description/import');
13
$routeImport    = $this->url('jobs-description/import');
14
$routeDashboard = $this->url('dashboard');
14
$routeDashboard = $this->url('dashboard');
15
 
15
 
16
$allowAdd               = $acl->isAllowed($roleName, 'settings/jobs-description/add') ? 1 : 0;
16
$allowAdd               = $acl->isAllowed($roleName, 'jobs-description/add') ? 1 : 0;
Línea 17... Línea 17...
17
$allowEdit              = $acl->isAllowed($roleName, 'settings/jobs-description/edit') ? 1 : 0;
17
$allowEdit              = $acl->isAllowed($roleName, 'jobs-description/edit') ? 1 : 0;
18
$allowDelete            = $acl->isAllowed($roleName, 'settings/jobs-description/delete') ? 1 : 0;
18
$allowDelete            = $acl->isAllowed($roleName, 'jobs-description/delete') ? 1 : 0;
Línea 19... Línea 19...
19
$allowReport            = $acl->isAllowed($roleName, 'settings/jobs-description/report') ? 1 : 0;
19
$allowReport            = $acl->isAllowed($roleName, 'jobs-description/report') ? 1 : 0;
Línea 20... Línea 20...
20
$allowImport            = $acl->isAllowed($roleName, 'settings/jobs-description/import') ? 1 : 0;
20
$allowImport            = $acl->isAllowed($roleName, 'jobs-description/import') ? 1 : 0;
21
 
21
 
22
 
22
 
Línea 58... Línea 58...
58
// JsRender //
58
// JsRender //
59
$this->inlineScript()->appendFile($this->basePath('plugins/jsrender/jsrender.min.js'));
59
$this->inlineScript()->appendFile($this->basePath('plugins/jsrender/jsrender.min.js'));
Línea 60... Línea 60...
60
 
60
 
61
 
61
 
-
 
62
// Page Styles
-
 
63
//$this->headLink()->appendStylesheet($this->basePath('css/pages/self-evaluation.css'));
Línea 62... Línea 64...
62
// Page Styles
64
 
Línea 63... Línea 65...
63
$this->headLink()->appendStylesheet($this->basePath('css/pages/self-evaluation.css'));
65
 
64
 
66
 
Línea 65... Línea -...
65
 
-
 
66
$status_active = JobDescription::STATUS_ACTIVE;
-
 
67
 
-
 
68
$this->inlineScript()->captureStart();
-
 
69
echo <<<JS
-
 
-
 
67
 
70
 
68
$status_active = JobDescription::STATUS_ACTIVE;
-
 
69
 
-
 
70
$this->inlineScript()->captureStart();
-
 
71
echo <<<JS
-
 
72
 
-
 
73
 
-
 
74
jQuery(document).ready(function($) {
-
 
75
 
-
 
76
    var competencies_selected = new Array(); 
-
 
77
    var subordinates_selected = new Array();
-
 
78
    var behaviors = new Array();
-
 
79
    var subordinates = new Array(); 
-
 
80
    var competency_types = new Array(); 
-
 
81
    var competencies = new Array(); 
-
 
82
 
-
 
83
    var allowEdit = $allowEdit;
-
 
84
    var allowDelete = $allowDelete;
-
 
85
    var allowReport = $allowReport;
-
 
86
 
-
 
87
 
-
 
88
    $.fn.renderCompetencies = function() {
-
 
89
        if(competencies_selected.length > 0) {
-
 
90
            $('#renderCompetencies').html($('#competencyTemplate').render(competencies_selected, {
-
 
91
                getCompetencyType: (uuid) => competency_types.filter((item) => item.uuid == uuid ? item : false)[0],
-
 
92
                getCompetency: (uuid) => competencies.filter((item) => item.uuid == uuid ? item : false)[0],
-
 
93
                getBehavior: (uuid) => behaviors.filter((item) => item.uuid == uuid ? item : false)[0]
-
 
94
            }));
-
 
95
        } else {
-
 
96
            $('#renderCompetencies').html('');
-
 
97
        }
-
 
98
    }
-
 
99
 
-
 
100
    $.fn.renderSubordinates = function() {
-
 
101
  
-
 
102
 
-
 
103
        if(subordinates_selected.length > 0) {
-
 
104
            $('#renderSubordinates').html($('#subordinateTemplate').render(subordinates_selected, {
-
 
105
                getSubordinate: (uuid) => subordinates.filter((item) => item.uuid == uuid ? item : false)[0],
-
 
106
 
-
 
107
            }));
-
 
108
        } else {
-
 
109
            $('#renderSubordinates').html('');
-
 
110
        }
-
 
111
    }
-
 
112
 
-
 
113
    $.fn.comboCompetencies = function() {
-
 
114
        $('#select-competency').children().remove();
-
 
115
        $.each(competency_types, function(i, competency_type) {
-
 
116
            competencies_filtered = competencies.filter((item) => item.competency_type_uuid == competency_type.uuid ? item : false)
-
 
117
            $.each(competencies_filtered, function(i, competency) {
-
 
118
 
-
 
119
 
-
 
120
                selected = competencies_selected.filter((item) => item.uuid == competency.uuid ? item : false)[0];
-
 
121
                if(!selected) {
-
 
122
                    $('#select-competency').append($('<option>', {
-
 
123
                        value: competency.uuid,
-
 
124
                        text: competency_type.name +  ' - ' + competency.name
-
 
125
                    }));
-
 
126
                }
-
 
127
 
-
 
128
            });
-
 
129
        });    
-
 
130
 
-
 
131
    }
-
 
132
 
-
 
133
    $.fn.comboSubordinates = function() {
-
 
134
 
-
 
135
        
-
 
136
        $('#select-subordinate').children().remove();
-
 
137
        $.each(subordinates, function(i, subordinate) {
-
 
138
            var subordinate_selected = subordinates_selected.filter((item) => item.uuid == subordinate.uuid ? item : false)[0];    
-
 
139
            if(!subordinate_selected) {
-
 
140
 
-
 
141
                $('#select-subordinate').append($('<option>', {
-
 
142
                    value: subordinate.uuid,
-
 
143
                    text: subordinate.name
71
var competencies = [];
144
                }));
72
var competencies_type = [];
145
            }
73
var subordinates = [];
146
        });
74
var competencies_selected = [];
147
    }
75
var subordinates_selected = [];
148
 
Línea 92... Línea 165...
92
            } else {
165
            } else {
93
                error.insertAfter(element.parent());
166
                error.insertAfter(element.parent());
94
            }
167
            }
95
        }
168
        }
96
    });
169
    });
-
 
170
 
97
    $.fn.showFormErrorValidator = function(fieldname, errors) {
171
    $.fn.showFormErrorValidator = function(fieldname, errors) {
98
        var field = $(fieldname);
172
        var field = $(fieldname);
99
        if (field) {
173
        if (field) {
100
            $(field).addClass('is-invalid');
174
            $(field).addClass('is-invalid');
101
            var error = $('<span id="' + fieldname + '-error" class="error invalid-feedback">' + errors + '</div>');
175
            var error = $('<span id="' + fieldname + '-error" class="error invalid-feedback">' + errors + '</div>');
Línea 106... Línea 180...
106
            } else {
180
            } else {
107
                error.insertAfter(field.parent());
181
                error.insertAfter(field.parent());
108
            }
182
            }
109
        }
183
        }
110
    };
184
    };
111
    var allowEdit = $allowEdit;
-
 
112
    var allowDelete = $allowDelete;
-
 
113
    var allowReport = $allowReport;
-
 
-
 
185
 
114
    var gridTable = $('#gridTable').dataTable({
186
    var gridTable = $('#gridTable').dataTable({
115
        'processing': true,
187
        'processing': true,
116
        'serverSide': true,
188
        'serverSide': true,
117
        'searching': true,
189
        'searching': true,
118
        'order': [
190
        'order': [
Línea 229... Línea 301...
229
            {
301
            {
230
                'targets': -1,
302
                'targets': -1,
231
                'orderable': false,
303
                'orderable': false,
232
                'render': function(data, type, row) {
304
                'render': function(data, type, row) {
233
                    s = '';
305
                    s = '';
234
                    if (allowEdit) {
306
                    if (allowEdit && data['link_edit']) {
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;';
307
                        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
                    }
308
                    }
237
                    if (allowDelete) {
309
                    if (allowDelete && data['link_delete']) {
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;';
310
                        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
                    }
311
                    }
240
                    if (allowReport) {
312
                    if (allowReport && data['link_report']) {
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;';
313
                        s = s + '<button class="btn btn-primary btn-pdf"  data-href="' + data['link_report'] + '"  data-toggle="tooltip" title="LABEL_PDF"><i class="fa fa-file-o"></i> LABEL_PDF </button>&nbsp;';
242
                    }
314
                    }
243
                    return s;
315
                    return s;
244
                }
316
                }
245
            }
317
            }
246
        ],
318
        ],
247
    });
319
    });
-
 
320
 
248
    var validator = $('#form').validate({
321
    var validator = $('#form').validate({
249
        debug: true,
322
        debug: true,
250
        onclick: false,
323
        onclick: false,
251
        onkeyup: false,
324
        onkeyup: false,
252
        ignore: [],
325
        ignore: [],
Línea 254... Línea 327...
254
            'name': {
327
            'name': {
255
                required: true,
328
                required: true,
256
                maxlength: 64,
329
                maxlength: 64,
257
            },
330
            },
258
            'functions': {
331
            'functions': {
259
                updateCkeditor: function() {
-
 
260
                    CKEDITOR.instances.functions.updateElement();
-
 
261
                },
-
 
262
                required: true,
332
                required: true,
-
 
333
                maxlength: 1024,
263
            },
334
            },
264
            'objectives': {
335
            'objectives': {
265
                updateCkeditor: function() {
-
 
266
                    CKEDITOR.instances.objectives.updateElement();
-
 
267
                },
336
               required: true,
268
                required: true,
337
                maxlength: 1024,
269
            },
338
            },
270
            'status': {
339
            'status': {
271
                required: false,
340
                required: false,
272
            },
341
            },
-
 
342
            'job_description_id_boss': {
-
 
343
                required: false,
-
 
344
            }
273
        },
345
        },
274
        submitHandler: function(form) {
346
        submitHandler: function(form) {
-
 
347
    
-
 
348
            var data = {
-
 
349
                name : $('#form #name').val(),
-
 
350
                functions : $('#form #functions').val(),
-
 
351
                objectives : $('#form #objectives').val(),
-
 
352
                status :  $('#form #status').val(),
-
 
353
                job_description_id_boss: $('#form #job_description_id_boss').val(),
-
 
354
                subordinates_selected : new Array(),
-
 
355
                competencies_selected : new Array(),
-
 
356
            };
-
 
357
 
-
 
358
 
275
            $("#competencies_selected").val(JSON.stringify(competencies_selected));
359
            $.each(competencies_selected, function(i, c) {
-
 
360
                $.each(c.behaviors, function(i, b) {
-
 
361
                    data.competencies_selected.push({'competency_uuid' : c.uuid, 'behavior_uuid' : b.uuid, 'level' : b.level});
-
 
362
                });
-
 
363
            });
-
 
364
 
-
 
365
 
276
            $("#subordinates_selected").val(JSON.stringify(subordinates_selected));
366
            $.each(subordinates_selected, function(i, subordinate_selected) {
-
 
367
                data.subordinates_selected.push(subordinate_selected.uuid);
-
 
368
            });
-
 
369
 
-
 
370
            NProgress.start();
277
            $.ajax({
371
            $.ajax({
278
                'dataType': 'json',
372
                'dataType': 'json',
279
                'accept': 'application/json',
373
                'accept': 'application/json',
280
                'method': 'post',
374
                'method': 'post',
281
                'url': $('#form').attr('action'),
375
                'url': $('#form').attr('action'),
282
                'data': $('#form').serialize()
376
                'data': data,
283
            }).done(function(response) {
377
            }).done(function(response) {
284
                NProgress.start();
-
 
285
                if (response['success']) {
378
                if (response['success']) {
286
                    $.fn.showSuccess(response['data']);
379
                    $.fn.showSuccess(response['data']);
287
                    $('#row-lists').show();
380
                    $('#row-lists').show();
288
        $('#row-form').hide();
381
                    $('#row-form').hide();
289
                    gridTable.api().ajax.reload(null, false);
382
                    gridTable.api().ajax.reload(null, false);
290
                } else {
383
                } else {
291
                    validator.resetForm();
384
                    validator.resetForm();
292
                    if (jQuery.type(response['data']) == 'string') {
385
                    if (jQuery.type(response['data']) == 'string') {
293
                        $.fn.showError(response['data']);
386
                        $.fn.showError(response['data']);
Línea 304... Línea 397...
304
            });
397
            });
305
            return false;
398
            return false;
306
        },
399
        },
307
        invalidHandler: function(form, validator) {}
400
        invalidHandler: function(form, validator) {}
308
    });
401
    });
-
 
402
 
309
    $('body').on('click', 'button.btn-add', function(e) {
403
    $('body').on('click', 'button.btn-add', function(e) {
310
        e.preventDefault();
404
        e.preventDefault();
311
        NProgress.start();
405
        NProgress.start();
312
        $.ajax({
406
        $.ajax({
313
            'dataType': 'json',
407
            'dataType': 'json',
314
            'accept': 'application/json',
408
            'accept': 'application/json',
315
            'method': 'get',
409
            'method': 'get',
316
            'url': '$routeAdd',
410
            'url': '$routeAdd',
317
        }).done(function(response) {
411
        }).done(function(response) {
-
 
412
 
318
            if (response['success']) {
413
            if (response['success']) {
-
 
414
 
-
 
415
 
-
 
416
                behaviors = response['data']['behaviors'];
-
 
417
                competency_types = response['data']['competency_types'];
-
 
418
                competencies = response['data']['competencies'];
-
 
419
 
-
 
420
 
-
 
421
                competencies_selected = [];
-
 
422
                subordinates = [];
-
 
423
 
-
 
424
                $('#select-subordinate').children().remove();
-
 
425
                $('#job_description_id_boss').children().not(':first').remove();
-
 
426
 
-
 
427
                $.each(response['data']['jobs_description'], function(value, text) {
-
 
428
                    subordinates.push({uuid:  value, name: text});
-
 
429
 
-
 
430
                    $('#select-subordinate').append($('<option>', {
-
 
431
                        value: value,
-
 
432
                        text: text
-
 
433
                    }));
-
 
434
 
-
 
435
                    $('#job_description_id_boss').append($('<option>', {
-
 
436
                        value: value,
-
 
437
                        text: text
-
 
438
                    }));
-
 
439
                });
-
 
440
 
-
 
441
                $('#form #job_description_id_boss').val('').trigger('change');
-
 
442
 
-
 
443
 
-
 
444
                  
-
 
445
                $.fn.renderSubordinates();
-
 
446
                $.fn.comboSubordinates();
-
 
447
                
-
 
448
 
-
 
449
                $.each(competencies, function(i, competency) {
-
 
450
                    $.each(competency.behaviors, function(j, behavior) {
-
 
451
                        competencies[i].behaviors[j].level = 0;
-
 
452
                    });
-
 
453
                });
-
 
454
 
-
 
455
                $.fn.renderCompetencies();
-
 
456
                $.fn.comboCompetencies();
-
 
457
 
319
                $('span[id="form-title"]').html('LABEL_ADD');
458
                $('span[id="form-title"]').html('LABEL_ADD');
320
                $('#form').attr('action', '$routeAdd');
459
                $('#form').attr('action', '$routeAdd');
321
                $('#form #name').val('');
460
                $('#form #name').val('');
322
                $('#form #status').bootstrapToggle('on');
461
                $('#form #status').bootstrapToggle('on');
-
 
462
                    
323
                CKEDITOR.instances.functions.setData('');
463
                $('#form #functions').val('');
324
                CKEDITOR.instances.objectives.setData('');
464
                $('#form #objectives').val('');
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();
-
 
-
 
465
 
334
                validator.resetForm();
466
                validator.resetForm();
-
 
467
 
-
 
468
 
335
                $('#custom-tabs #custom-tabs-general-tab').tab('show');
469
                $('#custom-tabs #custom-tabs-general-tab').tab('show');
336
                $('#row-lists').hide();
470
                $('#row-lists').hide();
337
        $('#row-form').show();
471
                $('#row-form').show();
-
 
472
 
338
            } else {
473
           } else   {                      
339
                $.fn.showError(response['data']);
474
                $.fn.showError(response['data']);
340
            }
475
            }
341
        }).fail(function(jqXHR, textStatus, errorThrown) {
476
        }).fail(function(jqXHR, textStatus, errorThrown) {
342
            $.fn.showError(textStatus);
477
            $.fn.showError(textStatus);
343
        }).always(function() {
478
        }).always(function() {
344
            NProgress.done();
479
            NProgress.done();
345
        });
480
        });
-
 
481
        return false
346
    });
482
    });
-
 
483
 
347
    $('body').on('click', 'button.btn-edit', function(e) {
484
    $('body').on('click', 'button.btn-edit', function(e) {
348
        e.preventDefault();
485
        e.preventDefault();
349
        NProgress.start();
486
        NProgress.start();
350
        var action = $(this).data('href');
487
        var action = $(this).data('href');
351
        $.ajax({
488
        $.ajax({
Línea 357... Línea 494...
357
            if (response['success']) {
494
            if (response['success']) {
358
                $('span[id="form-title"]').html('LABEL_EDIT');
495
                $('span[id="form-title"]').html('LABEL_EDIT');
359
                $('#form').attr('action', action);
496
                $('#form').attr('action', action);
360
                $('#form #name').val(response['data']['name']);
497
                $('#form #name').val(response['data']['name']);
361
                $('#form #status').bootstrapToggle(response['data']['status'] == '$status_active' ? 'on' : 'off')
498
                $('#form #status').bootstrapToggle(response['data']['status'] == '$status_active' ? 'on' : 'off')
-
 
499
               
362
                CKEDITOR.instances.functions.setData(response['data']['functions']);
500
                $('#form #functions').val(response['data']['functions']);
363
                CKEDITOR.instances.objectives.setData(response['data']['objectives']);
501
                $('#form #objectives').val(response['data']['objectives']);
-
 
502
 
364
                $('#tableCompetencies tbody').empty();
503
                behaviors = response['data']['behaviors'];
-
 
504
                competency_types = response['data']['competency_types'];
365
                competencies = response['data']['competencies'];
505
                competencies = response['data']['competencies'];
-
 
506
 
-
 
507
                subordinates = [];
366
                competencies_type = response['data']['competency_types'];
508
                $('#select-subordinate').children().remove();
-
 
509
                $('#job_description_id_boss').children().not(':first').remove();
-
 
510
 
-
 
511
                
-
 
512
                $.each(response['data']['jobs_description'], function(value, text) {
-
 
513
                    subordinates.push({uuid:  value, name: text});
-
 
514
 
-
 
515
 
-
 
516
                    $('#select-subordinate').append($('<option>', {
-
 
517
                        value: value,
-
 
518
                        text: text
-
 
519
                    }));
-
 
520
 
-
 
521
                    $('#job_description_id_boss').append($('<option>', {
-
 
522
                        value: value,
-
 
523
                        text: text
-
 
524
                    }));
-
 
525
                });
-
 
526
 
-
 
527
 
-
 
528
                $('#form #job_description_id_boss').val(response['data']['job_description_id_boss']).trigger('change');
-
 
529
 
-
 
530
 
367
                competencies_selected = response['data']['competencies_selected'];
531
                competencies_selected = response['data']['competencies_selected'];
368
                subordinates_selected = response['data']['subordinates_selected'];
532
                subordinates_selected = response['data']['subordinates_selected'];                
369
                subordinates = response['data']['jobs_description'];
-
 
-
 
533
 
-
 
534
 
-
 
535
 
370
                renderData(competencies_selected);
536
                $.fn.renderCompetencies();
371
                renderSubordinateData(subordinates_selected);
537
                $.fn.comboCompetencies();
-
 
538
                      
372
                setCompetencySelect();
539
                $.fn.renderSubordinates();
373
                setSubordinateSelect();
540
                $.fn.comboSubordinates();
374
                $('#job_description_id_boss').val(response['data']['job_description_id_boss']);
-
 
-
 
541
 
-
 
542
                
375
                validator.resetForm();
543
                validator.resetForm();
376
                $('#custom-tabs #custom-tabs-general-tab').tab('show');
544
                $('#custom-tabs #custom-tabs-general-tab').tab('show');
377
                $('#row-lists').hide();
545
                $('#row-lists').hide();
378
        $('#row-form').show();
546
                $('#row-form').show();
379
            } else {
547
            } else {
380
                $.fn.showError(response['data']);
548
                $.fn.showError(response['data']);
381
            }
549
            }
382
        }).fail(function(jqXHR, textStatus, errorThrown) {
550
        }).fail(function(jqXHR, textStatus, errorThrown) {
383
            $.fn.showError(textStatus);
551
            $.fn.showError(textStatus);
Línea 387... Línea 555...
387
    });
555
    });
388
    $('body').on('click', 'button.btn-refresh', function(e) {
556
    $('body').on('click', 'button.btn-refresh', function(e) {
389
        e.preventDefault();
557
        e.preventDefault();
390
        gridTable.api().ajax.reload(null, false);
558
        gridTable.api().ajax.reload(null, false);
391
    });
559
    });
-
 
560
 
392
    $('body').on('click', 'button.btn-cancel', function(e) {
561
    $('body').on('click', 'button.btn-cancel', function(e) {
393
        e.preventDefault();
562
        e.preventDefault();
394
        $('#row-lists').show();
563
        $('#row-lists').show();
395
        $('#row-form').hide();
564
        $('#row-form').hide();
396
        $('#div-listing').show();
565
        $('#div-listing').show();
397
    });
566
    });
-
 
567
 
398
    $('body').on('click', 'button.btn-import', function(e) {
568
    $('body').on('click', 'button.btn-import', function(e) {
399
        e.preventDefault();
569
        e.preventDefault();
400
        NProgress.start();
570
        NProgress.start();
401
        $.ajax({
571
        $.ajax({
402
            'dataType': 'json',
572
            'dataType': 'json',
Línea 414... Línea 584...
414
        }).always(function() {
584
        }).always(function() {
415
            NProgress.done();
585
            NProgress.done();
416
        });
586
        });
417
        return false;
587
        return false;
418
    });
588
    });
-
 
589
 
-
 
590
 
-
 
591
    $('body').on('click', 'button.btn-pdf', function(e) {
-
 
592
        e.preventDefault();
419
    $('#form #status').bootstrapToggle({
593
        var action   = $(this).data('href');
-
 
594
 
-
 
595
 
420
        'on': 'LABEL_ACTIVE',
596
        NProgress.start(); 
-
 
597
        $.ajax({
421
        'off': 'LABEL_INACTIVE',
598
            'dataType'  : 'json',
422
        'width': '160px',
599
            'method'    : 'get',
-
 
600
            'url'       :  action,
-
 
601
        }).done(function(response) {
-
 
602
            if(response['success']) {
-
 
603
                var anchor = window.document.createElement("a");
-
 
604
                anchor.href = 'data:application/octet-stream;charset=utf-8;base64,' + response['data']['content'] ;
-
 
605
                anchor.download = response['data']['basename'];
-
 
606
                document.body.appendChild(anchor);
-
 
607
                anchor.click();  // IE: "Access is denied"; see: https://connect.microsoft.com/IE/feedback/details/797361/ie-10-treats-blob-url-as-cross-origin-and-denies-access
-
 
608
                document.body.removeChild(anchor);
423
        'height': '40px'
609
            } else {
-
 
610
                $.fn.showError(response['data']);
-
 
611
            }
-
 
612
        }).fail(function( jqXHR, textStatus, errorThrown) {
-
 
613
            $.fn.showError(textStatus);
-
 
614
        }).always(function() {
-
 
615
            NProgress.done();
-
 
616
        });
-
 
617
 
-
 
618
 
-
 
619
 
424
    });
620
    });
Línea 425... Línea -...
425
 
-
 
426
    CKEDITOR.replace('functions');
-
 
427
    CKEDITOR.replace('objectives');
621
 
428
    /**
-
 
429
     * Clicked select competency
622
 
430
     */
623
 
-
 
624
    $('body').on('click', 'button[id="btn-select-competency"]', function(e) {
-
 
625
        var competency_uuid = $('#select-competency').val();
431
    $('body').on('click', 'button[id="btn-select-competency"]', function(e) {
626
 
432
        if ($("#select-competency").val() == "") {
627
        if (competency_uuid.length == '') {
433
            $.fn.showError('LABEL_ERROR_SELECT_COMPETENCY');
628
            $.fn.showError('ERROR_SELECT_COMPETENCY_IS_EMPTY');
-
 
629
        } else {
434
        } else {
630
            
-
 
631
            competency = competencies.filter((item) => item.uuid == competency_uuid ? item : false)[0];
-
 
632
            if(competency) {
-
 
633
 
-
 
634
                var competency_selected = {
-
 
635
                    uuid : competency.uuid, 
435
            competencies_selected.push(competencies.filter((item) => item.competency_id == $("#select-competency").val() ? item : false)[0]);
636
                    competency_type_uuid: competency.competency_type_uuid,
-
 
637
                    behaviors : new Array(),
-
 
638
                }
-
 
639
 
-
 
640
                $.each(competency.behaviors, function(index, uuid) {
-
 
641
                    competency_selected.behaviors.push({uuid: uuid, level: 0});
-
 
642
    
-
 
643
                })
-
 
644
 
436
            $("#select-subordinate").val('');
645
 
-
 
646
                competencies_selected.push(competency_selected);
437
            renderData(competencies_selected);
647
 
-
 
648
                $.fn.renderCompetencies();
-
 
649
                $.fn.comboCompetencies();
438
            setCompetencySelect();
650
            }
439
        }
651
        }
440
    });
652
    });
441
    /**
-
 
442
     * Clicked select subordinate
653
 
443
     */
654
 
-
 
655
    $('body').on('click', 'button[id="btn-select-subordinate"]', function(e) {
-
 
656
        e.preventDefault();
444
    $('body').on('click', 'button[id="btn-select-subordinate"]', function(e) {
657
 
-
 
658
        var uuid = $("#select-subordinate").val();    
-
 
659
 
445
        if ($("#select-subordinate").val() == "") {
660
        if (uuid == "") {
446
            $.fn.showError('LABEL_ERROR_SELECT_DEPENDENT');
661
            $.fn.showError('ERROR_SELECT_DEPENDENT_IS_EMPTY');
447
        } else {
662
        } else {
-
 
663
            subordinate = subordinates.filter((item) => item.uuid == uuid ? item : false)[0];
-
 
664
            if(subordinate) {
448
            subordinates_selected.push(subordinates.filter((item) => item.job_description_id == $("#select-subordinate").val() ? item : false)[0]);
665
                subordinates_selected.push({uuid: subordinate.uuid});
449
            renderSubordinateData(subordinates_selected);
666
                $.fn.renderSubordinates();
-
 
667
                $.fn.comboSubordinates();
450
            setSubordinateSelect();
668
            }    
451
        }
669
        }
452
    });
-
 
453
    /**
-
 
454
     * Clicked remove subordinate
670
    });
455
     */
671
 
456
    $('body').on('click', 'button.btn-delete-subordinate', function(e) {
672
    $('body').on('click', 'button.btn-delete-subordinate', function(e) {
457
        var job_description_id = $(this).data('subordinate');
673
        var uuid = $(this).data('subordinate');
458
        bootbox.confirm({
674
        bootbox.confirm({
459
            title: "LABEL_DELETE LABEL_DEPENDENT",
675
            title: 'LABEL_DEPENDENT_DELETE_TITLE',
460
            message: "LABEL_QUESTION_DELETE",
676
            message: 'LABEL_DEPENDENT_DELETE_MESSAGE',
461
            buttons: {
677
            buttons: {
462
                cancel: {
678
                cancel: {
463
                    label: '<i class="fa fa-times"></i> LABEL_CANCEL'
679
                    label: '<i class="fa fa-times"></i> LABEL_CANCEL'
464
                },
680
                },
465
                confirm: {
681
                confirm: {
466
                    label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
682
                    label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
467
                }
683
                }
468
            },
684
            },
469
            callback: function(result) {
685
            callback: function(result) {
470
                if (result) {
686
                if (result) {
-
 
687
                    subordinates_selected = subordinates_selected.filter((item) => item.uuid != uuid ? item : false); 
471
                    subordinates_selected = subordinates_selected.filter((item) => item.job_description_id != job_description_id);
688
 
472
                    renderSubordinateData(subordinates_selected);
689
                    $.fn.renderSubordinates();
473
                    return setSubordinateSelect();
690
                    $.fn.comboSubordinates();
474
                }
691
                }
475
            }
692
            }
476
        });
693
        });
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
        });
694
    });
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('');
695
 
518
    }
-
 
519
    /**
-
 
520
     * Render Subordinate data
-
 
521
     */
-
 
522
    const renderSubordinateData = (data) => {
-
 
523
        data.length > 0 ?
-
 
524
            $("#subordinate").html($("#sectionJob").render(data)) :
-
 
525
            $("#subordinate").html('');
696
 
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
     */
697
 
-
 
698
    $('body').on('click', 'button.btn-delete-competency', function(e) {
-
 
699
        e.preventDefault();
542
    $('body').on('click', 'button.btn-delete-competency', function(e) {
700
    
543
        var id_competency = $(this).data('competency');
701
        var uuid = $(this).data('competency');
544
        bootbox.confirm({
702
        bootbox.confirm({
545
            title: "LABEL_DELETE LABEL_COMPETENCY",
703
             title: 'LABEL_COMPETENCY_DELETE_TITLE',
546
            message: "LABEL_QUESTION_DELETE",
704
            message: 'LABEL_COMPETENCY_DELETE_MESSAGE',
547
            buttons: {
705
            buttons: {
548
                cancel: {
706
                cancel: {
549
                    label: '<i class="fa fa-times"></i> LABEL_CANCEL'
707
                    label: '<i class="fa fa-times"></i> LABEL_CANCEL'
550
                },
708
                },
551
                confirm: {
709
                confirm: {
552
                    label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
710
                    label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
553
                }
711
                }
554
            },
712
            },
555
            callback: function(result) {
713
            callback: function(result) {
-
 
714
                if (result) {
-
 
715
                    competencies_selected = competencies_selected.filter((item) => item.uuid != uuid ? item : false);
-
 
716
       
556
                if (result) {
717
                
-
 
718
                    $.fn.renderCompetencies();
-
 
719
                    $.fn.comboCompetencies();
557
                    removeCompetency(id_competency);
720
           
558
                }
721
                }
559
            }
722
            }
560
        });
723
        });
561
    });
-
 
562
    /**
-
 
563
     * Clicked on edit behavior
724
    });
564
     */
725
 
565
    $('body').on('click', 'button.btn-edit-behavior', function(e) {
726
    $('body').on('click','button.btn-edit-behavior', function(e) {
-
 
727
        e.preventDefault();
566
        e.preventDefault();
728
 
567
        var competency_id = $(this).data('competency');
729
        var competency_uuid = $(this).closest('div.panel-competency').data('competency');
-
 
730
        var behavior_uuid = $(this).data('behavior');
-
 
731
 
-
 
732
 
568
        var behavior_id = $(this).data('behavior');
733
        competency_selected = competencies_selected.filter((item) => item.uuid == competency_uuid ? item : false)[0];
569
        competencies_selected.map((item) => {
734
        if(competency_selected) {
-
 
735
            console.log(competency_selected);
-
 
736
 
570
            if (item.competency_id == competency_id) {
737
            behavior = competency_selected .behaviors.filter((item) => item.uuid  == behavior_uuid ? item : false)[0];
-
 
738
            if(behavior) {
571
                item.behaviors.map((b) => {
739
 
572
                    if (b.behavior_id == behavior_id) {
740
                console.log(behavior);
573
                        $('#form-behavior #behavior-id').val(b.behavior_id);
741
                $('#form-behavior #competency-uuid').val(competency_uuid);
574
                        $('#form-behavior #behavior-competency').val(b.competency_id);
742
                $('#form-behavior #behavior-uuid').val(behavior_uuid);          
575
                        $('#form-behavior #behavior-level').val(b.level);
-
 
-
 
743
                $('#form-behavior #level').val(behavior.level);
576
                        $('#modal-behavior h4[class="modal-title"]').html('LABEL_EDIT LABEL_CONDUCT');
744
 
577
                        $('#modal-behavior').modal('show');
-
 
578
                        return;
-
 
579
                    }
-
 
580
                });
745
                $('#modal-behavior').modal('show');
-
 
746
            }
581
            }
747
 
582
        });
748
        }
583
    });
749
    });
-
 
750
 
584
    /**
751
    $('body').on('click','button.btn-behavior-submit', function(e) {
585
     * Remove Competency
-
 
586
     */
752
         e.preventDefault();
-
 
753
         $('#modal-behavior').modal('hide');
587
    const removeCompetency = (competency_id) => {
754
 
588
        competencies_selected = competencies_selected.filter((item) => item.competency_id != competency_id);
755
         var competency_uuid = $('#form-behavior #competency-uuid').val();
589
        return renderData(competencies_selected);
-
 
590
    }
-
 
591
    /**
756
         var behavior_uuid = $('#form-behavior #behavior-uuid').val();          
592
     * Edit item Behavior
757
         var level = $('#form-behavior #level').val();
593
     */
758
 
594
    const editBehavior = (competency_id, behavior_id, level) => {
759
        competency_selected = competencies_selected.filter((item) => item.uuid == competency_uuid ? item : false)[0];
595
        competencies_selected.map((item) => {
760
        if(competency_selected) {
596
            if (item.competency_id == competency_id) {
761
            behavior = competency_selected .behaviors.filter((item) => item.uuid  == behavior_uuid ? item : false)[0];
597
                item.behaviors.map((opt) => {
-
 
598
                    if (opt.behavior_id == behavior_id) {
762
            if(behavior) {
599
                        opt.level = level
-
 
600
                    }
763
                behavior.level = level;
601
                });
764
                $.fn.renderCompetencies();
602
            }
-
 
603
        });
-
 
604
        return renderData(competencies_selected);
765
            }
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;
766
 
-
 
767
        }
-
 
768
 
-
 
769
    });
-
 
770
 
-
 
771
    $('body').on('click', 'button.btn-edit-cancel', function(e) {
-
 
772
        $('#row-lists').show();
-
 
773
        $('#row-form').hide();
-
 
774
    });
-
 
775
 
-
 
776
    $('#form #status').bootstrapToggle({
-
 
777
        'on': 'LABEL_ACTIVE',
-
 
778
        'off': 'LABEL_INACTIVE',
-
 
779
        'width': '160px',
-
 
780
        'height': '40px'
-
 
781
    });
-
 
782
 
-
 
783
    $('#form #functions').maxlength({
-
 
784
        alwaysShow: true,
-
 
785
         validate: true
-
 
786
    });
-
 
787
 
-
 
788
    $('#form #objectives').maxlength({
-
 
789
        alwaysShow: true,
-
 
790
        validate: true
-
 
791
    });
-
 
792
 
-
 
793
 
-
 
794
    $('#form #job_description_id_boss').select2({
-
 
795
        theme: 'bootstrap4',
617
        }
796
        width: '100%',
Línea -... Línea 797...
-
 
797
    });
-
 
798
 
618
    });
799
 
619
 
800
 
620
    $('#select-subordinate').select2({
801
    $('#select-subordinate').select2({
621
        theme: 'bootstrap4',
802
        theme: 'bootstrap4',
Línea -... Línea 803...
-
 
803
        width: '100%',
-
 
804
    });
622
        width: '100%',
805
 
623
    });
806
 
624
 
807
 
625
    $('#select-competency').select2({
808
    $('#select-competency').select2({
-
 
809
        theme: 'bootstrap4',
Línea 626... Línea -...
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) {
810
        width: '100%',
Línea 634... Línea 811...
634
        $('#row-lists').show();
811
    });
635
        $('#row-form').hide();
812
    
636
    });
813
 
Línea 655... Línea 832...
655
    <div class="container-fluid">
832
    <div class="container-fluid">
656
        <div class="row">
833
        <div class="row">
657
            <div class="col-12">
834
            <div class="col-12">
658
                <div class="card">
835
                <div class="card">
659
                    <div class="card-body">
836
                    <div class="card-body">
660
                        <table id="gridTable" class="table   table-hover">
837
                        <table id="gridTable" class="table table-hover">
661
                            <thead>
838
                            <thead>
662
                                <tr>
839
                                <tr>
663
                                    <th>LABEL_NAME</th>
840
                                    <th style="width: 50%">LABEL_NAME</th>
664
                                    <th>LABEL_ACTIVE</th>
841
                                    <th style="width: 15%">LABEL_ACTIVE</th>
665
                                    <th>LABEL_ACTIONS</th>
842
                                    <th style="width: 35%">LABEL_ACTIONS</th>
666
                                </tr>
843
                                </tr>
667
                            </thead>
844
                            </thead>
668
                            <tbody>
845
                            <tbody>
669
                            </tbody>
846
                            </tbody>
670
                        </table>
847
                        </table>
Línea 717... Línea 894...
717
                        'id'        => 'form'
894
                        'id'        => 'form'
718
                    ]);
895
                    ]);
Línea 719... Línea 896...
719
 
896
 
720
                    $form->prepare();
897
                    $form->prepare();
-
 
898
                    echo $this->form()->openTag($form);
-
 
899
 
-
 
900
 
-
 
901
                    $element = $form->get('subordinates');
-
 
902
                    echo $this->formHidden($element);
-
 
903
 
-
 
904
                    $element = $form->get('competencies');
-
 
905
                    echo $this->formHidden($element);
-
 
906
 
721
                    echo $this->form()->openTag($form);
907
 
722
                    ?>
-
 
723
                    <input type="hidden" id="subordinates_selected" name="subordinates_selected" value="">
-
 
-
 
908
                    ?>
724
                    <input type="hidden" id="competencies_selected" name="competencies_selected" value="">
909
 
725
                    <div class="tab-content" id="custom-tabs-three-tabContent">
910
                    <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">
911
                        <div class="tab-pane fade show active" id="custom-tabs-general" role="tabpanel" aria-labelledby="custom-tabs-general-tab">
727
                            <div class="row">
912
                            <div class="row">
728
                                <div class="col-md col-sm-12 col-12">
913
                                <div class="col-md col-sm-12 col-12">
Línea 792... Línea 977...
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>
977
                                    <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>
978
                                </div>
794
                            </div>
979
                            </div>
795
                            <div class="row">
980
                            <div class="row">
796
                                <br>
981
                                <br>
797
                                <div class="col-md-12 col-sm-12 col-xs-12" id="competencies-job" style="margin-top: 10px;">
982
                                <div class="col-md-12 col-sm-12 col-xs-12" id="renderCompetencies" style="margin-top: 10px;">
798
                                </div>
983
                                </div>
799
                            </div>
984
                            </div>
800
                        </div>
985
                        </div>
801
                        <div class="tab-pane fade" id="custom-tabs-subordinate" role="tabpanel" aria-labelledby="custom-tabs-subordinate-tab">
986
                        <div class="tab-pane fade" id="custom-tabs-subordinate" role="tabpanel" aria-labelledby="custom-tabs-subordinate-tab">
802
                            <div class="row">
987
                            <div class="row">
Línea 814... Línea 999...
814
                                            <tr>
999
                                            <tr>
815
                                                <th style="width: 60%;">LABEL_NAME</th>
1000
                                                <th style="width: 60%;">LABEL_NAME</th>
816
                                                <th style="width: 20%;">LABEL_ACTIONS</th>
1001
                                                <th style="width: 20%;">LABEL_ACTIONS</th>
817
                                            </tr>
1002
                                            </tr>
818
                                        </thead>
1003
                                        </thead>
819
                                        <tbody id="subordinate"></tbody>
1004
                                        <tbody id="renderSubordinates"></tbody>
820
                                    </table>
1005
                                    </table>
821
                                </div>
1006
                                </div>
822
                            </div>
1007
                            </div>
823
                        </div>
1008
                        </div>
824
                    </div>
1009
                    </div>
Línea 837... Línea 1022...
837
 
1022
 
838
<!--start modal behavior-->
1023
<!--start modal behavior-->
839
<div id="modal-behavior" class="modal" tabindex="-1" role="dialog">
1024
<div id="modal-behavior" class="modal" tabindex="-1" role="dialog">
840
    <div class="modal-dialog modal-lg" role="document">
1025
    <div class="modal-dialog modal-lg" role="document">
841
        <form action="#" name="form-behavior" id="form-behavior">
1026
        <form action="#" name="form-behavior" id="form-behavior">
842
            <input type="hidden" name="behavior-id" id="behavior-id" value="" />
1027
            <input type="hidden" id="behavior-uuid" name="behavior-uuid" value="" />
843
            <input type="hidden" name="behavior-competency" id="behavior-competency" value="" />
1028
            <input type="hidden" id="competency-uuid" name="competency-uuid value="" />
844
            <div class="modal-content">
1029
         <div class=" modal-content">
845
                <div class="modal-header">
1030
            <div class="modal-header">
846
                    <h4 class="modal-title">LABEL_EDIT LABEL_LEVEL</h4>
1031
                <h4 class="modal-title">LABEL_EDIT LABEL_LEVEL</h4>
847
                    <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1032
                <button type="button" class="close" data-dismiss="modal" aria-label="Close">
848
                        <span aria-hidden="true">&times;</span>
1033
                    <span aria-hidden="true">&times;</span>
849
                    </button>
1034
                </button>
850
                </div>
1035
            </div>
851
                <div class="modal-body">
1036
            <div class="modal-body">
852
                    <div class="form-group">
1037
               <div class="form-group">
853
                        <label for="behavior-value">LABEL_LEVEL</label>
1038
                  <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>
1039
                  <input type="number" step="1" min="0" max="100" id="level" name="level">
862
                </div>
1040
            </div>
863
                <div class="modal-footer">
1041
            <div class="modal-footer">
864
                    <button type="button" class="btn btn-primary btn-behavior-submit">LABEL_SAVE</button>
1042
                <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>
1043
                <button type="button" class="btn btn-secondary" data-dismiss="modal">LABEL_CLOSE</button>
867
            </div>
-
 
868
        </form>
1044
            </div>
-
 
1045
    </div>
-
 
1046
    </form>
869
    </div>
1047
</div>
870
</div>
-
 
-
 
1048
</div>
-
 
1049
 
Línea 871... Línea 1050...
871
<!---end modal behavior --->
1050
 
872
 
1051
 
-
 
1052
<!---Template Competencies --->
-
 
1053
<script id="competencyTemplate" type="text/x-jsrender">
-
 
1054
    <div class="panel panel-default panel-competency" id="panel-{{:uuid}}" data-competency="{{:uuid}}">
-
 
1055
   <div class="panel-heading">
-
 
1056
      <h4 class="panel-title" style="    font-size: 18px;">
-
 
1057
         <a class="accordion-toggle" data-toggle="collapse" aria-expanded="true" data-parent="#panel-{{:uuid}}" href="#collapse-{{:uuid}}">
-
 
1058
         <span class="section-name{{:uuid}}">
-
 
1059
            {{:~getCompetencyType(competency_type_uuid).name}} - {{:~getCompetency(uuid).name}}
-
 
1060
         </span>
-
 
1061
         </a>
-
 
1062
      </h4>
-
 
1063
   </div>
-
 
1064
   <div id="collapse-{{:uuid}}" class="panel-collapse in collapse show">
-
 
1065
      <div class="panel-body">
-
 
1066
         <div class="table-responsive">
-
 
1067
            <table class="table table-bordered">
-
 
1068
               <thead>
-
 
1069
                  <tr>
-
 
1070
                     <th style="width: 20%;">LABEL_ELEMENT</th>
-
 
1071
                     <th style="width: 50%;">LABEL_TITLE</th>
-
 
1072
                     <th style="width: 10%;">LABEL_LEVEL</th>
-
 
1073
                     <th style="width: 20%;">LABEL_ACTIONS</th>
-
 
1074
                  </tr>
-
 
1075
               </thead>
-
 
1076
               <tbody>
-
 
1077
                  <tr>
-
 
1078
                     <td class="text-left">LABEL_COMPETENCY</td>
-
 
1079
                     <td class="text-left">{{:name}}</td>
-
 
1080
                     <td>
873
<!---Template Competencies --->
1081
                     </td>
-
 
1082
                     <td>
-
 
1083
                        <button  type="button" class="btn btn-default btn-delete-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> 
-
 
1084
                     </td>
-
 
1085
                  </tr>
-
 
1086
                  {{for behaviors}}
-
 
1087
                  <tr >
-
 
1088
                     <td class="text-left">--LABEL_BEHAVIOR</td>
-
 
1089
                     <td class="text-left">
-
 
1090
                       {{:~getBehavior(uuid).description}}
-
 
1091
                     </td>
-
 
1092
                     <td class="text-right">
-
 
1093
                        {{:level}} 
-
 
1094
                     </td>
-
 
1095
                     <td>
-
 
1096
                        <button type="button"  class="btn btn-default btn-edit-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> 
-
 
1097
                     </td>
-
 
1098
                  </tr>
-
 
1099
                  {{/for}}
-
 
1100
               </tbody>
-
 
1101
            </table>
-
 
1102
         </div>
-
 
1103
      </div>
-
 
1104
   </div>
-
 
1105
</div>
-
 
1106
</script>
-
 
1107
 
874
<script id="sectionTemplate" type="text/x-jsrender">
1108
<script id="competencyTemplateWithLevel" type="text/x-jsrender">
875
    <div class="panel panel-default" id="panel-{{:competency_id}}">
1109
 <div class="panel panel-default panel-competency" id="panel-{{:uuid}}" data-competency="{{:uuid}}">
876
   <div class="panel-heading">
1110
   <div class="panel-heading">
877
      <h4 class="panel-title" style="    font-size: 18px;">
1111
      <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}}">
1112
         <a class="accordion-toggle" data-toggle="collapse" aria-expanded="true" data-parent="#panel-{{:uuid}}" href="#collapse-{{:uuid}}">
879
         <span class="section-name{{:competency_id}}">
1113
         <span class="section-name{{:uuid}}">
880
         {{:~getType(competency_type_id).name}} - {{:name}}
1114
            {{:~getCompetencyType(competency_type_uuid).name}} - {{:~getCompetency(uuid).name}}
881
         </span>
1115
         </span>
882
         </a>
1116
         </a>
883
      </h4>
1117
      </h4>
884
   </div>
1118
   </div>
885
   <div id="collapse-{{:competency_id}}" class="panel-collapse in collapse show">
1119
   <div id="collapse-{{:uuid}}" class="panel-collapse in collapse show">
886
      <div class="panel-body">
1120
      <div class="panel-body">
887
         <div class="table-responsive">
1121
         <div class="table-responsive">
888
            <table class="table table-bordered">
1122
            <table class="table table-bordered">
Línea 899... Línea 1133...
899
                     <td class="text-left">LABEL_COMPETENCY</td>
1133
                     <td class="text-left">LABEL_COMPETENCY</td>
900
                     <td class="text-left">{{:name}}</td>
1134
                     <td class="text-left">{{:name}}</td>
901
                     <td>
1135
                     <td>
902
                     </td>
1136
                     </td>
903
                     <td>
1137
                     <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> 
1138
                        <button  type="button" class="btn btn-default btn-delete-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> 
905
                     </td>
1139
                     </td>
906
                  </tr>
1140
                  </tr>
907
                  {{for behaviors}}
1141
                  {{for behaviors}}
908
                  <tr >
1142
                  <tr >
909
                     <td class="text-left">--LABEL_CONDUCT</td>
1143
                     <td class="text-left">--LABEL_BEHAVIOR</td>
910
                     <td class="text-left">
1144
                     <td class="text-left">
911
                        {{:description}}
1145
                       {{:~getBehavior(uuid).description}}
912
                     </td>
1146
                     </td>
913
                     <td>
1147
                     <td>
914
                        {{if level == '0'}} LABEL_NA {{/if}} 
1148
                        {{if level == '0'}} LABEL_NA {{/if}} 
915
                        {{if level == '1' }} LABEL_LEVEL_ONE {{/if}} 
1149
                        {{if level == '1' }} LABEL_LEVEL_ONE {{/if}} 
916
                        {{if level == '2' }} LABEL_LEVEL_TWO {{/if}} 
1150
                        {{if level == '2' }} LABEL_LEVEL_TWO {{/if}} 
917
                        {{if level == '3' }} LABEL_LEVEL_THREE {{/if}} 
1151
                        {{if level == '3' }} LABEL_LEVEL_THREE {{/if}} 
918
                        {{if level == '4' }} LABEL_LEVEL_FOUR {{/if}} 
1152
                        {{if level == '4' }} LABEL_LEVEL_FOUR {{/if}} 
919
                     </td>
1153
                     </td>
920
                     <td>
1154
                     <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> 
1155
                        <button type="button"  class="btn btn-default btn-edit-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> 
922
                     </td>
1156
                     </td>
923
                  </tr>
1157
                  </tr>
924
                  {{/for}}
1158
                  {{/for}}
925
               </tbody>
1159
               </tbody>
926
            </table>
1160
            </table>
927
         </div>
1161
         </div>
928
      </div>
1162
      </div>
929
   </div>
1163
   </div>
930
</div>
1164
</div>
931
   </script>
1165
</script>
Línea 932... Línea 1166...
932
 
1166
 
933
 
1167
 
934
<script id="sectionJob" type="text/x-jsrender">
1168
<script id="subordinateTemplate" type="text/x-jsrender">
935
    <tr>
1169
    <tr>
936
   <td class="text-left">{{:name}}</td>
1170
        <td class="text-left"> {{:~getSubordinate(uuid).name}}</td>
937
   <td>
1171
        <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>   
1172
            <button type="button" class="btn btn-default btn-delete-subordinate" data-subordinate="{{:uuid}}" data-toggle="tooltip"  data-original-title="LABEL_DELETE"><i class="fa fa-ban" aria-hidden="true"></i> LABEL_DELETE</button>   
939
   </td>
1173
        </td>
Línea 940... Línea 1174...
940
</tr>
1174
    </tr>
941
    </script>
1175
    </script>