Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
15404 stevensc 1
<?php
2
 
15337 efrain 3
use LeadersLinked\Model\JobDescription;
4
 
5
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
6
$currentUser    = $this->currentUserHelper();
7
 
8
$roleName = $currentUser->getUserTypeId();
9
 
10
 
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
 
16787 efrain 48
 
49
 
50
$this->headLink()->appendStylesheet($this->basePath('css/jquery-sortable.css'));
51
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-sortable/jquery-sortable.js'));
52
 
53
 
15337 efrain 54
$this->inlineScript()->appendFile($this->basePath('plugins/select2/js/select2.js'));
55
$this->inlineScript()->appendFile($this->basePath('plugins/select2/js/i18n/es.js'));
56
$this->headLink()->appendStylesheet($this->basePath('plugins/select2/css/select2.css'));
57
 
58
$this->headLink()->appendStylesheet($this->basePath('plugins/select2-bootstrap4-theme/select2-bootstrap4.css'));
59
 
60
 
61
// bootbox Alert //
62
$this->inlineScript()->appendFile($this->basePath('plugins/bootbox/bootbox.min.js'));
63
 
64
// JsRender //
65
$this->inlineScript()->appendFile($this->basePath('plugins/jsrender/jsrender.min.js'));
66
 
67
 
68
$status_active = JobDescription::STATUS_ACTIVE;
16787 efrain 69
$status_inactive = JobDescription::STATUS_INACTIVE;
15337 efrain 70
 
71
$this->inlineScript()->captureStart();
72
echo <<<JS
73
 
15443 efrain 74
 
