Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 15443 Rev 16787
Línea 43... Línea 43...
43
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
43
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
Línea 44... Línea 44...
44
 
44
 
45
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-confirmation/dist/bootstrap-confirmation.js'));
45
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-confirmation/dist/bootstrap-confirmation.js'));
Línea -... Línea 46...
-
 
46
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap-checkbox/awesome-bootstrap-checkbox.css'));
-
 
47
 
-
 
48
 
-
 
49
 
-
 
50
$this->headLink()->appendStylesheet($this->basePath('css/jquery-sortable.css'));
-
 
51
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-sortable/jquery-sortable.js'));
46
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap-checkbox/awesome-bootstrap-checkbox.css'));
52
 
47
 
53
 
48
$this->inlineScript()->appendFile($this->basePath('plugins/select2/js/select2.js'));
54
$this->inlineScript()->appendFile($this->basePath('plugins/select2/js/select2.js'));
Línea 49... Línea 55...
49
$this->inlineScript()->appendFile($this->basePath('plugins/select2/js/i18n/es.js'));
55
$this->inlineScript()->appendFile($this->basePath('plugins/select2/js/i18n/es.js'));
Línea 57... Línea 63...
57
 
63
 
58
// JsRender //
64
// JsRender //
Línea 59... Línea -...
59
$this->inlineScript()->appendFile($this->basePath('plugins/jsrender/jsrender.min.js'));
-
 
60
 
-
 
61
 
-
 
62
// Page Styles
-
 
63
//$this->headLink()->appendStylesheet($this->basePath('css/pages/self-evaluation.css'));
-
 
64
 
-
 
65
 
65
$this->inlineScript()->appendFile($this->basePath('plugins/jsrender/jsrender.min.js'));
-
 
66
 
Línea 66... Línea 67...
66
 
67
 
67
 
68
$status_active = JobDescription::STATUS_ACTIVE;
Línea 68... Línea 69...
68
$status_active = JobDescription::STATUS_ACTIVE;
69
$status_inactive = JobDescription::STATUS_INACTIVE;
Línea -... Línea 70...
-
 
70
 
-
 
71
$this->inlineScript()->captureStart();
69
 
72
echo <<<JS
70
$this->inlineScript()->captureStart();
-
 
71
echo <<<JS
73
 
72
 
-
 
73
 
74
 
74
jQuery(document).ready(function($) {
75
jQuery(document).ready(function($) {
Línea 75... Línea 76...
75
 
76
 
76
    var competencies_selected = new Array(); 
77
 
77
    var subordinates_selected = new Array();
78
 
Línea 78... Línea 79...
78
    var behaviors = new Array();
79
    var competencies_selected = new Array(); 
79
    var subordinates = new Array(); 
80
    var behaviors = new Array();
-
 
81
    var competency_types = new Array(); 
-
 
82
    var competencies = new Array(); 
80
    var competency_types = new Array(); 
83
 
81
    var competencies = new Array(); 
84
    var allowEdit = $allowEdit;
82
 
85
    var allowDelete = $allowDelete;
83
    var allowEdit = $allowEdit;
86
    var allowReport = $allowReport;
84
    var allowDelete = $allowDelete;
87
 
85
    var allowReport = $allowReport;
88
 
86
 
89
    $.fn.renderCompetencies = function() {
87
 
90
        if(competencies_selected.length > 0) {
88
    $.fn.renderCompetencies = function() {
91
 
Línea 89... Línea -...
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
 
92
 
103
        if(subordinates_selected.length > 0) {
93
            $('#renderCompetencies').html($('#competencyTemplate').render(competencies_selected, {
104
            $('#renderSubordinates').html($('#subordinateTemplate').render(subordinates_selected, {
94
                getCompetencyType: (uuid) => competency_types.filter((item) => item.uuid == uuid ? item : false)[0],
105
                getSubordinate: (uuid) => subordinates.filter((item) => item.uuid == uuid ? item : false)[0],
95
                getCompetency: (uuid) => competencies.filter((item) => item.uuid == uuid ? item : false)[0],
106
 
96
                getBehavior: (uuid) => behaviors.filter((item) => item.uuid == uuid ? item : false)[0]
Línea 128... Línea 118...
128
            });
118
            });
129
        });    
119
        });    
Línea 130... Línea 120...
130
 
120
 
Línea 131... Línea -...
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
-
 
144
                }));
-
 
145
            }
-
 
Línea 146... Línea 121...
146
        });
121
    }
147
    }
122
 
148
 
123
 
Línea 181... Línea 156...
181
                error.insertAfter(field.parent());
156
                error.insertAfter(field.parent());
182
            }
157
            }
183
        }
158
        }
184
    };
159
    };
Línea 185... Línea -...
185
 
-
 
