15404 |
stevensc |
1 |
<?php
|
|
|
2 |
|
15337 |
efrain |
3 |
use LeadersLinked\Model\JobDescription;
|
|
|
4 |
|
|
|
5 |
$acl = $this->viewModel()->getRoot()->getVariable('acl');
|
|
|
6 |
$currentUser = $this->currentUserHelper();
|
|
|
7 |
|
|
|
8 |
$roleName = $currentUser->getUserTypeId();
|
|
|
9 |
|
|
|
10 |
|
15443 |
efrain |
11 |
$routeAdd = $this->url('jobs-description/add');
|
|
|
12 |
$routeDatatable = $this->url('jobs-description');
|
|
|
13 |
$routeImport = $this->url('jobs-description/import');
|
15337 |
efrain |
14 |
$routeDashboard = $this->url('dashboard');
|
|
|
15 |
|
15443 |
efrain |
16 |
$allowAdd = $acl->isAllowed($roleName, 'jobs-description/add') ? 1 : 0;
|
|
|
17 |
$allowEdit = $acl->isAllowed($roleName, 'jobs-description/edit') ? 1 : 0;
|
|
|
18 |
$allowDelete = $acl->isAllowed($roleName, 'jobs-description/delete') ? 1 : 0;
|
|
|
19 |
$allowReport = $acl->isAllowed($roleName, 'jobs-description/report') ? 1 : 0;
|
|
|
20 |
$allowImport = $acl->isAllowed($roleName, 'jobs-description/import') ? 1 : 0;
|
15337 |
efrain |
21 |
|
|
|
22 |
|
|
|
23 |
$this->headLink()->appendStylesheet($this->basePath('plugins/nprogress/nprogress.css'));
|
|
|
24 |
$this->inlineScript()->appendFile($this->basePath('plugins/nprogress/nprogress.js'));
|
|
|
25 |
|
15443 |
efrain |
26 |
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-maxlenght/bootstrap-maxlength.min.js'));
|
15337 |
efrain |
27 |
|
|
|
28 |
|
|
|
29 |
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/jquery.validate.js'));
|
|
|
30 |
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/additional-methods.js'));
|
|
|
31 |
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/localization/messages_es.js'));
|
|
|
32 |
|
|
|
33 |
$this->headLink()->appendStylesheet($this->basePath('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css'));
|
|
|
34 |
$this->headLink()->appendStylesheet($this->basePath('plugins/datatables-responsive/css/responsive.bootstrap4.min.css'));
|
|
|
35 |
|
|
|
36 |
$this->inlineScript()->appendFile($this->basePath('plugins/datatables/jquery.dataTables.min.js'));
|
|
|
37 |
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js'));
|
|
|
38 |
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-responsive/js/dataTables.responsive.min.js'));
|
|
|
39 |
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-responsive/js/responsive.bootstrap4.min.js'));
|
|
|
40 |
|
|
|
41 |
|
|
|
42 |
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
|
|
|
43 |
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
|
|
|
44 |
|
|
|
45 |
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-confirmation/dist/bootstrap-confirmation.js'));
|
|
|
46 |
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap-checkbox/awesome-bootstrap-checkbox.css'));
|
|
|
47 |
|
|
|
48 |
$this->inlineScript()->appendFile($this->basePath('plugins/select2/js/select2.js'));
|
|
|
49 |
$this->inlineScript()->appendFile($this->basePath('plugins/select2/js/i18n/es.js'));
|
|
|
50 |
$this->headLink()->appendStylesheet($this->basePath('plugins/select2/css/select2.css'));
|
|
|
51 |
|
|
|
52 |
$this->headLink()->appendStylesheet($this->basePath('plugins/select2-bootstrap4-theme/select2-bootstrap4.css'));
|
|
|
53 |
|
|
|
54 |
|
|
|
55 |
// bootbox Alert //
|
|
|
56 |
$this->inlineScript()->appendFile($this->basePath('plugins/bootbox/bootbox.min.js'));
|
|
|
57 |
|
|
|
58 |
// JsRender //
|
|
|
59 |
$this->inlineScript()->appendFile($this->basePath('plugins/jsrender/jsrender.min.js'));
|
|
|
60 |
|
|
|
61 |
|
|
|
62 |
// Page Styles
|
15443 |
efrain |
63 |
//$this->headLink()->appendStylesheet($this->basePath('css/pages/self-evaluation.css'));
|
15337 |
efrain |
64 |
|
|
|
65 |
|
15443 |
efrain |
66 |
|
|
|
67 |
|
15337 |
efrain |
68 |
$status_active = JobDescription::STATUS_ACTIVE;
|
|
|
69 |
|
|
|
70 |
$this->inlineScript()->captureStart();
|
|
|
71 |
echo <<<JS
|
|
|
72 |
|
15443 |
efrain |
73 |
|
15337 |
efrain |
74 |
jQuery(document).ready(function($) {
|
15443 |
efrain |
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
|
|
|
144 |
}));
|
|
|
145 |
}
|
|
|
146 |
});
|
|
|
147 |
}
|
|
|
148 |
|
|
|
149 |
|
15337 |
efrain |
150 |
$.validator.setDefaults({
|
|
|
151 |
debug: true,
|
|
|
152 |
highlight: function(element) {
|
|
|
153 |
$(element).addClass('is-invalid');
|
|
|
154 |
},
|
|
|
155 |
unhighlight: function(element) {
|
|
|
156 |
$(element).removeClass('is-invalid');
|
|
|
157 |
},
|
|
|
158 |
errorElement: 'span',
|
|
|
159 |
errorClass: 'error invalid-feedback',
|
|
|
160 |
errorPlacement: function(error, element) {
|
|
|
161 |
if (element.parent('.form-group').length) {
|
|
|
162 |
error.insertAfter(element);
|
|
|
163 |
} else if (element.parent('.toggle').length) {
|
|
|
164 |
error.insertAfter(element.parent().parent());
|
|
|
165 |
} else {
|
|
|
166 |
error.insertAfter(element.parent());
|
|
|
167 |
}
|
|
|
168 |
}
|
|
|
169 |
});
|
15443 |
efrain |
170 |
|
15337 |
efrain |
171 |
$.fn.showFormErrorValidator = function(fieldname, errors) {
|
|
|
172 |
var field = $(fieldname);
|
|
|
173 |
if (field) {
|
|
|
174 |
$(field).addClass('is-invalid');
|
|
|
175 |
var error = $('<span id="' + fieldname + '-error" class="error invalid-feedback">' + errors + '</div>');
|
|
|
176 |
if (field.parent('.form-group').length) {
|
|
|
177 |
error.insertAfter(field);
|
|
|
178 |
} else if (field.parent('.toggle').length) {
|
|
|
179 |
error.insertAfter(field.parent().parent());
|
|
|
180 |
} else {
|
|
|
181 |
error.insertAfter(field.parent());
|
|
|
182 |
}
|
|
|
183 |
}
|
|
|
184 |
};
|
15443 |
efrain |
185 |
|
15337 |
efrain |
186 |
var gridTable = $('#gridTable').dataTable({
|
|
|
187 |
'processing': true,
|
|
|
188 |
'serverSide': true,
|
|
|
189 |
'searching': true,
|
|
|
190 |
'order': [
|
|
|
191 |
[0, 'asc']
|
|
|
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);
|
|
|
219 |
}
|
|
|
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 |
},
|
|
|
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',
|
|
|
253 |
onConfirm: function(value) {
|
|
|
254 |
action = $(this).data('href');
|
|
|
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']) {
|
|
|
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 |
},
|
|
|
285 |
],
|
|
|
286 |
'columnDefs': [{
|
|
|
287 |
'targets': 0,
|
|
|
288 |
'className': 'text-vertical-middle',
|
|
|
289 |
},
|
|
|
290 |
{
|
|
|
291 |
'targets': -2,
|
|
|
292 |
'orderable': false,
|
|
|
293 |
'className': 'text-center',
|
|
|
294 |
'render': function(data, type, row) {
|
|
|
295 |
checked = data == 'a' ? ' checked="checked" ' : '';
|
|
|
296 |
return '<div class="checkbox checkbox-success">' +
|
|
|
297 |
'<input class="styled" type="checkbox" ' + checked + ' disabled="disabled">' +
|
|
|
298 |
'<label ></label></div>';
|
|
|
299 |
}
|
|
|
300 |
},
|
|
|
301 |
{
|
|
|
302 |
'targets': -1,
|
|
|
303 |
'orderable': false,
|
|
|
304 |
'render': function(data, type, row) {
|
|
|
305 |
s = '';
|
15443 |
efrain |
306 |
if (allowEdit && data['link_edit']) {
|
15337 |
efrain |
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> ';
|
|
|
308 |
}
|
15443 |
efrain |
309 |
if (allowDelete && data['link_delete']) {
|
15337 |
efrain |
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> ';
|
|
|
311 |
}
|
15443 |
efrain |
312 |
if (allowReport && data['link_report']) {
|
|
|
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> ';
|
15337 |
efrain |
314 |
}
|
|
|
315 |
return s;
|
|
|
316 |
}
|
|
|
317 |
}
|
|
|
318 |
],
|
|
|
319 |
});
|
15443 |
efrain |
320 |
|
15337 |
efrain |
321 |
var validator = $('#form').validate({
|
|
|
322 |
debug: true,
|
|
|
323 |
onclick: false,
|
|
|
324 |
onkeyup: false,
|
|
|
325 |
ignore: [],
|
|
|
326 |
rules: {
|
|
|
327 |
'name': {
|
|
|
328 |
required: true,
|
|
|
329 |
maxlength: 64,
|
|
|
330 |
},
|
|
|
331 |
'functions': {
|
|
|
332 |
required: true,
|
15443 |
efrain |
333 |
maxlength: 1024,
|
15337 |
efrain |
334 |
},
|
|
|
335 |
'objectives': {
|
15443 |
efrain |
336 |
required: true,
|
|
|
337 |
maxlength: 1024,
|
15337 |
efrain |
338 |
},
|
|
|
339 |
'status': {
|
|
|
340 |
required: false,
|
|
|
341 |
},
|
15443 |
efrain |
342 |
'job_description_id_boss': {
|
|
|
343 |
required: false,
|
|
|
344 |
}
|
15337 |
efrain |
345 |
},
|
|
|
346 |
submitHandler: function(form) {
|
15443 |
efrain |
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 |
|
|
|
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 |
|
|
|
366 |
$.each(subordinates_selected, function(i, subordinate_selected) {
|
|
|
367 |
data.subordinates_selected.push(subordinate_selected.uuid);
|
|
|
368 |
});
|
|
|
369 |
|
|
|
370 |
NProgress.start();
|
15337 |
efrain |
371 |
$.ajax({
|
|
|
372 |
'dataType': 'json',
|
|
|
373 |
'accept': 'application/json',
|
|
|
374 |
'method': 'post',
|
|
|
375 |
'url': $('#form').attr('action'),
|
15443 |
efrain |
376 |
'data': data,
|
15337 |
efrain |
377 |
}).done(function(response) {
|
|
|
378 |
if (response['success']) {
|
|
|
379 |
$.fn.showSuccess(response['data']);
|
|
|
380 |
$('#row-lists').show();
|
15443 |
efrain |
381 |
$('#row-form').hide();
|
15337 |
efrain |
382 |
gridTable.api().ajax.reload(null, false);
|
|
|
383 |
} else {
|
|
|
384 |
validator.resetForm();
|
|
|
385 |
if (jQuery.type(response['data']) == 'string') {
|
|
|
386 |
$.fn.showError(response['data']);
|
|
|
387 |
} else {
|
|
|
388 |
$.each(response['data'], function(fieldname, errors) {
|
|
|
389 |
$.fn.showFormErrorValidator('#form #' + fieldname, errors);
|
|
|
390 |
});
|
|
|
391 |
}
|
|
|
392 |
}
|
|
|
393 |
}).fail(function(jqXHR, textStatus, errorThrown) {
|
|
|
394 |
$.fn.showError(textStatus);
|
|
|
395 |
}).always(function() {
|
|
|
396 |
NProgress.done();
|
|
|
397 |
});
|
|
|
398 |
return false;
|
|
|
399 |
},
|
|
|
400 |
invalidHandler: function(form, validator) {}
|
|
|
401 |
});
|
15443 |
efrain |
402 |
|
15337 |
efrain |
403 |
$('body').on('click', 'button.btn-add', function(e) {
|
|
|
404 |
e.preventDefault();
|
|
|
405 |
NProgress.start();
|
|
|
406 |
$.ajax({
|
|
|
407 |
'dataType': 'json',
|
|
|
408 |
'accept': 'application/json',
|
|
|
409 |
'method': 'get',
|
|
|
410 |
'url': '$routeAdd',
|
|
|
411 |
}).done(function(response) {
|
15443 |
efrain |
412 |
|
15337 |
efrain |
413 |
if (response['success']) {
|
15443 |
efrain |
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 |
|
15337 |
efrain |
458 |
$('span[id="form-title"]').html('LABEL_ADD');
|
|
|
459 |
$('#form').attr('action', '$routeAdd');
|
|
|
460 |
$('#form #name').val('');
|
|
|
461 |
$('#form #status').bootstrapToggle('on');
|
15443 |
efrain |
462 |
|
|
|
463 |
$('#form #functions').val('');
|
|
|
464 |
$('#form #objectives').val('');
|
|
|
465 |
|
15337 |
efrain |
466 |
validator.resetForm();
|
15443 |
efrain |
467 |
|
|
|
468 |
|
15337 |
efrain |
469 |
$('#custom-tabs #custom-tabs-general-tab').tab('show');
|
|
|
470 |
$('#row-lists').hide();
|
15443 |
efrain |
471 |
$('#row-form').show();
|
|
|
472 |
|
|
|
473 |
} else {
|
15337 |
efrain |
474 |
$.fn.showError(response['data']);
|
|
|
475 |
}
|
|
|
476 |
}).fail(function(jqXHR, textStatus, errorThrown) {
|
|
|
477 |
$.fn.showError(textStatus);
|
|
|
478 |
}).always(function() {
|
|
|
479 |
NProgress.done();
|
|
|
480 |
});
|
15443 |
efrain |
481 |
return false
|
15337 |
efrain |
482 |
});
|
15443 |
efrain |
483 |
|
15337 |
efrain |
484 |
$('body').on('click', 'button.btn-edit', function(e) {
|
|
|
485 |
e.preventDefault();
|
|
|
486 |
NProgress.start();
|
|
|
487 |
var action = $(this).data('href');
|
|
|
488 |
$.ajax({
|
|
|
489 |
'dataType': 'json',
|
|
|
490 |
'accept': 'application/json',
|
|
|
491 |
'method': 'get',
|
|
|
492 |
'url': action,
|
|
|
493 |
}).done(function(response) {
|
|
|
494 |
if (response['success']) {
|
|
|
495 |
$('span[id="form-title"]').html('LABEL_EDIT');
|
|
|
496 |
$('#form').attr('action', action);
|
|
|
497 |
$('#form #name').val(response['data']['name']);
|
|
|
498 |
$('#form #status').bootstrapToggle(response['data']['status'] == '$status_active' ? 'on' : 'off')
|
15443 |
efrain |
499 |
|
|
|
500 |
$('#form #functions').val(response['data']['functions']);
|
|
|
501 |
$('#form #objectives').val(response['data']['objectives']);
|
|
|
502 |
|
|
|
503 |
behaviors = response['data']['behaviors'];
|
|
|
504 |
competency_types = response['data']['competency_types'];
|
15337 |
efrain |
505 |
competencies = response['data']['competencies'];
|
15443 |
efrain |
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');
|
|
|
529 |
|
|
|
530 |
|
15337 |
efrain |
531 |
competencies_selected = response['data']['competencies_selected'];
|
15443 |
efrain |
532 |
subordinates_selected = response['data']['subordinates_selected'];
|
|
|
533 |
|
|
|
534 |
|
|
|
535 |
|
|
|
536 |
$.fn.renderCompetencies();
|
|
|
537 |
$.fn.comboCompetencies();
|
|
|
538 |
|
|
|
539 |
$.fn.renderSubordinates();
|
|
|
540 |
$.fn.comboSubordinates();
|
|
|
541 |
|
|
|
542 |
|
15337 |
efrain |
543 |
validator.resetForm();
|
|
|
544 |
$('#custom-tabs #custom-tabs-general-tab').tab('show');
|
|
|
545 |
$('#row-lists').hide();
|
15443 |
efrain |
546 |
$('#row-form').show();
|
15337 |
efrain |
547 |
} else {
|
|
|
548 |
$.fn.showError(response['data']);
|
|
|
549 |
}
|
|
|
550 |
}).fail(function(jqXHR, textStatus, errorThrown) {
|
|
|
551 |
$.fn.showError(textStatus);
|
|
|
552 |
}).always(function() {
|
|
|
553 |
NProgress.done();
|
|
|
554 |
});
|
|
|
555 |
});
|
|
|
556 |
$('body').on('click', 'button.btn-refresh', function(e) {
|
|
|
557 |
e.preventDefault();
|
|
|
558 |
gridTable.api().ajax.reload(null, false);
|
|
|
559 |
});
|
15443 |
efrain |
560 |
|
15337 |
efrain |
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 |
});
|
15443 |
efrain |
567 |
|
15337 |
efrain |
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 |
});
|
15443 |
efrain |
589 |
|
|
|
590 |
|
|
|
591 |
$('body').on('click', 'button.btn-pdf', function(e) {
|
|
|
592 |
e.preventDefault();
|
|
|
593 |
var action = $(this).data('href');
|
|
|
594 |
|
|
|
595 |
|
|
|
596 |
NProgress.start();
|
|
|
597 |
$.ajax({
|
|
|
598 |
'dataType' : 'json',
|
|
|
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);
|
|
|
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 |
|
15337 |
efrain |
620 |
});
|
15407 |
stevensc |
621 |
|
15443 |
efrain |
622 |
|
|
|
623 |
|
15337 |
efrain |
624 |
$('body').on('click', 'button[id="btn-select-competency"]', function(e) {
|
15443 |
efrain |
625 |
var competency_uuid = $('#select-competency').val();
|
|
|
626 |
|
|
|
627 |
if (competency_uuid.length == '') {
|
|
|
628 |
$.fn.showError('ERROR_SELECT_COMPETENCY_IS_EMPTY');
|
15337 |
efrain |
629 |
} else {
|
15443 |
efrain |
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,
|
|
|
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 |
|
|
|
645 |
|
|
|
646 |
competencies_selected.push(competency_selected);
|
|
|
647 |
|
|
|
648 |
$.fn.renderCompetencies();
|
|
|
649 |
$.fn.comboCompetencies();
|
|
|
650 |
}
|
15337 |
efrain |
651 |
}
|
|
|
652 |
});
|
15443 |
efrain |
653 |
|
|
|
654 |
|
15337 |
efrain |
655 |
$('body').on('click', 'button[id="btn-select-subordinate"]', function(e) {
|
15443 |
efrain |
656 |
e.preventDefault();
|
|
|
657 |
|
|
|
658 |
var uuid = $("#select-subordinate").val();
|
|
|
659 |
|
|
|
660 |
if (uuid == "") {
|
|
|
661 |
$.fn.showError('ERROR_SELECT_DEPENDENT_IS_EMPTY');
|
15337 |
efrain |
662 |
} else {
|
15443 |
efrain |
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 |
}
|
15337 |
efrain |
669 |
}
|
|
|
670 |
});
|
15443 |
efrain |
671 |
|
15337 |
efrain |
672 |
$('body').on('click', 'button.btn-delete-subordinate', function(e) {
|
15443 |
efrain |
673 |
var uuid = $(this).data('subordinate');
|
15337 |
efrain |
674 |
bootbox.confirm({
|
15443 |
efrain |
675 |
title: 'LABEL_DEPENDENT_DELETE_TITLE',
|
|
|
676 |
message: 'LABEL_DEPENDENT_DELETE_MESSAGE',
|
15337 |
efrain |
677 |
buttons: {
|
|
|
678 |
cancel: {
|
|
|
679 |
label: '<i class="fa fa-times"></i> LABEL_CANCEL'
|
|
|
680 |
},
|
|
|
681 |
confirm: {
|
|
|
682 |
label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
|
|
|
683 |
}
|
|
|
684 |
},
|
|
|
685 |
callback: function(result) {
|
|
|
686 |
if (result) {
|
15443 |
efrain |
687 |
subordinates_selected = subordinates_selected.filter((item) => item.uuid != uuid ? item : false);
|
|
|
688 |
|
|
|
689 |
$.fn.renderSubordinates();
|
|
|
690 |
$.fn.comboSubordinates();
|
15337 |
efrain |
691 |
}
|
|
|
692 |
}
|
|
|
693 |
});
|
|
|
694 |
});
|
15443 |
efrain |
695 |
|
|
|
696 |
|
|
|
697 |
|
15337 |
efrain |
698 |
$('body').on('click', 'button.btn-delete-competency', function(e) {
|
15443 |
efrain |
699 |
e.preventDefault();
|
|
|
700 |
|
|
|
701 |
var uuid = $(this).data('competency');
|
15337 |
efrain |
702 |
bootbox.confirm({
|
15443 |
efrain |
703 |
title: 'LABEL_COMPETENCY_DELETE_TITLE',
|
|
|
704 |
message: 'LABEL_COMPETENCY_DELETE_MESSAGE',
|
15337 |
efrain |
705 |
buttons: {
|
|
|
706 |
cancel: {
|
|
|
707 |
label: '<i class="fa fa-times"></i> LABEL_CANCEL'
|
|
|
708 |
},
|
|
|
709 |
confirm: {
|
|
|
710 |
label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
|
|
|
711 |
}
|
|
|
712 |
},
|
|
|
713 |
callback: function(result) {
|
|
|
714 |
if (result) {
|
15443 |
efrain |
715 |
competencies_selected = competencies_selected.filter((item) => item.uuid != uuid ? item : false);
|
|
|
716 |
|
|
|
717 |
|
|
|
718 |
$.fn.renderCompetencies();
|
|
|
719 |
$.fn.comboCompetencies();
|
|
|
720 |
|
15337 |
efrain |
721 |
}
|
|
|
722 |
}
|
|
|
723 |
});
|
|
|
724 |
});
|
15443 |
efrain |
725 |
|
|
|
726 |
$('body').on('click','button.btn-edit-behavior', function(e) {
|
15337 |
efrain |
727 |
e.preventDefault();
|
15443 |
efrain |
728 |
|
|
|
729 |
var competency_uuid = $(this).closest('div.panel-competency').data('competency');
|
|
|
730 |
var behavior_uuid = $(this).data('behavior');
|
|
|
731 |
|
|
|
732 |
|
|
|
733 |
competency_selected = competencies_selected.filter((item) => item.uuid == competency_uuid ? item : false)[0];
|
|
|
734 |
if(competency_selected) {
|
|
|
735 |
console.log(competency_selected);
|
|
|
736 |
|
|
|
737 |
behavior = competency_selected .behaviors.filter((item) => item.uuid == behavior_uuid ? item : false)[0];
|
|
|
738 |
if(behavior) {
|
|
|
739 |
|
|
|
740 |
console.log(behavior);
|
|
|
741 |
$('#form-behavior #competency-uuid').val(competency_uuid);
|
|
|
742 |
$('#form-behavior #behavior-uuid').val(behavior_uuid);
|
|
|
743 |
$('#form-behavior #level').val(behavior.level);
|
|
|
744 |
|
|
|
745 |
$('#modal-behavior').modal('show');
|
15337 |
efrain |
746 |
}
|
15443 |
efrain |
747 |
|
|
|
748 |
}
|
15337 |
efrain |
749 |
});
|
15443 |
efrain |
750 |
|
|
|
751 |
$('body').on('click','button.btn-behavior-submit', function(e) {
|
|
|
752 |
e.preventDefault();
|
|
|
753 |
$('#modal-behavior').modal('hide');
|
|
|
754 |
|
|
|
755 |
var competency_uuid = $('#form-behavior #competency-uuid').val();
|
|
|
756 |
var behavior_uuid = $('#form-behavior #behavior-uuid').val();
|
|
|
757 |
var level = $('#form-behavior #level').val();
|
|
|
758 |
|
|
|
759 |
competency_selected = competencies_selected.filter((item) => item.uuid == competency_uuid ? item : false)[0];
|
|
|
760 |
if(competency_selected) {
|
|
|
761 |
behavior = competency_selected .behaviors.filter((item) => item.uuid == behavior_uuid ? item : false)[0];
|
|
|
762 |
if(behavior) {
|
|
|
763 |
behavior.level = level;
|
|
|
764 |
$.fn.renderCompetencies();
|
15337 |
efrain |
765 |
}
|
15443 |
efrain |
766 |
|
15337 |
efrain |
767 |
}
|
15443 |
efrain |
768 |
|
15337 |
efrain |
769 |
});
|
|
|
770 |
|
15443 |
efrain |
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',
|
|
|
796 |
width: '100%',
|
|
|
797 |
});
|
|
|
798 |
|
|
|
799 |
|
|
|
800 |
|
15337 |
efrain |
801 |
$('#select-subordinate').select2({
|
|
|
802 |
theme: 'bootstrap4',
|
|
|
803 |
width: '100%',
|
|
|
804 |
});
|
|
|
805 |
|
15443 |
efrain |
806 |
|
|
|
807 |
|
15337 |
efrain |
808 |
$('#select-competency').select2({
|
|
|
809 |
theme: 'bootstrap4',
|
|
|
810 |
width: '100%',
|
|
|
811 |
});
|
15443 |
efrain |
812 |
|
15337 |
efrain |
813 |
|
15431 |
stevensc |
814 |
});
|
15425 |
stevensc |
815 |
|
15337 |
efrain |
816 |
JS;
|
|
|
817 |
$this->inlineScript()->captureEnd();
|
|
|
818 |
?>
|
|
|
819 |
<section class="content" id="row-lists">
|
|
|
820 |
|
15404 |
stevensc |
821 |
<!-- Content Header (Page header) -->
|
|
|
822 |
<div class="content-header">
|
|
|
823 |
<div class="container-fluid">
|
|
|
824 |
<div class="row mb-2">
|
|
|
825 |
<div class="col-sm-12">
|
|
|
826 |
<h1>LABEL_JOBS_DESCRIPTION</h1>
|
|
|
827 |
</div>
|
15337 |
efrain |
828 |
</div>
|
15404 |
stevensc |
829 |
</div>
|
|
|
830 |
<!-- /.container-fluid -->
|
|
|
831 |
</div>
|
|
|
832 |
<div class="container-fluid">
|
|
|
833 |
<div class="row">
|
|
|
834 |
<div class="col-12">
|
|
|
835 |
<div class="card">
|
|
|
836 |
<div class="card-body">
|
15443 |
efrain |
837 |
<table id="gridTable" class="table table-hover">
|
15404 |
stevensc |
838 |
<thead>
|
|
|
839 |
<tr>
|
15443 |
efrain |
840 |
<th style="width: 50%">LABEL_NAME</th>
|
|
|
841 |
<th style="width: 15%">LABEL_ACTIVE</th>
|
|
|
842 |
<th style="width: 35%">LABEL_ACTIONS</th>
|
15404 |
stevensc |
843 |
</tr>
|
|
|
844 |
</thead>
|
|
|
845 |
<tbody>
|
|
|
846 |
</tbody>
|
|
|
847 |
</table>
|
|
|
848 |
</div>
|
|
|
849 |
<div class="card-footer clearfix">
|
|
|
850 |
<div style="float:right;">
|
|
|
851 |
<button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
|
|
|
852 |
<?php if ($allowAdd) : ?>
|
|
|
853 |
<?php if ($allowImport) : ?>
|
|
|
854 |
<button type="button" class="btn btn-primary btn-import"><i class="fa fa-upload"></i> LABEL_IMPORT </button>
|
|
|
855 |
<?php endif; ?>
|
|
|
856 |
<button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
|
|
|
857 |
<?php endif; ?>
|
|
|
858 |
</div>
|
|
|
859 |
</div>
|
|
|
860 |
</div>
|
|
|
861 |
</div>
|
|
|
862 |
</div>
|
|
|
863 |
</div>
|
15337 |
efrain |
864 |
</section>
|
|
|
865 |
|
|
|
866 |
<section id="row-form" style="display:none">
|
15404 |
stevensc |
867 |
<div class="container">
|
|
|
868 |
<!-- Modal Header -->
|
|
|
869 |
<div class="modal-header">
|
15430 |
stevensc |
870 |
<h4 class="modal-title">LABEL_JOB_DESCRIPTION - <span id="form-title"></span></h4>
|
15404 |
stevensc |
871 |
</div>
|
|
|
872 |
<!-- Modal body -->
|
|
|
873 |
<div class="modal-body">
|
|
|
874 |
<div class="card card-primary card-outline card-tabs">
|
|
|
875 |
<div class="card-header p-0 pt-1 border-bottom-0">
|
|
|
876 |
<ul class="nav nav-tabs" id="custom-tabs" role="tablist">
|
|
|
877 |
<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>
|
|
|
879 |
</li>
|
|
|
880 |
<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>
|
|
|
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>
|
|
|
886 |
</ul>
|
|
|
887 |
</div>
|
|
|
888 |
<div class="card-body">
|
|
|
889 |
<?php
|
|
|
890 |
$form = $this->form;
|
|
|
891 |
$form->setAttributes([
|
|
|
892 |
'method' => 'post',
|
|
|
893 |
'name' => 'form',
|
|
|
894 |
'id' => 'form'
|
|
|
895 |
]);
|
|
|
896 |
|
|
|
897 |
$form->prepare();
|
|
|
898 |
echo $this->form()->openTag($form);
|
15443 |
efrain |
899 |
|
|
|
900 |
|
|
|
901 |
$element = $form->get('subordinates');
|
|
|
902 |
echo $this->formHidden($element);
|
|
|
903 |
|
|
|
904 |
$element = $form->get('competencies');
|
|
|
905 |
echo $this->formHidden($element);
|
|
|
906 |
|
|
|
907 |
|
15404 |
stevensc |
908 |
?>
|
15443 |
efrain |
909 |
|
15404 |
stevensc |
910 |
<div class="tab-content" id="custom-tabs-three-tabContent">
|
|
|
911 |
<div class="tab-pane fade show active" id="custom-tabs-general" role="tabpanel" aria-labelledby="custom-tabs-general-tab">
|
|
|
912 |
<div class="row">
|
|
|
913 |
<div class="col-md col-sm-12 col-12">
|
|
|
914 |
<div class="form-group m-0">
|
|
|
915 |
<?php
|
|
|
916 |
$element = $form->get('name');
|
|
|
917 |
$element->setOptions(['label' => 'LABEL_NAME']);
|
|
|
918 |
$element->setAttributes(['class' => 'form-control']);
|
|
|
919 |
|
|
|
920 |
echo $this->formLabel($element);
|
|
|
921 |
echo $this->formText($element);
|
|
|
922 |
?>
|
|
|
923 |
</div>
|
|
|
924 |
</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">
|
|
|
938 |
<div class="form-group m-0">
|
|
|
939 |
<label>LABEL_STATUS</label>
|
|
|
940 |
<br />
|
|
|
941 |
<?php
|
|
|
942 |
$element = $form->get('status');
|
|
|
943 |
$element->setOptions(['label' => 'LABEL_STATUS']);
|
|
|
944 |
// echo $this->formLabel($element);
|
|
|
945 |
echo $this->formCheckbox($element);
|
|
|
946 |
?>
|
|
|
947 |
</div>
|
|
|
948 |
</div>
|
|
|
949 |
</div>
|
|
|
950 |
<div class="form-group">
|
|
|
951 |
<?php
|
|
|
952 |
$element = $form->get('objectives');
|
|
|
953 |
$element->setOptions(['label' => 'LABEL_OBJECTIVES']);
|
|
|
954 |
$element->setAttributes(['class' => 'form-control']);
|
|
|
955 |
|
|
|
956 |
echo $this->formLabel($element);
|
|
|
957 |
echo $this->formTextArea($element);
|
|
|
958 |
?>
|
|
|
959 |
</div>
|
|
|
960 |
<div class="form-group">
|
|
|
961 |
<?php
|
|
|
962 |
$element = $form->get('functions');
|
|
|
963 |
$element->setOptions(['label' => 'LABEL_FUNCTIONS']);
|
|
|
964 |
$element->setAttributes(['class' => 'form-control']);
|
|
|
965 |
|
|
|
966 |
echo $this->formLabel($element);
|
|
|
967 |
echo $this->formTextArea($element);
|
|
|
968 |
?>
|
|
|
969 |
</div>
|
15337 |
efrain |
970 |
</div>
|
15404 |
stevensc |
971 |
<div class="tab-pane fade" id="custom-tabs-compentencies" role="tabpanel" aria-labelledby="custom-tabs-compentencies-tab">
|
|
|
972 |
<div class="row">
|
|
|
973 |
<div class="col-md-8 col-sm-8 col-xs-12">
|
|
|
974 |
<select id="select-competency" class="form-control"> </select>
|
|
|
975 |
</div>
|
|
|
976 |
<div class="col-md-4 col-sm-4 col-xs-12">
|
|
|
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>
|
|
|
978 |
</div>
|
|
|
979 |
</div>
|
|
|
980 |
<div class="row">
|
|
|
981 |
<br>
|
15443 |
efrain |
982 |
<div class="col-md-12 col-sm-12 col-xs-12" id="renderCompetencies" style="margin-top: 10px;">
|
15404 |
stevensc |
983 |
</div>
|
|
|
984 |
</div>
|
15337 |
efrain |
985 |
</div>
|
15404 |
stevensc |
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>
|
15443 |
efrain |
1004 |
<tbody id="renderSubordinates"></tbody>
|
15404 |
stevensc |
1005 |
</table>
|
|
|
1006 |
</div>
|
|
|
1007 |
</div>
|
15337 |
efrain |
1008 |
</div>
|
15404 |
stevensc |
1009 |
</div>
|
|
|
1010 |
</div>
|
15337 |
efrain |
1011 |
</div>
|
15404 |
stevensc |
1012 |
<?php echo $this->form()->closeTag($form); ?>
|
|
|
1013 |
<!-- /.card -->
|
|
|
1014 |
</div>
|
|
|
1015 |
<!-- Modal footer -->
|
|
|
1016 |
<div class="modal-footer">
|
|
|
1017 |
<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>
|
|
|
1019 |
</div>
|
15337 |
efrain |
1020 |
</section>
|
|
|
1021 |
|
|
|
1022 |
|
|
|
1023 |
<!--start modal behavior-->
|
15404 |
stevensc |
1024 |
<div id="modal-behavior" class="modal" tabindex="-1" role="dialog">
|
|
|
1025 |
<div class="modal-dialog modal-lg" role="document">
|
|
|
1026 |
<form action="#" name="form-behavior" id="form-behavior">
|
15443 |
efrain |
1027 |
<input type="hidden" id="behavior-uuid" name="behavior-uuid" value="" />
|
|
|
1028 |
<input type="hidden" id="competency-uuid" name="competency-uuid value="" />
|
|
|
1029 |
<div class=" modal-content">
|
|
|
1030 |
<div class="modal-header">
|
|
|
1031 |
<h4 class="modal-title">LABEL_EDIT LABEL_LEVEL</h4>
|
|
|
1032 |
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
1033 |
<span aria-hidden="true">×</span>
|
|
|
1034 |
</button>
|
15337 |
efrain |
1035 |
</div>
|
15443 |
efrain |
1036 |
<div class="modal-body">
|
|
|
1037 |
<div class="form-group">
|
|
|
1038 |
<label for="behavior-value">LABEL_LEVEL</label>
|
|
|
1039 |
<input type="number" step="1" min="0" max="100" id="level" name="level">
|
|
|
1040 |
</div>
|
|
|
1041 |
<div class="modal-footer">
|
|
|
1042 |
<button type="button" class="btn btn-primary btn-behavior-submit">LABEL_SAVE</button>
|
|
|
1043 |
<button type="button" class="btn btn-secondary" data-dismiss="modal">LABEL_CLOSE</button>
|
|
|
1044 |
</div>
|
15404 |
stevensc |
1045 |
</div>
|
15443 |
efrain |
1046 |
</form>
|
15337 |
efrain |
1047 |
</div>
|
15443 |
efrain |
1048 |
</div>
|
15337 |
efrain |
1049 |
|
15443 |
efrain |
1050 |
|
|
|
1051 |
|
15404 |
stevensc |
1052 |
<!---Template Competencies --->
|
15443 |
efrain |
1053 |
<script id="competencyTemplate" type="text/x-jsrender">
|
|
|
1054 |
<div class="panel panel-default panel-competency" id="panel-{{:uuid}}" data-competency="{{:uuid}}">
|
15337 |
efrain |
1055 |
<div class="panel-heading">
|
|
|
1056 |
<h4 class="panel-title" style=" font-size: 18px;">
|
15443 |
efrain |
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}}
|
15337 |
efrain |
1060 |
</span>
|
|
|
1061 |
</a>
|
|
|
1062 |
</h4>
|
|
|
1063 |
</div>
|
15443 |
efrain |
1064 |
<div id="collapse-{{:uuid}}" class="panel-collapse in collapse show">
|
15337 |
efrain |
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>
|
|
|
1081 |
</td>
|
|
|
1082 |
<td>
|
15443 |
efrain |
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>
|
15337 |
efrain |
1084 |
</td>
|
|
|
1085 |
</tr>
|
|
|
1086 |
{{for behaviors}}
|
|
|
1087 |
<tr >
|
15443 |
efrain |
1088 |
<td class="text-left">--LABEL_BEHAVIOR</td>
|
15337 |
efrain |
1089 |
<td class="text-left">
|
15443 |
efrain |
1090 |
{{:~getBehavior(uuid).description}}
|
15337 |
efrain |
1091 |
</td>
|
15443 |
efrain |
1092 |
<td class="text-right">
|
|
|
1093 |
{{:level}}
|
|
|
1094 |
</td>
|
15337 |
efrain |
1095 |
<td>
|
15443 |
efrain |
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 |
|
|
|
1108 |
<script id="competencyTemplateWithLevel" type="text/x-jsrender">
|
|
|
1109 |
<div class="panel panel-default panel-competency" id="panel-{{:uuid}}" data-competency="{{:uuid}}">
|
|
|
1110 |
<div class="panel-heading">
|
|
|
1111 |
<h4 class="panel-title" style=" font-size: 18px;">
|
|
|
1112 |
<a class="accordion-toggle" data-toggle="collapse" aria-expanded="true" data-parent="#panel-{{:uuid}}" href="#collapse-{{:uuid}}">
|
|
|
1113 |
<span class="section-name{{:uuid}}">
|
|
|
1114 |
{{:~getCompetencyType(competency_type_uuid).name}} - {{:~getCompetency(uuid).name}}
|
|
|
1115 |
</span>
|
|
|
1116 |
</a>
|
|
|
1117 |
</h4>
|
|
|
1118 |
</div>
|
|
|
1119 |
<div id="collapse-{{:uuid}}" class="panel-collapse in collapse show">
|
|
|
1120 |
<div class="panel-body">
|
|
|
1121 |
<div class="table-responsive">
|
|
|
1122 |
<table class="table table-bordered">
|
|
|
1123 |
<thead>
|
|
|
1124 |
<tr>
|
|
|
1125 |
<th style="width: 20%;">LABEL_ELEMENT</th>
|
|
|
1126 |
<th style="width: 50%;">LABEL_TITLE</th>
|
|
|
1127 |
<th style="width: 10%;">LABEL_LEVEL</th>
|
|
|
1128 |
<th style="width: 20%;">LABEL_ACTIONS</th>
|
|
|
1129 |
</tr>
|
|
|
1130 |
</thead>
|
|
|
1131 |
<tbody>
|
|
|
1132 |
<tr>
|
|
|
1133 |
<td class="text-left">LABEL_COMPETENCY</td>
|
|
|
1134 |
<td class="text-left">{{:name}}</td>
|
|
|
1135 |
<td>
|
|
|
1136 |
</td>
|
|
|
1137 |
<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>
|
|
|
1139 |
</td>
|
|
|
1140 |
</tr>
|
|
|
1141 |
{{for behaviors}}
|
|
|
1142 |
<tr >
|
|
|
1143 |
<td class="text-left">--LABEL_BEHAVIOR</td>
|
|
|
1144 |
<td class="text-left">
|
|
|
1145 |
{{:~getBehavior(uuid).description}}
|
|
|
1146 |
</td>
|
|
|
1147 |
<td>
|
15337 |
efrain |
1148 |
{{if level == '0'}} LABEL_NA {{/if}}
|
|
|
1149 |
{{if level == '1' }} LABEL_LEVEL_ONE {{/if}}
|
|
|
1150 |
{{if level == '2' }} LABEL_LEVEL_TWO {{/if}}
|
|
|
1151 |
{{if level == '3' }} LABEL_LEVEL_THREE {{/if}}
|
|
|
1152 |
{{if level == '4' }} LABEL_LEVEL_FOUR {{/if}}
|
|
|
1153 |
</td>
|
|
|
1154 |
<td>
|
15443 |
efrain |
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>
|
15337 |
efrain |
1156 |
</td>
|
|
|
1157 |
</tr>
|
|
|
1158 |
{{/for}}
|
|
|
1159 |
</tbody>
|
|
|
1160 |
</table>
|
|
|
1161 |
</div>
|
|
|
1162 |
</div>
|
|
|
1163 |
</div>
|
|
|
1164 |
</div>
|
15443 |
efrain |
1165 |
</script>
|
15337 |
efrain |
1166 |
|
|
|
1167 |
|
15443 |
efrain |
1168 |
<script id="subordinateTemplate" type="text/x-jsrender">
|
15404 |
stevensc |
1169 |
<tr>
|
15443 |
efrain |
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>
|
15337 |
efrain |
1175 |
</script>
|
|
|
1176 |
|
15404 |
stevensc |
1177 |
<!-- End Template Competencies-->
|