15337 efrain 75
jQuery(document).ready(function($) {
15443 efrain 76
 
16787 efrain 77
 
78
 
15443 efrain 79
    var competencies_selected = new Array();
80
    var behaviors = new Array();
81
    var competency_types = new Array();
82
    var competencies = new Array();
83
 
84
    var allowEdit = $allowEdit;
85
    var allowDelete = $allowDelete;
86
    var allowReport = $allowReport;
87
 
88
 
89
    $.fn.renderCompetencies = function() {
90
        if(competencies_selected.length > 0) {
16787 efrain 91
 
92
 
15443 efrain 93
            $('#renderCompetencies').html($('#competencyTemplate').render(competencies_selected, {
94
                getCompetencyType: (uuid) => competency_types.filter((item) => item.uuid == uuid ? item : false)[0],
95
                getCompetency: (uuid) => competencies.filter((item) => item.uuid == uuid ? item : false)[0],
96
                getBehavior: (uuid) => behaviors.filter((item) => item.uuid == uuid ? item : false)[0]
97
            }));
98
        } else {
99
            $('#renderCompetencies').html('');
100
        }
101
    }
102
 
103
    $.fn.comboCompetencies = function() {
104
        $('#select-competency').children().remove();
105
        $.each(competency_types, function(i, competency_type) {
106
            competencies_filtered = competencies.filter((item) => item.competency_type_uuid == competency_type.uuid ? item : false)
107
            $.each(competencies_filtered, function(i, competency) {
108
 
109
 
110
                selected = competencies_selected.filter((item) => item.uuid == competency.uuid ? item : false)[0];
111
                if(!selected) {
112
                    $('#select-competency').append($('<option>', {
113
                        value: competency.uuid,
114
                        text: competency_type.name +  ' - ' + competency.name
115
                    }));
116
                }
117
 
118
            });
119
        });
120
 
121
    }
122
 
123
 
124
 
15337 efrain 125
    $.validator.setDefaults({
126
        debug: true,
127
        highlight: function(element) {
128
            $(element).addClass('is-invalid');
129
        },
130
        unhighlight: function(element) {
131
            $(element).removeClass('is-invalid');
132
        },
133
        errorElement: 'span',
134
        errorClass: 'error invalid-feedback',
135
        errorPlacement: function(error, element) {
136
            if (element.parent('.form-group').length) {
137
                error.insertAfter(element);
138
            } else if (element.parent('.toggle').length) {
139
                error.insertAfter(element.parent().parent());
140
            } else {
141
                error.insertAfter(element.parent());
142
            }
143
        }
144
    });
15443 efrain 145
 
15337 efrain 146
    $.fn.showFormErrorValidator = function(fieldname, errors) {
147
        var field = $(fieldname);
148
        if (field) {
149
            $(field).addClass('is-invalid');
150
            var error = $('<span id="' + fieldname + '-error" class="error invalid-feedback">' + errors + '</div>');
151
            if (field.parent('.form-group').length) {
152
                error.insertAfter(field);
153
            } else if (field.parent('.toggle').length) {
154
                error.insertAfter(field.parent().parent());
155
            } else {
156
                error.insertAfter(field.parent());
157
            }
158
        }
159
    };
15443 efrain 160
 
16787 efrain 161
    $.groupSortable = null;
162
 
163
 
164
 
165
 
166
    $.fn.setGroupSortable = function(html) {
167
 
168
        $('#ol-jobs-descriptions').html(html);
169
        $.groupSortable =  $('#ol-jobs-descriptions').sortable({
170
 
171
            onDragStart: function(\$item, container, _super) {
172
                //\$item.find('ol.dropdown-menu').sortable('disable');
173
                _super(\$item, container);
174
            },
175
            onDrop: function(\$item, container, _super) {
176
 
177
                var data = $.groupSortable.sortable('serialize').get();
178
                var jsonString = JSON.stringify(data, null, ' ');
179
 
180
                $.ajax({
181
                    'dataType': 'json',
182
                    'accept': 'application/json',
183
                    'method': 'post',
184
                    'url': '$routeDatatable',
185
                    'data': {
186
                        data: jsonString
187
                    }
188
                }).done(function(response) {
189
 
190
 
191
                    if (!response['success']) {
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',
15337 efrain 224
            'url': '$routeDatatable',
16787 efrain 225
        }).done(function(response) {
226
            if (response['success']) {
227
                if(response['data'].items.length == 0) {
228
                    $('#divNoRecordsAvailable').show();
15337 efrain 229
                } else {
16787 efrain 230
                    $('#divNoRecordsAvailable').hide();
231
 
15337 efrain 232
                }
16787 efrain 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 {
241
                $.fn.showError(response['data']);
15337 efrain 242
            }
16787 efrain 243
        }).fail(function(jqXHR, textStatus, errorThrown) {
244
            $.fn.showError(textStatus);
245
         }).always(function() {
15337 efrain 246
            NProgress.done();
16787 efrain 247
        });
248
    }
15443 efrain 249
 
15337 efrain 250
    var validator = $('#form').validate({
251
        debug: true,
252
        onclick: false,
253
        onkeyup: false,
254
        ignore: [],
255
        rules: {
256
            'name': {
257
                required: true,
258
                maxlength: 64,
259
            },
260
            'functions': {
261
                required: true,
15443 efrain 262
                maxlength: 1024,
15337 efrain 263
            },
264
            'objectives': {
15443 efrain 265
               required: true,
266
                maxlength: 1024,
15337 efrain 267
            },
268
            'status': {
269
                required: false,
270
            },
271
        },
272
        submitHandler: function(form) {
15443 efrain 273
 
16787 efrain 274
 
275
 
15443 efrain 276
            var data = {
277
                name : $('#form #name').val(),
278
                functions : $('#form #functions').val(),
279
                objectives : $('#form #objectives').val(),
16787 efrain 280
                status :  $('#form #status').prop('checked') ?  '$status_active' : '$status_inactive',
15443 efrain 281
                competencies_selected : new Array(),
282
            };
283
 
284
 
285
            $.each(competencies_selected, function(i, c) {
286
                $.each(c.behaviors, function(i, b) {
287
                    data.competencies_selected.push({'competency_uuid' : c.uuid, 'behavior_uuid' : b.uuid, 'level' : b.level});
288
                });
289
            });
290
 
291
 
292
            NProgress.start();
15337 efrain 293
            $.ajax({
294
                'dataType': 'json',
295
                'accept': 'application/json',
296
                'method': 'post',
297
                'url': $('#form').attr('action'),
15443 efrain 298
                'data': data,
15337 efrain 299
            }).done(function(response) {
300
                if (response['success']) {
301
                    $.fn.showSuccess(response['data']);
302
                    $('#row-lists').show();
15443 efrain 303
                    $('#row-form').hide();
16787 efrain 304
                    $.fn.refreshTree();
15337 efrain 305
                } else {
306
                    validator.resetForm();
307
                    if (jQuery.type(response['data']) == 'string') {
308
                        $.fn.showError(response['data']);
309
                    } else {
310
                        $.each(response['data'], function(fieldname, errors) {
311
                            $.fn.showFormErrorValidator('#form #' + fieldname, errors);
312
                        });
313
                    }
314
                }
315
            }).fail(function(jqXHR, textStatus, errorThrown) {
316
                $.fn.showError(textStatus);
317
            }).always(function() {
318
                NProgress.done();
319
            });
320
            return false;
321
        },
322
        invalidHandler: function(form, validator) {}
323
    });
15443 efrain 324
 
16787 efrain 325
    $('body').on('click', 'button.btn-refresh', function(e) {
15337 efrain 326
        e.preventDefault();
16787 efrain 327
        $.fn.refreshTree();
328
    });
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
 
337
    $('body').on('click', 'button.btn-import', function(e) {
338
        e.preventDefault();
15337 efrain 339
        NProgress.start();
340
        $.ajax({
341
            'dataType': 'json',
16787 efrain 342
            'method': 'post',
343
            'url': '$routeImport',
15337 efrain 344
        }).done(function(response) {
345
            if (response['success']) {
16787 efrain 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;
357
    });
15443 efrain 358
 
16787 efrain 359
    $('body').on('click', 'button.btn-add-job-description', function(e) {
360
        e.preventDefault();
15443 efrain 361
 
16787 efrain 362
        var link = $(this).data('link');
363
        $.fn.defaultValuesAdd(link);
15443 efrain 364
 
16787 efrain 365
        return false
366
    });
15443 efrain 367
 
16787 efrain 368
    $('body').on('click', 'i.btn-add-job-description', function(e) {
369
        e.preventDefault();
15443 efrain 370
 
371
 
16787 efrain 372
        var link = $(this).data('link');
373
        $.fn.defaultValuesAdd(link);
374
 
375
        return false
376
    });
15443 efrain 377
 
16787 efrain 378
    $.fn.defaultValuesAdd = function(action) {
15443 efrain 379
 
380
 
16787 efrain 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']) {
391
 
392
 
393
                    behaviors = response['data']['behaviors'];
394
                    competency_types = response['data']['competency_types'];
395
                    competencies = response['data']['competencies'];
396
 
397
 
398
                    competencies_selected = [];
399
 
400
 
401
                    $.each(competencies, function(i, competency) {
402
                        $.each(competency.behaviors, function(j, behavior) {
403
                            competencies[i].behaviors[j].level = 0;
404
                        });
15443 efrain 405
                    });
16787 efrain 406
 
407
                    $.fn.renderCompetencies();
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
 
425
               } else   {
426
                    $.fn.showError(response['data']);
427
                }
428
 
429
            }).fail(function(jqXHR, textStatus, errorThrown) {
430
                $.fn.showError(textStatus);
431
            }).always(function() {
432
                NProgress.done();
433
            });
434
        }, 100);
15443 efrain 435
 
16787 efrain 436
    }
15443 efrain 437
 
438
 
439
 
16787 efrain 440
    $('body').on('click', 'i.btn-edit-job-description', function(e) {
15337 efrain 441
        e.preventDefault();
442
        NProgress.start();
16787 efrain 443
        var action = $(this).data('link');
15337 efrain 444
        $.ajax({
445
            'dataType': 'json',
446
            'accept': 'application/json',
447
            'method': 'get',
448
            'url': action,
449
        }).done(function(response) {
450
            if (response['success']) {
451
                $('span[id="form-title"]').html('LABEL_EDIT');
452
                $('#form').attr('action', action);
453
                $('#form #name').val(response['data']['name']);
454
                $('#form #status').bootstrapToggle(response['data']['status'] == '$status_active' ? 'on' : 'off')
15443 efrain 455
 
456
                $('#form #functions').val(response['data']['functions']);
457
                $('#form #objectives').val(response['data']['objectives']);
458
 
459
                behaviors = response['data']['behaviors'];
460
                competency_types = response['data']['competency_types'];
16787 efrain 461
 
15337 efrain 462
                competencies = response['data']['competencies'];
463
                competencies_selected = response['data']['competencies_selected'];
16787 efrain 464
 
15443 efrain 465
                $.fn.renderCompetencies();
466
                $.fn.comboCompetencies();
467
 
16787 efrain 468
 
15337 efrain 469
                validator.resetForm();
470
                $('#custom-tabs #custom-tabs-general-tab').tab('show');
471
                $('#row-lists').hide();
15443 efrain 472
                $('#row-form').show();
15337 efrain 473
            } else {
474
                $.fn.showError(response['data']);
475
            }
476
        }).fail(function(jqXHR, textStatus, errorThrown) {
477
            $.fn.showError(textStatus);
478
        }).always(function() {
479
            NProgress.done();
480
        });
481
    });
15443 efrain 482
 
16787 efrain 483
    $('body').on('click', 'i.btn-pdf-job-description', function(e) {
15337 efrain 484
        e.preventDefault();
16787 efrain 485
        var action   = $(this).data('link');
15443 efrain 486
 
16787 efrain 487
        window.open(action, '_blank');
15443 efrain 488
 
16787 efrain 489
        /*
15443 efrain 490
        NProgress.start();
491
        $.ajax({
492
            'dataType'  : 'json',
493
            'method'    : 'get',
494
            'url'       :  action,
495
        }).done(function(response) {
496
            if(response['success']) {
497
                var anchor = window.document.createElement("a");
498
                anchor.href = 'data:application/octet-stream;charset=utf-8;base64,' + response['data']['content'] ;
499
                anchor.download = response['data']['basename'];
500
                document.body.appendChild(anchor);
501
                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
502
                document.body.removeChild(anchor);
503
            } else {
504
                $.fn.showError(response['data']);
505
            }
506
        }).fail(function( jqXHR, textStatus, errorThrown) {
507
            $.fn.showError(textStatus);
508
        }).always(function() {
509
            NProgress.done();
16787 efrain 510
        });*/
15337 efrain 511
    });
15407 stevensc 512
 
15337 efrain 513
    $('body').on('click', 'button[id="btn-select-competency"]', function(e) {
15443 efrain 514
        var competency_uuid = $('#select-competency').val();
515
 
516
        if (competency_uuid.length == '') {
517
            $.fn.showError('ERROR_SELECT_COMPETENCY_IS_EMPTY');
15337 efrain 518
        } else {
15443 efrain 519
 
520
            competency = competencies.filter((item) => item.uuid == competency_uuid ? item : false)[0];
521
            if(competency) {
522
 
523
                var competency_selected = {
524
                    uuid : competency.uuid,
525
                    competency_type_uuid: competency.competency_type_uuid,
526
                    behaviors : new Array(),
527
                }
528
 
529
                $.each(competency.behaviors, function(index, uuid) {
530
                    competency_selected.behaviors.push({uuid: uuid, level: 0});
531
 
532
                })
533
 
534
 
535
                competencies_selected.push(competency_selected);
536
 
537
                $.fn.renderCompetencies();
538
                $.fn.comboCompetencies();
539
            }
15337 efrain 540
        }
541
    });
15443 efrain 542
 
16787 efrain 543
    $('body').on('click', 'i.btn-delete-job-description', function(e) {
15443 efrain 544
        e.preventDefault();
16787 efrain 545
        var action = $(this).data('link');
15443 efrain 546
 
15337 efrain 547
        bootbox.confirm({
16787 efrain 548
            message: 'LABEL_ARE_YOU_SURE',
15337 efrain 549
            buttons: {
16787 efrain 550
                confirm: {
551
                    label: 'LABEL_YES',
552
                    className: 'btn-success'
553
                },
15337 efrain 554
                cancel: {
16787 efrain 555
                    label: 'LABEL_NO',
556
                    className: 'btn-danger'
15337 efrain 557
                }
558
            },
16787 efrain 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 {
572
                            $.fn.showError(response['data']);
573
                        }
574
                    }).fail(function(jqXHR, textStatus, errorThrown) {
575
                        $.fn.showError(textStatus);
576
                    }).always(function() {
577
                        NProgress.done();
578
                    });
15337 efrain 579
                }
580
            }
581
        });
15443 efrain 582
 
16787 efrain 583
 
15443 efrain 584
 
16787 efrain 585
    });
15443 efrain 586
 
16787 efrain 587
    $('body').on('click', 'button.btn-delete-job-description-competency', function(e) {
15443 efrain 588
        e.preventDefault();
589
 
590
        var uuid = $(this).data('competency');
15337 efrain 591
        bootbox.confirm({
15443 efrain 592
             title: 'LABEL_COMPETENCY_DELETE_TITLE',
593
            message: 'LABEL_COMPETENCY_DELETE_MESSAGE',
15337 efrain 594
            buttons: {
595
                cancel: {
596
                    label: '<i class="fa fa-times"></i> LABEL_CANCEL'
597
                },
598
                confirm: {
599
                    label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
600
                }
601
            },
602
            callback: function(result) {
603
                if (result) {
15443 efrain 604
                    competencies_selected = competencies_selected.filter((item) => item.uuid != uuid ? item : false);
605
 
606
 
607
                    $.fn.renderCompetencies();
608
                    $.fn.comboCompetencies();
609
 
15337 efrain 610
                }
611
            }
612
        });
613
    });
15443 efrain 614
 
16787 efrain 615
    $('body').on('click','button.btn-edit-job-description-behavior', function(e) {
15337 efrain 616
        e.preventDefault();
15443 efrain 617
 
618
        var competency_uuid = $(this).closest('div.panel-competency').data('competency');
619
        var behavior_uuid = $(this).data('behavior');
620
 
621
 
622
        competency_selected = competencies_selected.filter((item) => item.uuid == competency_uuid ? item : false)[0];
623
        if(competency_selected) {
624
            console.log(competency_selected);
625
 
626
            behavior = competency_selected .behaviors.filter((item) => item.uuid  == behavior_uuid ? item : false)[0];
627
            if(behavior) {
628
 
629
                console.log(behavior);
630
                $('#form-behavior #competency-uuid').val(competency_uuid);
631
                $('#form-behavior #behavior-uuid').val(behavior_uuid);
632
                $('#form-behavior #level').val(behavior.level);
633
 
634
                $('#modal-behavior').modal('show');
15337 efrain 635
            }
15443 efrain 636
 
637
        }
15337 efrain 638
    });
15443 efrain 639
 
640
    $('body').on('click','button.btn-behavior-submit', function(e) {
641
         e.preventDefault();
642
         $('#modal-behavior').modal('hide');
643
 
644
         var competency_uuid = $('#form-behavior #competency-uuid').val();
645
         var behavior_uuid = $('#form-behavior #behavior-uuid').val();
646
         var level = $('#form-behavior #level').val();
647
 
648
        competency_selected = competencies_selected.filter((item) => item.uuid == competency_uuid ? item : false)[0];
649
        if(competency_selected) {
650
            behavior = competency_selected .behaviors.filter((item) => item.uuid  == behavior_uuid ? item : false)[0];
651
            if(behavior) {
652
                behavior.level = level;
653
                $.fn.renderCompetencies();
15337 efrain 654
            }
15443 efrain 655
 
15337 efrain 656
        }
15443 efrain 657
 
15337 efrain 658
    });
659
 
16787 efrain 660
    $('body').on('click', 'button.btn-edit-job-description-cancel', function(e) {
15443 efrain 661
        $('#row-lists').show();
662
        $('#row-form').hide();
663
    });
664
 
665
    $('#form #status').bootstrapToggle({
666
        'on': 'LABEL_ACTIVE',
667
        'off': 'LABEL_INACTIVE',
668
        'width': '160px',
669
        'height': '40px'
670
    });
671
 
672
    $('#form #functions').maxlength({
673
        alwaysShow: true,
674
         validate: true
675
    });
676
 
677
    $('#form #objectives').maxlength({
678
        alwaysShow: true,
679
        validate: true
680
    });
681
 
16787 efrain 682
    $('#select-competency').select2({
15443 efrain 683
        theme: 'bootstrap4',
684
        width: '100%',
685
    });
686
 
687
 
688
 
16787 efrain 689
    $.fn.refreshTree();
15337 efrain 690
 
15431 stevensc 691
});
15425 stevensc 692
 