186
    var gridTable = $('#gridTable').dataTable({
-
 
187
        'processing': true,
160
 
188
        'serverSide': true,
-
 
189
        'searching': true,
-
 
190
        'order': [
-
 
191
            [0, 'asc']
161
    $.groupSortable = null;
192
        ],
-
 
193
        'ordering': true,
-
 
194
        'ordenable': true,
-
 
195
        'responsive': true,
-
 
196
        'select': false,
-
 
197
        'paging': true,
-
 
198
        'pagingType': 'simple_numbers',
-
 
199
        'ajax': {
-
 
200
            'url': '$routeDatatable',
-
 
201
            'type': 'get',
-
 
202
            'beforeSend': function(request) {
-
 
203
                NProgress.start();
-
 
204
            },
-
 
205
            'dataFilter': function(response) {
-
 
206
                var response = jQuery.parseJSON(response);
-
 
207
                var json = {};
-
 
208
                json.recordsTotal = 0;
-
 
209
                json.recordsFiltered = 0;
-
 
210
                json.data = [];
-
 
211
                if (response.success) {
-
 
212
                    json.recordsTotal = response.data.total;
-
 
213
                    json.recordsFiltered = response.data.total;
-
 
214
                    json.data = response.data.items;
-
 
215
                } else {
-
 
216
                    $.fn.showError(response.data)
-
 
217
                }
-
 
218
                return JSON.stringify(json);
162
 
219
            }
163
 
220
        },
-
 
221
        'language': {
-
 
222
            'sProcessing': 'LABEL_DATATABLE_SPROCESSING',
-
 
223
            'sLengthMenu': 'LABEL_DATATABLE_SLENGTHMENU',
-
 
224
            'sZeroRecords': 'LABEL_DATATABLE_SZERORECORDS',
-
 
225
            'sEmptyTable': 'LABEL_DATATABLE_SEMPTYTABLE',
-
 
226
            'sInfo': 'LABEL_DATATABLE_SINFO',
-
 
227
            'sInfoEmpty': 'LABEL_DATATABLE_SINFOEMPTY',
-
 
228
            'sInfoFiltered': 'LABEL_DATATABLE_SINFOFILTERED',
-
 
229
            'sInfoPostFix': '',
-
 
230
            'sSearch': 'LABEL_DATATABLE_SSEARCH',
-
 
231
            'sUrl': '',
-
 
232
            'sInfoThousands': ',',
-
 
233
            'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
-
 
234
            'oPaginate': {
-
 
235
                'sFirst': 'LABEL_DATATABLE_SFIRST',
-
 
236
                'sLast': 'LABEL_DATATABLE_SLAST',
-
 
237
                'sNext': 'LABEL_DATATABLE_SNEXT',
-
 
238
                'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
-
 
239
            },
-
 
240
            'oAria': {
-
 
241
                'sSortAscending': ': LABEL_DATATABLE_SSORTASCENDING',
-
 
242
                'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
-
 
243
            },
164
 
244
        },
-
 
245
        'drawCallback': function(settings) {
-
 
246
            NProgress.done();
-
 
247
            $('button.btn-delete').confirmation({
-
 
248
                rootSelector: 'button.btn-delete',
-
 
249
                title: 'LABEL_ARE_YOU_SURE',
-
 
250
                singleton: true,
-
 
251
                btnOkLabel: 'LABEL_YES',
-
 
252
                btnCancelLabel: 'LABEL_NO',
165
 
253
                onConfirm: function(value) {
-
 
-
 
166
    $.fn.setGroupSortable = function(html) {
254
                    action = $(this).data('href');
167
 
255
                    NProgress.start();
-
 
256
                    $.ajax({
-
 
257
                        'dataType': 'json',
-
 
258
                        'accept': 'application/json',
-
 
259
                        'method': 'post',
-
 
260
                        'url': action,
-
 
261
                    }).done(function(response) {
-
 
262
                        if (response['success']) {
168
        $('#ol-jobs-descriptions').html(html);
263
                            $.fn.showSuccess(response['data']);
-
 
264
                            gridTable.api().ajax.reload(null, false);
-
 
265
                        } else {
-
 
266
                            $.fn.showError(response['data']);
-
 
267
                        }
-
 
268
                    }).fail(function(jqXHR, textStatus, errorThrown) {
-
 
269
                        $.fn.showError(textStatus);
-
 
270
                    }).always(function() {
-
 
271
                        NProgress.done();
-
 
272
                    });
-
 
273
                },
-
 
274
            });
-
 
275
        },
-
 
276
        'aoColumns': [{
-
 
277
                'mDataProp': 'name'
-
 
278
            },
-
 
279
            {
-
 
280
                'mDataProp': 'status'
-
 
281
            },
-
 
282
            {
-
 
283
                'mDataProp': 'actions'
-
 
284
            },
169
        $.groupSortable =  $('#ol-jobs-descriptions').sortable({
285
        ],
-
 
286
        'columnDefs': [{
-
 
287
                'targets': 0,
-
 
288
                'className': 'text-vertical-middle',
-
 
289
            },
-
 
290
            {
-
 
291
                'targets': -2,
-
 
292
                'orderable': false,
-
 
293
                'className': 'text-center',
170
 
294
                'render': function(data, type, row) {
171
            onDragStart: function(\$item, container, _super) {
295
                    checked = data == 'a' ? ' checked="checked" ' : '';
-
 
296
                    return '<div class="checkbox checkbox-success">' +
-
 
297
                        '<input class="styled" type="checkbox" ' + checked + ' disabled="disabled">' +
172
                //\$item.find('ol.dropdown-menu').sortable('disable');
298
                        '<label ></label></div>';
-
 
299
                }
173
                _super(\$item, container);
300
            },
174
            },
-
 
175
            onDrop: function(\$item, container, _super) {
-
 
176
 
-
 
177
                var data = $.groupSortable.sortable('serialize').get();
-
 
178
                var jsonString = JSON.stringify(data, null, ' ');
301
            {
179
 
302
                'targets': -1,
180
                $.ajax({
303
                'orderable': false,
181
                    'dataType': 'json',
304
                'render': function(data, type, row) {
182
                    'accept': 'application/json',
305
                    s = '';
183
                    'method': 'post',
306
                    if (allowEdit && data['link_edit']) {
-
 
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;';
184
                    'url': '$routeDatatable',
308
                    }
185
                    'data': {
309
                    if (allowDelete && data['link_delete']) {
-
 
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;';
186
                        data: jsonString
-
 
187
                    }
-
 
188
                }).done(function(response) {
-
 
189
 
311
                    }
190
 
312
                    if (allowReport && data['link_report']) {
191
                    if (!response['success']) {
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;';
192
                        $.fn.showError(response['data']);
-
 
193
                    }
-
 
194
                }).fail(function(jqXHR, textStatus, errorThrown) {
-
 
195
                    $.fn.showError(textStatus);
-
 
196
                })
-
 
197
 
-
 
198
 
-
 
199
                //\$item.find('ol.dropdown-menu').sortable('enable');
-
 
200
                _super(\$item, container);
-
 
201
 
-
 
202
                //console.log($(\$item).data('id'));
-
 
203
                // console.log(\$item);
-
 
204
            }
-
 
205
        });
-
 
206
 
-
 
207
    },
-
 
208
 
-
 
209
    $.fn.recursiveTree = function(items) {
-
 
210
        var s  = '';     
-
 
211
        $.each(items, function(i, item) {
-
 
212
            s = s + $('#listJobDescriptionTemplate').render(item);
-
 
213
 
-
 
214
        });
-
 
215
        return s;
-
 
216
    };
-
 
217
 
-
 
218
    $.fn.refreshTree = function() {
-
 
219
        NProgress.start();
-
 
220
        $.ajax({
-
 
221
            'dataType': 'json',
-
 
222
            'accept': 'application/json',
-
 
223
            'method': 'get',
-
 
224
            'url': '$routeDatatable',
-
 
225
        }).done(function(response) {
-
 
226
            if (response['success']) {
-
 
227
                if(response['data'].items.length == 0) {
314
                    }
228
                    $('#divNoRecordsAvailable').show();
-
 
229
                } else {
-
 
230
                    $('#divNoRecordsAvailable').hide();
315
                    return s;
231
 
-
 
232
                }
-
 
233
 
-
 
234
                var s = ''; 
-
 
235
                $.each(response['data'], function(i, item) {
-
 
236
                    s = s +  $.fn.recursiveTree(item);
-
 
237
                });
-
 
238
    
-
 
239
                $.fn.setGroupSortable(s);
-
 
240
            } else {
316
                }
241
                $.fn.showError(response['data']);
-
 
242
            }
-
 
243
        }).fail(function(jqXHR, textStatus, errorThrown) {
-
 
244
            $.fn.showError(textStatus);
-
 
245
         }).always(function() {
317
            }
246
            NProgress.done();
318
        ],
247
        });
Línea 319... Línea 248...
319
    });
248
    }