15337 efrain 693
JS;
694
$this->inlineScript()->captureEnd();
695
?>
696
 
16787 efrain 697
 
698
<section class="content" id="row-lists" style="margin-bottom: 20px">
699
 
15404 stevensc 700
    <!-- Content Header (Page header) -->
701
    <div class="content-header">
702
        <div class="container-fluid">
703
            <div class="row mb-2">
704
                <div class="col-sm-12">
705
                    <h1>LABEL_JOBS_DESCRIPTION</h1>
706
                </div>
15337 efrain 707
            </div>
15404 stevensc 708
        </div>
709
        <!-- /.container-fluid -->
710
    </div>
711
    <div class="container-fluid">
712
        <div class="row">
713
            <div class="col-12">
714
                <div class="card">
715
                    <div class="card-body">
16787 efrain 716
                   	  <div id="divNoRecordsAvailable" class="text-center" style="display: none"><h3>LABEL_NO_RECORDS_AVAILABLE</h3></div>
717
                   	 <div id="ol-jobs-descriptions-container" style="background-color: rgba(0, 0, 0, .03); width: 100%; height: 600px; scroll: auto; overflow: auto;">
718
     					 <ol id="ol-jobs-descriptions" class="default vertical" style="padding-left: 0px;">
719
 
720
            			</ol>
721
 
722
            		 </div>
723
 
724
 
725
 
15404 stevensc 726
                    </div>
727
                    <div class="card-footer clearfix">
16787 efrain 728
                		<div  style="float:right;" >
15404 stevensc 729
                            <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
730
                            <?php if ($allowAdd) : ?>
731
                                <?php if ($allowImport) : ?>
732
                                    <button type="button" class="btn btn-primary btn-import"><i class="fa fa-upload"></i> LABEL_IMPORT </button>
733
                                <?php endif; ?>
16787 efrain 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>
15404 stevensc 735
                            <?php endif; ?>
736
                        </div>
737
                    </div>
738
                </div>
739
            </div>
740
        </div>
741
    </div>
15337 efrain 742
</section>
743
 
744
<section id="row-form" style="display:none">
16787 efrain 745
	<div class="card">
746
        <div class="card-header">
15430 stevensc 747
            <h4 class="modal-title">LABEL_JOB_DESCRIPTION - <span id="form-title"></span></h4>
15404 stevensc 748
        </div>
16787 efrain 749
 		<div class="card-body">
15404 stevensc 750
            <div class="card card-primary card-outline card-tabs">
751
                <div class="card-header p-0 pt-1 border-bottom-0">
752
                    <ul class="nav nav-tabs" id="custom-tabs" role="tablist">