320
 
249
 
321
    var validator = $('#form').validate({
250
    var validator = $('#form').validate({
322
        debug: true,
251
        debug: true,
Línea 337... Línea 266...
337
                maxlength: 1024,
266
                maxlength: 1024,
338
            },
267
            },
339
            'status': {
268
            'status': {
340
                required: false,
269
                required: false,
341
            },
270
            },
342
            'job_description_id_boss': {
-
 
343
                required: false,
-
 
344
            }
-
 
345
        },
271
        },
346
        submitHandler: function(form) {
272
        submitHandler: function(form) {
Línea -... Línea 273...
-
 
273
    
-
 
274
 
347
    
275
  
348
            var data = {
276
            var data = {
349
                name : $('#form #name').val(),
277
                name : $('#form #name').val(),
350
                functions : $('#form #functions').val(),
278
                functions : $('#form #functions').val(),
351
                objectives : $('#form #objectives').val(),
279
                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(),
280
                status :  $('#form #status').prop('checked') ?  '$status_active' : '$status_inactive',
355
                competencies_selected : new Array(),
281
                competencies_selected : new Array(),
Línea 356... Línea 282...
356
            };
282
            };
Línea 361... Línea 287...
361
                    data.competencies_selected.push({'competency_uuid' : c.uuid, 'behavior_uuid' : b.uuid, 'level' : b.level});
287
                    data.competencies_selected.push({'competency_uuid' : c.uuid, 'behavior_uuid' : b.uuid, 'level' : b.level});
362
                });
288
                });
363
            });
289
            });
Línea 364... Línea -...
364
 
-
 
365
 
-
 
366
            $.each(subordinates_selected, function(i, subordinate_selected) {
-
 
367
                data.subordinates_selected.push(subordinate_selected.uuid);
-
 
368
            });
290
 
369
 
291
 
370
            NProgress.start();
292
            NProgress.start();