753
                        <li class="nav-item">
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>
755
                        </li>
756
                        <li class="nav-item">
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>
758
                        </li>
759
                    </ul>
760
                </div>
761
                <div class="card-body">
762
                    <?php
763
                    $form = $this->form;
764
                    $form->setAttributes([
765
                        'method'    => 'post',
766
                        'name'      => 'form',
767
                        'id'        => 'form'
768
                    ]);
769
 
770
                    $form->prepare();
771
                    echo $this->form()->openTag($form);
15443 efrain 772
 
773
 
774
                    $element = $form->get('competencies');
775
                    echo $this->formHidden($element);
776
 
777
 
15404 stevensc 778
                    ?>
15443 efrain 779
 
15404 stevensc 780
                    <div class="tab-content" id="custom-tabs-three-tabContent">
781
                        <div class="tab-pane fade show active" id="custom-tabs-general" role="tabpanel" aria-labelledby="custom-tabs-general-tab">
782
                            <div class="row">
783
                                <div class="col-md col-sm-12 col-12">
784
                                    <div class="form-group m-0">
785
                                        <?php
786
                                        $element = $form->get('name');
787
                                        $element->setOptions(['label' => 'LABEL_NAME']);
788
                                        $element->setAttributes(['class' => 'form-control']);
789
 
790
                                        echo $this->formLabel($element);
791
                                        echo $this->formText($element);
792
                                        ?>
793
                                    </div>
794
                                </div>
795
                                <div class="col-md col-sm-12 col-12 d-flex align-items-center justify-content-center">
796
                                    <div class="form-group m-0">
797
                                        <label>LABEL_STATUS</label>
798
                                        <br />
799
                                        <?php
800
                                        $element = $form->get('status');
801
                                        $element->setOptions(['label' => 'LABEL_STATUS']);
802
                                        // echo $this->formLabel($element);
803
                                        echo $this->formCheckbox($element);
804
                                        ?>
805
                                    </div>
806
                                </div>
807
                            </div>
808
                            <div class="form-group">
809
                                <?php
810
                                $element = $form->get('objectives');
811
                                $element->setOptions(['label' => 'LABEL_OBJECTIVES']);
812
                                $element->setAttributes(['class' => 'form-control']);
813
 
814
                                echo $this->formLabel($element);
815
                                echo $this->formTextArea($element);
816
                                ?>
817
                            </div>
818
                            <div class="form-group">
819
                                <?php
820
                                $element = $form->get('functions');
821
                                $element->setOptions(['label' => 'LABEL_FUNCTIONS']);
822
                                $element->setAttributes(['class' => 'form-control']);