371
            $.ajax({
293
            $.ajax({
372
                'dataType': 'json',
294
                'dataType': 'json',
Línea 377... Línea 299...
377
            }).done(function(response) {
299
            }).done(function(response) {
378
                if (response['success']) {
300
                if (response['success']) {
379
                    $.fn.showSuccess(response['data']);
301
                    $.fn.showSuccess(response['data']);
380
                    $('#row-lists').show();
302
                    $('#row-lists').show();
381
                    $('#row-form').hide();
303
                    $('#row-form').hide();
382
                    gridTable.api().ajax.reload(null, false);
304
                    $.fn.refreshTree();
383
                } else {
305
                } else {
384
                    validator.resetForm();
306
                    validator.resetForm();
385
                    if (jQuery.type(response['data']) == 'string') {
307
                    if (jQuery.type(response['data']) == 'string') {
386
                        $.fn.showError(response['data']);
308
                        $.fn.showError(response['data']);
387
                    } else {
309
                    } else {
Línea 398... Línea 320...
398
            return false;
320
            return false;
399
        },
321
        },
400
        invalidHandler: function(form, validator) {}
322
        invalidHandler: function(form, validator) {}
401
    });
323
    });
Línea -... Línea 324...
-
 
324
 
-
 
325
    $('body').on('click', 'button.btn-refresh', function(e) {
-
 
326
        e.preventDefault();
-
 
327
        $.fn.refreshTree();
-
 
328
    });
402
 
329
 
-
 
330
    $('body').on('click', 'button.btn-cancel', function(e) {
-
 
331
        e.preventDefault();
-
 
332
        $('#row-lists').show();
-
 
333
        $('#row-form').hide();
-
 
334
        $('#div-listing').show();
-
 
335
    });
-
 
336
 
403
    $('body').on('click', 'button.btn-add', function(e) {
337
    $('body').on('click', 'button.btn-import', function(e) {
404
        e.preventDefault();
338
        e.preventDefault();
405
        NProgress.start();
339
        NProgress.start();
406
        $.ajax({
340
        $.ajax({
407
            'dataType': 'json',
-
 
408
            'accept': 'application/json',
341
            'dataType': 'json',
409
            'method': 'get',
342
            'method': 'post',
410
            'url': '$routeAdd',
343
            'url': '$routeImport',
411
        }).done(function(response) {
-
 
412
 
344
        }).done(function(response) {
-
 
345
            if (response['success']) {
-
 
346
                $.fn.showSuccess(response['data']);
-
 
347
                $.fn.refreshTree();
-
 
348
            } else {
-
 
349
                $.fn.showError(response['data']);
-
 
350
            }
-
 
351
        }).fail(function(jqXHR, textStatus, errorThrown) {
-
 
352
            $.fn.showError(textStatus);
-
 
353
        }).always(function() {
-
 
354
            NProgress.done();
-
 
355
        });
-
 
356
        return false;
Línea -... Línea 357...
-
 
357
    });
-
 
358
 
Línea 413... Línea -...
413
            if (response['success']) {
-
 
414
 
-
 
415
 
-
 
416
                behaviors = response['data']['behaviors'];
-
 
417
                competency_types = response['data']['competency_types'];
-
 
418
                competencies = response['data']['competencies'];
359
    $('body').on('click', 'button.btn-add-job-description', function(e) {
419
 
360
        e.preventDefault();
420
 
-
 
421
                competencies_selected = [];
-
 
422
                subordinates = [];
-
 
Línea 423... Línea -...
423
 
-
 
424
                $('#select-subordinate').children().remove();
361
 
-
 
362
        var link = $(this).data('link');
Línea 425... Línea 363...
425
                $('#job_description_id_boss').children().not(':first').remove();
363
        $.fn.defaultValuesAdd(link);
426
 
-
 
427
                $.each(response['data']['jobs_description'], function(value, text) {
-
 
428
                    subordinates.push({uuid:  value, name: text});
364
 
Línea 429... Línea -...
429
 
-
 
430
                    $('#select-subordinate').append($('<option>', {
-
 
431
                        value: value,
-
 
432
                        text: text
-
 
433
                    }));
-
 
Línea 434... Línea 365...
434
 
365
        return false
-
 
366
    });
-
 
367
 
-
 
368
    $('body').on('click', 'i.btn-add-job-description', function(e) {
-
 
369
        e.preventDefault();
Línea -... Línea 370...
-
 
370
 
Línea 435... Línea -...
435
                    $('#job_description_id_boss').append($('<option>', {
-
 
436
                        value: value,
-
 
437
                        text: text
-
 
438
                    }));
-
 
Línea -... Línea 371...
-
 
371
 
-
 
372
        var link = $(this).data('link');
-
 
373
        $.fn.defaultValuesAdd(link);
-
 
374
       
-
 
375
        return false
-
 
376
    });
-
 
377
 
-
 
378
    $.fn.defaultValuesAdd = function(action) {
-
 
379
 
-
 
380
 
-
 
381
        setTimeout(() => {
-
 
382
            NProgress.start();
-
 
383
            $.ajax({
-
 
384
                'dataType': 'json',
-
 
385
                'accept': 'application/json',
-
 
386
                'method': 'get',
-
 
387
                'url' : action,
-
 
388
            }).done(function(response) {
-
 
389
    
-
 
390
                if (response['success']) {
439
                });
391
    
440
 
392
    
441
                $('#form #job_description_id_boss').val('').trigger('change');
393
                    behaviors = response['data']['behaviors'];
-
 
394
                    competency_types = response['data']['competency_types'];
442
 
395
                    competencies = response['data']['competencies'];
443
 
-
 
444
                  
396
    
445
                $.fn.renderSubordinates();
397
    
446
                $.fn.comboSubordinates();
398
                    competencies_selected = [];
447
                
399
    
448
 
400
    
449
                $.each(competencies, function(i, competency) {
401
                    $.each(competencies, function(i, competency) {
450
                    $.each(competency.behaviors, function(j, behavior) {
402
                        $.each(competency.behaviors, function(j, behavior) {
451
                        competencies[i].behaviors[j].level = 0;
403
                            competencies[i].behaviors[j].level = 0;
452
                    });
404
                        });
453
                });
405
                    });
454
 
406
    
455
                $.fn.renderCompetencies();
407
                    $.fn.renderCompetencies();
456
                $.fn.comboCompetencies();
408
                    $.fn.comboCompetencies();
-
 
409
    
-
 
410
                    $('span[id="form-title"]').html('LABEL_ADD');
-
 
411
                    $('#form').attr('action', action);
-
 
412
                    $('#form #name').val('');
-
 
413
                    $('#form #status').bootstrapToggle('on');
-
 
414
                        
-
 
415
                    $('#form #functions').val('');
-
 
416
                    $('#form #objectives').val('');
-
 
417
    
-
 
418
                    validator.resetForm();
-
 
419
    
-
 
420
    
-
 
421
                    $('#custom-tabs #custom-tabs-general-tab').tab('show');
-
 
422
                    $('#row-lists').hide();
-
 
423
                    $('#row-form').show();
-
 
424
    
Línea -... Línea 425...
-
 
425
               } else   {                      
Línea 457... Línea -...
457
 
-
 
458
                $('span[id="form-title"]').html('LABEL_ADD');
-
 
459
                $('#form').attr('action', '$routeAdd');
-
 
Línea 460... Línea -...
460
                $('#form #name').val('');
-
 
461
                $('#form #status').bootstrapToggle('on');
-
 
462
                    
-
 
463
                $('#form #functions').val('');
-
 
464
                $('#form #objectives').val('');
-
 
465
 
-
 
466
                validator.resetForm();
-
 
467
 
-
 
468
 
-
 
469
                $('#custom-tabs #custom-tabs-general-tab').tab('show');
-
 
Línea 470... Línea 426...
470
                $('#row-lists').hide();
426
                    $.fn.showError(response['data']);
471
                $('#row-form').show();
427
                }
472
 
428
    
473
           } else   {                      
429
            }).fail(function(jqXHR, textStatus, errorThrown) {
474
                $.fn.showError(response['data']);
430
                $.fn.showError(textStatus);
475
            }
431
            }).always(function() {
476
        }).fail(function(jqXHR, textStatus, errorThrown) {
432
                NProgress.done();
477
            $.fn.showError(textStatus);
433
            });
478
        }).always(function() {
434
        }, 100);
Línea 500... Línea 456...
500
                $('#form #functions').val(response['data']['functions']);
456
                $('#form #functions').val(response['data']['functions']);
501
                $('#form #objectives').val(response['data']['objectives']);
457
                $('#form #objectives').val(response['data']['objectives']);
Línea 502... Línea 458...
502
 
458
 
503
                behaviors = response['data']['behaviors'];
459
                behaviors = response['data']['behaviors'];
504
                competency_types = response['data']['competency_types'];
-
 
505
                competencies = response['data']['competencies'];
-
 
506
 
-
 
507
                subordinates = [];
-
 
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');
-
 
Línea -... Línea 460...
-
 
460
                competency_types = response['data']['competency_types'];
529
 
461
 
530
 
-
 
531
                competencies_selected = response['data']['competencies_selected'];
462
                competencies = response['data']['competencies'];
532
                subordinates_selected = response['data']['subordinates_selected'];                
-
 
533
 
-
 
534
 
463
                competencies_selected = response['data']['competencies_selected'];
535
 
464
               
Línea 536... Línea -...
536
                $.fn.renderCompetencies();
-
 
537
                $.fn.comboCompetencies();
-
 
538
                      
-
 
539
                $.fn.renderSubordinates();
465
                $.fn.renderCompetencies();
540
                $.fn.comboSubordinates();
466
                $.fn.comboCompetencies();
541
 
467
                      
542
                
468
                              
543
                validator.resetForm();
469
                validator.resetForm();
544
                $('#custom-tabs #custom-tabs-general-tab').tab('show');
470
                $('#custom-tabs #custom-tabs-general-tab').tab('show');
Línea 551... Línea 477...
551
            $.fn.showError(textStatus);
477
            $.fn.showError(textStatus);
552
        }).always(function() {
478
        }).always(function() {
553
            NProgress.done();
479
            NProgress.done();
554
        });
480
        });
555
    });
481
    });
556
    $('body').on('click', 'button.btn-refresh', function(e) {
-
 
557
        e.preventDefault();
-
 
558
        gridTable.api().ajax.reload(null, false);
-
 
559
    });
-
 
560
 
-
 
561
    $('body').on('click', 'button.btn-cancel', function(e) {
-
 
562
        e.preventDefault();
-
 
563
        $('#row-lists').show();
-
 
564
        $('#row-form').hide();
-
 
565
        $('#div-listing').show();
-
 
566
    });
-
 
567
 
-
 