823
 
824
                                echo $this->formLabel($element);
825
                                echo $this->formTextArea($element);
826
                                ?>
827
                            </div>
15337 efrain 828
                        </div>
15404 stevensc 829
                        <div class="tab-pane fade" id="custom-tabs-compentencies" role="tabpanel" aria-labelledby="custom-tabs-compentencies-tab">
830
                            <div class="row">
831
                                <div class="col-md-8 col-sm-8 col-xs-12">
832
                                    <select id="select-competency" class="form-control"> </select>
833
                                </div>
834
                                <div class="col-md-4 col-sm-4 col-xs-12">
835
                                    <button type="button" class="btn btn-primary" id="btn-select-competency" data-toggle="tooltip" title="LABEL_ADD LABEL_COMPETENCY">LABEL_ADD LABEL_COMPETENCY</button>
836
                                </div>
837
                            </div>
838
                            <div class="row">
839
                                <br>
15443 efrain 840
                                <div class="col-md-12 col-sm-12 col-xs-12" id="renderCompetencies" style="margin-top: 10px;">
15404 stevensc 841
                                </div>
842
                            </div>
15337 efrain 843
                        </div>
15404 stevensc 844
                    </div>
845
                </div>
15337 efrain 846
            </div>
15404 stevensc 847
            <?php echo $this->form()->closeTag($form); ?>
16787 efrain 848
 
15404 stevensc 849
        </div>
16787 efrain 850
        <div class="card-footer clearfix">
15404 stevensc 851
            <button type="submit" form="form" class="btn btn-primary">LABEL_SAVE</button>
16787 efrain 852
            <button type="button" class="btn btn-danger btn-edit-job-description-cancel">Cerrar</button>
15404 stevensc 853
        </div>
16787 efrain 854
	</div>
855
 
856
 
15337 efrain 857
</section>
858
 
859
 
860
<!--start modal behavior-->
15404 stevensc 861
<div id="modal-behavior" class="modal" tabindex="-1" role="dialog">
16787 efrain 862
	<form action="#" name="form-behavior" id="form-behavior">
863
        <div class="modal-dialog " role="document">
864
    		<input type="hidden" id="behavior-uuid" name="behavior-uuid" value="" />
865
       		<input type="hidden" id="competency-uuid" name="competency-uuid value="" />
866
       		<div class=" modal-content">
867
                <div class="modal-header">
868
                    <h4 class="modal-title">LABEL_EDIT LABEL_LEVEL</h4>
869
                    <button type="button" class="close" data-dismiss="modal" aria-label="Close">
870
                        <span aria-hidden="true">&times;</span>
871
                    </button>
872
                </div>
873
                <div class="modal-body">
874
                       <div class="form-group">
875
                          <label for="behavior-value">LABEL_LEVEL</label>
876
                          <input type="number" step="1" min="0" max="100" id="level" name="level">
877
                    </div>
878
                    <div class="modal-footer">
879
                        <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>
881
                    </div>
882
            	</div>
883
        	</div>
884
    	</div>
885
	</form>
15337 efrain 886
</div>
887
 
15443 efrain 888
 
889
 
15404 stevensc 890
<!---Template Competencies --->
15443 efrain 891
<script id="competencyTemplate" type="text/x-jsrender">
892
    <div class="panel panel-default panel-competency" id="panel-{{:uuid}}" data-competency="{{:uuid}}">
15337 efrain 893
   <div class="panel-heading">
894
      <h4 class="panel-title" style="    font-size: 18px;">
15443 efrain 895
         <a class="accordion-toggle" data-toggle="collapse" aria-expanded="true" data-parent="#panel-{{:uuid}}" href="#collapse-{{:uuid}}">
896
         <span class="section-name{{:uuid}}">
897
            {{:~getCompetencyType(competency_type_uuid).name}} - {{:~getCompetency(uuid).name}}
15337 efrain 898
         </span>
899
         </a>
900
      </h4>
901
   </div>
15443 efrain 902
   <div id="collapse-{{:uuid}}" class="panel-collapse in collapse show">
15337 efrain 903
      <div class="panel-body">
904
         <div class="table-responsive">
905
            <table class="table table-bordered">