568
    $('body').on('click', 'button.btn-import', function(e) {
-
 
569
        e.preventDefault();
-
 
570
        NProgress.start();
-
 
571
        $.ajax({
-
 
572
            'dataType': 'json',
-
 
573
            'method': 'post',
-
 
574
            'url': '$routeImport',
-
 
575
        }).done(function(response) {
-
 
576
            if (response['success']) {
-
 
577
                $.fn.showSuccess(response['data']);
-
 
578
                gridTable.api().ajax.reload(null, false);
-
 
579
            } else {
-
 
580
                $.fn.showError(response['data']);
-
 
581
            }
-
 
582
        }).fail(function(jqXHR, textStatus, errorThrown) {
-
 
583
            $.fn.showError(textStatus);
-
 
584
        }).always(function() {
-
 
585
            NProgress.done();
-
 
586
        });
-
 
587
        return false;
-
 
588
    });
-
 
589
 
-
 
Línea 590... Línea 482...
590
 
482
 
591
    $('body').on('click', 'button.btn-pdf', function(e) {
483
    $('body').on('click', 'i.btn-pdf-job-description', function(e) {
592
        e.preventDefault();
484
        e.preventDefault();
Línea -... Línea 485...
-
 
485
        var action   = $(this).data('link');
Línea -... Línea 486...
-
 
486
 
593
        var action   = $(this).data('href');
487
        window.open(action, '_blank');
594
 
488
 
595
 
489
        /*
596
        NProgress.start(); 
490
        NProgress.start(); 
597
        $.ajax({
491
        $.ajax({
Línea 611... Línea 505...
611
            }
505
            }
612
        }).fail(function( jqXHR, textStatus, errorThrown) {
506
        }).fail(function( jqXHR, textStatus, errorThrown) {
613
            $.fn.showError(textStatus);
507
            $.fn.showError(textStatus);
614
        }).always(function() {
508
        }).always(function() {
615
            NProgress.done();
509
            NProgress.done();
616
        });
510
        });*/
617
 
-
 
618
 
-
 
619
 
-
 
620
    });
511
    });
Línea 621... Línea -...
621
 
-
 
622
 
-
 
623
 
512
 
624
    $('body').on('click', 'button[id="btn-select-competency"]', function(e) {
513
    $('body').on('click', 'button[id="btn-select-competency"]', function(e) {
Línea 625... Línea 514...
625
        var competency_uuid = $('#select-competency').val();
514
        var competency_uuid = $('#select-competency').val();
626
 
515
 
Línea 649... Línea 538...
649
                $.fn.comboCompetencies();
538
                $.fn.comboCompetencies();
650
            }
539
            }
651
        }
540
        }
652
    });
541
    });
Línea 653... Línea -...
653
 
-
 
654
 
542
 
655
    $('body').on('click', 'button[id="btn-select-subordinate"]', function(e) {
543
    $('body').on('click', 'i.btn-delete-job-description', function(e) {
-
 
544
        e.preventDefault();
Línea 656... Línea -...
656
        e.preventDefault();
-
 
657
 
-
 
658
        var uuid = $("#select-subordinate").val();    
-
 
659
 
-
 
660
        if (uuid == "") {
-
 
661
            $.fn.showError('ERROR_SELECT_DEPENDENT_IS_EMPTY');
-
 
662
        } else {
-
 
663
            subordinate = subordinates.filter((item) => item.uuid == uuid ? item : false)[0];
-
 
664
            if(subordinate) {
-
 
665
                subordinates_selected.push({uuid: subordinate.uuid});
-
 
666
                $.fn.renderSubordinates();
-
 
667
                $.fn.comboSubordinates();
-
 
668
            }    
-
 
669
        }
-
 
670
    });
-
 
671
 
-
 
672
    $('body').on('click', 'button.btn-delete-subordinate', function(e) {
545
        var action = $(this).data('link');
673
        var uuid = $(this).data('subordinate');
-
 
674
        bootbox.confirm({
546
 
675
            title: 'LABEL_DEPENDENT_DELETE_TITLE',
547
        bootbox.confirm({
676
            message: 'LABEL_DEPENDENT_DELETE_MESSAGE',
-
 
677
            buttons: {
-
 
678
                cancel: {
-
 
679
                    label: '<i class="fa fa-times"></i> LABEL_CANCEL'
548
            message: 'LABEL_ARE_YOU_SURE',
680
                },
549
            buttons: {
-
 
550
                confirm: {
-
 
551
                    label: 'LABEL_YES',
-
 
552
                    className: 'btn-success'
-
 
553
                },
-
 
554
                cancel: {
681
                confirm: {
555
                    label: 'LABEL_NO',
682
                    label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
556
                    className: 'btn-danger'
683
                }
557
                }
684
            },
558
            },
-
 
559
            callback: function (result) {
-
 
560
                if(result) {
-
 
561
                    NProgress.start();
-
 
562
                    $.ajax({
-
 
563
                        'dataType': 'json',
-
 
564
                        'accept': 'application/json',
-
 
565
                        'method': 'post',
-
 
566
                        'url': action,
-
 
567
                    }).done(function(response) {
-
 
568
                        if (response['success']) {
-
 
569
                            $.fn.showSuccess(response['data']);
-
 
570
                           $.fn.refreshTree();
-
 
571
                        } else {
685
            callback: function(result) {
572
                            $.fn.showError(response['data']);
686
                if (result) {
-
 
687
                    subordinates_selected = subordinates_selected.filter((item) => item.uuid != uuid ? item : false); 
573
                        }
-
 
574
                    }).fail(function(jqXHR, textStatus, errorThrown) {
688
 
575
                        $.fn.showError(textStatus);
-
 
576
                    }).always(function() {
689
                    $.fn.renderSubordinates();
577
                        NProgress.done();
690
                    $.fn.comboSubordinates();
578
                    });
691
                }
579
                }
692
            }
-
 
Línea -... Línea 580...
-
 
580
            }
Línea -... Línea 581...
-
 
581
        });
Línea 693... Línea 582...
693
        });
582
 
694
    });
583
       
Línea 695... Línea 584...
695
 
584
 
696
 
585
    });
697
 
586
 
Línea 721... Línea 610...
721
                }
610
                }
722
            }
611
            }
723
        });
612
        });
724
    });
613
    });
Línea 725... Línea 614...
725
 
614
 
726
    $('body').on('click','button.btn-edit-behavior', function(e) {
615
    $('body').on('click','button.btn-edit-job-description-behavior', function(e) {
Línea 727... Línea 616...
727
        e.preventDefault();
616
        e.preventDefault();
728
 
617
 
Línea 766... Línea 655...
766
 
655
 
Línea 767... Línea 656...
767
        }
656
        }
Línea 768... Línea 657...
768
 
657
 
769
    });
658
    });
770
 
659
 
771
    $('body').on('click', 'button.btn-edit-cancel', function(e) {
660
    $('body').on('click', 'button.btn-edit-job-description-cancel', function(e) {
Línea 772... Línea 661...
772
        $('#row-lists').show();
661
        $('#row-lists').show();
Línea 788... Línea 677...
788
    $('#form #objectives').maxlength({
677
    $('#form #objectives').maxlength({
789
        alwaysShow: true,
678
        alwaysShow: true,
790
        validate: true
679
        validate: true
791
    });
680
    });
Línea 792... Línea -...
792
 
-
 
793
 
-
 
794
    $('#form #job_description_id_boss').select2({
-
 
795
        theme: 'bootstrap4',
-
 
796
        width: '100%',
-
 
797
    });
-
 
798
 
-
 
799
 
-
 
800
 
681
 
801
    $('#select-subordinate').select2({
682
    $('#select-competency').select2({
802
        theme: 'bootstrap4',
683
        theme: 'bootstrap4',
803
        width: '100%',
684
        width: '100%',
Línea 804... Línea -...
804
    });
-
 
805
 
-
 
806
 
685
    });
807
 
-
 
808
    $('#select-competency').select2({
-
 
Línea 809... Línea 686...
809
        theme: 'bootstrap4',
686
 
Línea 810... Línea 687...
810
        width: '100%',
687
 
811
    });
688
 
812
    
689
    $.fn.refreshTree();    
-
 
690
 
-
 
691
});
813
 
692
 
Línea 814... Línea 693...
814
});
693
JS;
815
 
694
$this->inlineScript()->captureEnd();
816
JS;
695
?>
817
$this->inlineScript()->captureEnd();
696
 
Línea 832... Línea 711...
832
    <div class="container-fluid">
711
    <div class="container-fluid">
833
        <div class="row">
712
        <div class="row">
834
            <div class="col-12">
713
            <div class="col-12">
835
                <div class="card">
714
                <div class="card">
836
                    <div class="card-body">
715
                    <div class="card-body">
837
                        <table id="gridTable" class="table table-hover">
-
 
838
                            <thead>
-
 
839
                                <tr>
-
 
840
                                    <th style="width: 50%">LABEL_NAME</th>
716
                   	  <div id="divNoRecordsAvailable" class="text-center" style="display: none"><h3>LABEL_NO_RECORDS_AVAILABLE</h3></div>
841
                                    <th style="width: 15%">LABEL_ACTIVE</th>
717
                   	 <div id="ol-jobs-descriptions-container" style="background-color: rgba(0, 0, 0, .03); width: 100%; height: 600px; scroll: auto; overflow: auto;">
842
                                    <th style="width: 35%">LABEL_ACTIONS</th>
718
     					 <ol id="ol-jobs-descriptions" class="default vertical" style="padding-left: 0px;">
843
                                </tr>
-
 
844
                            </thead>
-
 
845
                            <tbody>
-
 
-
 
719
 
846
                            </tbody>
720
            			</ol>
-
 
721
            	
847
                        </table>
722
            		 </div>
-
 
723
                        
-
 
724
                 
-
 
725
            
848
                    </div>
726
                    </div>
849
                    <div class="card-footer clearfix">
727
                    <div class="card-footer clearfix">
850
                        <div style="float:right;">
728
                		<div  style="float:right;" >
851
                            <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
729
                            <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
852
                            <?php if ($allowAdd) : ?>
730
                            <?php if ($allowAdd) : ?>
853
                                <?php if ($allowImport) : ?>
731
                                <?php if ($allowImport) : ?>
854
                                    <button type="button" class="btn btn-primary btn-import"><i class="fa fa-upload"></i> LABEL_IMPORT </button>
732
                                    <button type="button" class="btn btn-primary btn-import"><i class="fa fa-upload"></i> LABEL_IMPORT </button>
855
                                <?php endif; ?>
733
                                <?php endif; ?>
856
                                <button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
734
                                <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>
857
                            <?php endif; ?>
735
                            <?php endif; ?>
858
                        </div>
736
                        </div>
859
                    </div>
737
                    </div>
860
                </div>
738
                </div>
861
            </div>
739
            </div>
862
        </div>
740
        </div>
863
    </div>
741
    </div>
864
</section>
742
</section>
Línea 865... Línea 743...
865
 
743
 
866
<section id="row-form" style="display:none">
744
<section id="row-form" style="display:none">
867
    <div class="container">
-
 
868
        <!-- Modal Header -->
745
	<div class="card">
869
        <div class="modal-header">
746
        <div class="card-header">
870
            <h4 class="modal-title">LABEL_JOB_DESCRIPTION - <span id="form-title"></span></h4>
747
            <h4 class="modal-title">LABEL_JOB_DESCRIPTION - <span id="form-title"></span></h4>
871
        </div>
-
 
872
        <!-- Modal body -->
748
        </div>
873
        <div class="modal-body">
749
 		<div class="card-body">
874
            <div class="card card-primary card-outline card-tabs">
750
            <div class="card card-primary card-outline card-tabs">
875
                <div class="card-header p-0 pt-1 border-bottom-0">
751
                <div class="card-header p-0 pt-1 border-bottom-0">
876
                    <ul class="nav nav-tabs" id="custom-tabs" role="tablist">
752
                    <ul class="nav nav-tabs" id="custom-tabs" role="tablist">
877
                        <li class="nav-item">
753
                        <li class="nav-item">
878
                            <a class="nav-link active" id="custom-tabs-general-tab" data-toggle="pill" href="#custom-tabs-general" role="tab" aria-controls="custom-tabs-general" aria-selected="true">LABEL_GENERAL</a>
754
                            <a class="nav-link active" id="custom-tabs-general-tab" data-toggle="pill" href="#custom-tabs-general" role="tab" aria-controls="custom-tabs-general" aria-selected="true">LABEL_GENERAL</a>
879
                        </li>
755
                        </li>
880
                        <li class="nav-item">
756
                        <li class="nav-item">
881
                            <a class="nav-link" id="custom-tabs-compentencies-tab" data-toggle="pill" href="#custom-tabs-compentencies" role="tab" aria-controls="custom-tabs-compentencies" aria-selected="false">LABEL_COMPETENCIES</a>
757
                            <a class="nav-link" id="custom-tabs-compentencies-tab" data-toggle="pill" href="#custom-tabs-compentencies" role="tab" aria-controls="custom-tabs-compentencies" aria-selected="false">LABEL_COMPETENCIES</a>
882
                        </li>
-
 
883
                        <li class="nav-item">
-
 
884
                            <a class="nav-link" id="custom-tabs-subordinate-tab" data-toggle="pill" href="#custom-tabs-subordinate" role="tab" aria-controls="custom-tabs-subordinate" aria-selected="false">LABEL_SUBORDINATES</a>