906
               <thead>
907
                  <tr>
908
                     <th style="width: 20%;">LABEL_ELEMENT</th>
909
                     <th style="width: 50%;">LABEL_TITLE</th>
910
                     <th style="width: 10%;">LABEL_LEVEL</th>
911
                     <th style="width: 20%;">LABEL_ACTIONS</th>
912
                  </tr>
913
               </thead>
914
               <tbody>
915
                  <tr>
916
                     <td class="text-left">LABEL_COMPETENCY</td>
917
                     <td class="text-left">{{:name}}</td>
918
                     <td>
919
                     </td>
920
                     <td>
16787 efrain 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>
15337 efrain 922
                     </td>
923
                  </tr>
924
                  {{for behaviors}}
925
                  <tr >
15443 efrain 926
                     <td class="text-left">--LABEL_BEHAVIOR</td>
15337 efrain 927
                     <td class="text-left">
15443 efrain 928
                       {{:~getBehavior(uuid).description}}
15337 efrain 929
                     </td>
15443 efrain 930
                     <td class="text-right">
931
                        {{:level}}
932
                     </td>
15337 efrain 933
                     <td>
16787 efrain 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>
15443 efrain 935
                     </td>
936
                  </tr>
937
                  {{/for}}
938
               </tbody>
939
            </table>
940
         </div>
941
      </div>
942
   </div>
943
</div>
944
</script>
945
 
946
<script id="competencyTemplateWithLevel" type="text/x-jsrender">
947
 <div class="panel panel-default panel-competency" id="panel-{{:uuid}}" data-competency="{{:uuid}}">
948
   <div class="panel-heading">
949
      <h4 class="panel-title" style="    font-size: 18px;">
950
         <a class="accordion-toggle" data-toggle="collapse" aria-expanded="true" data-parent="#panel-{{:uuid}}" href="#collapse-{{:uuid}}">
951
         <span class="section-name{{:uuid}}">
952
            {{:~getCompetencyType(competency_type_uuid).name}} - {{:~getCompetency(uuid).name}}
953
         </span>
954
         </a>
955
      </h4>
956
   </div>
957
   <div id="collapse-{{:uuid}}" class="panel-collapse in collapse show">
958
      <div class="panel-body">
959
         <div class="table-responsive">
960
            <table class="table table-bordered">
961
               <thead>
962
                  <tr>
963
                     <th style="width: 20%;">LABEL_ELEMENT</th>
964
                     <th style="width: 50%;">LABEL_TITLE</th>
965
                     <th style="width: 10%;">LABEL_LEVEL</th>
966
                     <th style="width: 20%;">LABEL_ACTIONS</th>
967
                  </tr>
968
               </thead>
969
               <tbody>
970
                  <tr>
971
                     <td class="text-left">LABEL_COMPETENCY</td>
972
                     <td class="text-left">{{:name}}</td>
973
                     <td>
974
                     </td>
975
                     <td>
16787 efrain 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>
15443 efrain 977
                     </td>
978
                  </tr>
979
                  {{for behaviors}}
980
                  <tr >
981
                     <td class="text-left">--LABEL_BEHAVIOR</td>
982
                     <td class="text-left">
983
                       {{:~getBehavior(uuid).description}}
984
                     </td>
985
                     <td>
15337 efrain 986
                        {{if level == '0'}} LABEL_NA {{/if}}
987
                        {{if level == '1' }} LABEL_LEVEL_ONE {{/if}}
988
                        {{if level == '2' }} LABEL_LEVEL_TWO {{/if}}
989
                        {{if level == '3' }} LABEL_LEVEL_THREE {{/if}}
990
                        {{if level == '4' }} LABEL_LEVEL_FOUR {{/if}}
991
                     </td>
992
                     <td>
16787 efrain 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>
15337 efrain 994
                     </td>
995
                  </tr>
996
                  {{/for}}
997
               </tbody>
998
            </table>
999
         </div>
1000
      </div>
1001
   </div>
1002
</div>
15443 efrain 1003
</script>
15337 efrain 1004
 
16787 efrain 1005
<script id="listJobDescriptionTemplate" type="text/x-jsrender">
1006
	<li data-id="{{:uuid}}" >
1007
        <div class="content">
15337 efrain 1008
 
16787 efrain 1009
 
15337 efrain 1010
 
16787 efrain 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>
1038
</script>
1039