-
 
885
                        </li>
758
                        </li>
886
                    </ul>
759
                    </ul>
887
                </div>
760
                </div>
888
                <div class="card-body">
761
                <div class="card-body">
889
                    <?php
762
                    <?php
Línea 896... Línea 769...
896
 
769
 
897
                    $form->prepare();
770
                    $form->prepare();
Línea 898... Línea -...
898
                    echo $this->form()->openTag($form);
-
 
899
 
-
 
900
 
-
 
901
                    $element = $form->get('subordinates');
771
                    echo $this->form()->openTag($form);
902
                    echo $this->formHidden($element);
772
 
Línea 903... Línea 773...
903
 
773
 
Línea 920... Línea 790...
920
                                        echo $this->formLabel($element);
790
                                        echo $this->formLabel($element);
921
                                        echo $this->formText($element);
791
                                        echo $this->formText($element);
922
                                        ?>
792
                                        ?>
923
                                    </div>
793
                                    </div>
924
                                </div>
794
                                </div>
925
                                <div class="col-md col-sm-12 col-12">
-
 
926
                                    <div class="form-group m-0">
-
 
927
                                        <?php
-
 
928
                                        $element = $form->get('job_description_id_boss');
-
 
929
                                        $element->setOptions(['label' => 'LABEL_BOSS']);
-
 
930
                                        $element->setAttributes(['class' => 'form-control']);
-
 
931
 
-
 
932
                                        echo $this->formLabel($element);
-
 
933
                                        echo $this->formSelect($element);
-
 
934
                                        ?>
-
 
935
                                    </div>
-
 
936
                                </div>
-
 
937
                                <div class="col-md col-sm-12 col-12 d-flex align-items-center justify-content-center">
795
                                <div class="col-md col-sm-12 col-12 d-flex align-items-center justify-content-center">
938
                                    <div class="form-group m-0">
796
                                    <div class="form-group m-0">
939
                                        <label>LABEL_STATUS</label>
797
                                        <label>LABEL_STATUS</label>
940
                                        <br />
798
                                        <br />
941
                                        <?php
799
                                        <?php
Línea 981... Línea 839...
981
                                <br>
839
                                <br>
982
                                <div class="col-md-12 col-sm-12 col-xs-12" id="renderCompetencies" style="margin-top: 10px;">
840
                                <div class="col-md-12 col-sm-12 col-xs-12" id="renderCompetencies" style="margin-top: 10px;">
983
                                </div>
841
                                </div>
984
                            </div>
842
                            </div>
985
                        </div>
843
                        </div>
986
                        <div class="tab-pane fade" id="custom-tabs-subordinate" role="tabpanel" aria-labelledby="custom-tabs-subordinate-tab">
-
 
987
                            <div class="row">
-
 
988
                                <div class="col-md-8 col-sm-8 col-xs-12">
-
 
989
                                    <select id="select-subordinate" class="form-control"></select>
-
 
990
                                </div>
-
 
991
                                <div class="col-md-4 col-sm-4 col-xs-12">
-
 
992
                                    <button type="button" class="btn btn-primary" id="btn-select-subordinate" data-toggle="tooltip" title="LABEL_ADD ">LABEL_ADD </button>
-
 
993
                                </div>
-
 
994
                            </div>
-
 
995
                            <div class="row">
-
 
996
                                <div class="col-md-12 col-sm-12 col-xs-12" style="margin-top: 10px;">
-
 
997
                                    <table class="table table-bordered">
-
 
998
                                        <thead>
-
 
999
                                            <tr>
-
 
1000
                                                <th style="width: 60%;">LABEL_NAME</th>
-
 
1001
                                                <th style="width: 20%;">LABEL_ACTIONS</th>
-
 
1002
                                            </tr>
-
 
1003
                                        </thead>
-
 
1004
                                        <tbody id="renderSubordinates"></tbody>
-
 
1005
                                    </table>
-
 
1006
                                </div>
-
 
1007
                            </div>
-
 
1008
                        </div>
-
 
1009
                    </div>
844
                    </div>
1010
                </div>
845
                </div>
1011
            </div>
846
            </div>
1012
            <?php echo $this->form()->closeTag($form); ?>
847
            <?php echo $this->form()->closeTag($form); ?>
1013
            <!-- /.card -->
-
 
-
 
848
 
1014
        </div>
849
        </div>
1015
        <!-- Modal footer -->
-
 
1016
        <div class="modal-footer">
850
        <div class="card-footer clearfix">
1017
            <button type="submit" form="form" class="btn btn-primary">LABEL_SAVE</button>
851
            <button type="submit" form="form" class="btn btn-primary">LABEL_SAVE</button>
1018
            <button type="button" class="btn btn-danger btn-edit-cancel">Cerrar</button>
852
            <button type="button" class="btn btn-danger btn-edit-job-description-cancel">Cerrar</button>
1019
        </div>
853
        </div>
-
 
854
	</div>
-
 
855
 
-
 
856
 
1020
</section>
857
</section>
Línea 1021... Línea 858...
1021
 
858
 
1022
 
859
 
1023
<!--start modal behavior-->
860
<!--start modal behavior-->
1024
<div id="modal-behavior" class="modal" tabindex="-1" role="dialog">
861
<div id="modal-behavior" class="modal" tabindex="-1" role="dialog">
1025
    <div class="modal-dialog modal-lg" role="document">
862
	<form action="#" name="form-behavior" id="form-behavior">
1026
        <form action="#" name="form-behavior" id="form-behavior">
863
        <div class="modal-dialog " role="document">
1027
            <input type="hidden" id="behavior-uuid" name="behavior-uuid" value="" />
864
    		<input type="hidden" id="behavior-uuid" name="behavior-uuid" value="" />
1028
            <input type="hidden" id="competency-uuid" name="competency-uuid value="" />
865
       		<input type="hidden" id="competency-uuid" name="competency-uuid value="" />
1029
         <div class=" modal-content">
866
       		<div class=" modal-content">
1030
            <div class="modal-header">
867
                <div class="modal-header">
1031
                <h4 class="modal-title">LABEL_EDIT LABEL_LEVEL</h4>
868
                    <h4 class="modal-title">LABEL_EDIT LABEL_LEVEL</h4>
1032
                <button type="button" class="close" data-dismiss="modal" aria-label="Close">
869
                    <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1033
                    <span aria-hidden="true">&times;</span>
870
                        <span aria-hidden="true">&times;</span>
1034
                </button>
871
                    </button>
1035
            </div>
872
                </div>
1036
            <div class="modal-body">
873
                <div class="modal-body">
1037
               <div class="form-group">
874
                       <div class="form-group">
1038
                  <label for="behavior-value">LABEL_LEVEL</label>
875
                          <label for="behavior-value">LABEL_LEVEL</label>
1039
                  <input type="number" step="1" min="0" max="100" id="level" name="level">
876
                          <input type="number" step="1" min="0" max="100" id="level" name="level">
1040
            </div>
877
                    </div>
1041
            <div class="modal-footer">
878
                    <div class="modal-footer">
-
 
879
                        <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>
880
                        <button type="button" class="btn btn-secondary" data-dismiss="modal">LABEL_CLOSE</button>
1043
                <button type="button" class="btn btn-secondary" data-dismiss="modal">LABEL_CLOSE</button>
881
                    </div>
1044
            </div>
882
            	</div>
1045
    </div>
883
        	</div>
1046
    </form>
884
    	</div>
Línea 1047... Línea 885...
1047
</div>
885
	</form>
Línea 1078... Línea 916...
1078
                     <td class="text-left">LABEL_COMPETENCY</td>
916
                     <td class="text-left">LABEL_COMPETENCY</td>
1079
                     <td class="text-left">{{:name}}</td>
917
                     <td class="text-left">{{:name}}</td>
1080
                     <td>
918
                     <td>
1081
                     </td>
919
                     </td>
1082
                     <td>
920
                     <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> 
921
                        <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> 
1084
                     </td>
922
                     </td>
1085
                  </tr>
923
                  </tr>
1086
                  {{for behaviors}}
924
                  {{for behaviors}}
1087
                  <tr >
925
                  <tr >
1088
                     <td class="text-left">--LABEL_BEHAVIOR</td>
926
                     <td class="text-left">--LABEL_BEHAVIOR</td>
Línea 1091... Línea 929...
1091
                     </td>
929
                     </td>
1092
                     <td class="text-right">
930
                     <td class="text-right">
1093
                        {{:level}} 
931
                        {{:level}} 
1094
                     </td>
932
                     </td>
1095
                     <td>
933
                     <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> 
934
                        <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> 
1097
                     </td>
935
                     </td>
1098
                  </tr>
936
                  </tr>
1099
                  {{/for}}
937
                  {{/for}}
1100
               </tbody>
938
               </tbody>
1101
            </table>
939
            </table>
Línea 1133... Línea 971...
1133
                     <td class="text-left">LABEL_COMPETENCY</td>
971
                     <td class="text-left">LABEL_COMPETENCY</td>
1134
                     <td class="text-left">{{:name}}</td>
972
                     <td class="text-left">{{:name}}</td>
1135
                     <td>
973
                     <td>
1136
                     </td>
974
                     </td>
1137
                     <td>
975
                     <td>
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> 
976
                        <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> 
1139
                     </td>
977
                     </td>
1140
                  </tr>
978
                  </tr>
1141
                  {{for behaviors}}
979
                  {{for behaviors}}
1142
                  <tr >
980
                  <tr >
1143
                     <td class="text-left">--LABEL_BEHAVIOR</td>
981
                     <td class="text-left">--LABEL_BEHAVIOR</td>
Línea 1150... Línea 988...
1150
                        {{if level == '2' }} LABEL_LEVEL_TWO {{/if}} 
988
                        {{if level == '2' }} LABEL_LEVEL_TWO {{/if}} 
1151
                        {{if level == '3' }} LABEL_LEVEL_THREE {{/if}} 
989
                        {{if level == '3' }} LABEL_LEVEL_THREE {{/if}} 
1152
                        {{if level == '4' }} LABEL_LEVEL_FOUR {{/if}} 
990
                        {{if level == '4' }} LABEL_LEVEL_FOUR {{/if}} 
1153
                     </td>
991
                     </td>
1154
                     <td>
992
                     <td>
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> 
993
                        <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> 
1156
                     </td>
994
                     </td>
1157
                  </tr>
995
                  </tr>
1158
                  {{/for}}
996
                  {{/for}}
1159
               </tbody>
997
               </tbody>
1160
            </table>
998
            </table>
Línea 1162... Línea 1000...
1162
      </div>
1000
      </div>
1163
   </div>
1001
   </div>
1164
</div>
1002
</div>
1165
</script>
1003
</script>
Línea -... Línea 1004...
-
 
1004
 
-
 
1005
<script id="listJobDescriptionTemplate" type="text/x-jsrender">
-
 
1006
	<li data-id="{{:uuid}}" >
-
 
1007
        <div class="content">
-
 
1008
 
-
 
1009
 
-
 
1010
 
-
 
1011
        <div class="sidebar {{if status == '<?php echo JobDescription::STATUS_INACTIVE ?>' }} sidebar-inactive {{/if}}">
-
 
1012
 
-
 
1013
        {{>name}} 
-
 
1014
        <div class="float-right right-sidebar">
-
 
1015
            {{if status == '<?php echo JobDescription::STATUS_ACTIVE ?>' }} 
-
 
1016
            {{if link_add }}
-
 
1017
            <i class="fa fa-plus btn-add-job-description" data-link="{{:link_add}}"></i>&nbsp;
-
 
1018
            {{/if}}
-
 
1019
            {{/if}}
-
 
1020
            {{if link_edit }}
-
 
1021
            <i class="fa fa-pencil btn-edit-job-description" data-link="{{:link_edit}}"></i>&nbsp;
-
 
1022
            {{/if}}
-
 
1023
            {{if link_delete }}
-
 
1024
            <i class="fa fa-trash btn-delete-job-description" data-link="{{:link_delete}}"></i>&nbsp;
-
 
1025
            {{/if}}
-
 
1026
            {{if status == '<?php echo JobDescription::STATUS_ACTIVE ?>' }} 
-
 
1027
            {{if link_report }}
-
 
1028
            <i class="fa fa-file-o btn-pdf-job-description" data-link="{{:link_report}}"></i>&nbsp;
-
 
1029
            {{/if}}
-
 
1030
            {{/if}}
-
 
1031
        </div>
-
 
1032
        </div>
-
 
1033
        </div>
-
 
1034
        <ol>	
-
 
1035
	   {{for children tmpl="#listJobDescriptionTemplate"/}}
-
 
1036
	   </ol> 
-
 
1037
	</li>
Línea 1166... Línea -...
1166
 
-
 
1167
 
-
 
1168
<script id="subordinateTemplate" type="text/x-jsrender">
-
 
1169
    <tr>
-
 
1170
        <td class="text-left"> {{:~getSubordinate(uuid).name}}</td>
-
 
1171
        <td>
-
 
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>   
-
 
1173
        </td>
-
 
1174
    </tr>
-
 
1175
    </script>
-
 
1176
 
1038
</script>