Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16971 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1354 eleazar 1
<?php
2
$acl = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser = $this->currentUserHelper();
4
 
5
$roleName = $currentUser->getUserTypeId();
6
 
7
$routeAdd = $this->url('recruitment-selection/forms/add');
8
$routeDatatable = $this->url('recruitment-selection/forms');
9
$routeDashboard = $this->url('dashboard');
10
 
11
$allowAdd = $acl->isAllowed($roleName, 'recruitment-selection/forms/add') ? 1 : 0;
12
$allowEdit = $acl->isAllowed($roleName, 'recruitment-selection/forms/edit') ? 1 : 0;
13
$allowDelete = $acl->isAllowed($roleName, 'recruitment-selection/forms/delete') ? 1 : 0;
14
$allowReport = $acl->isAllowed($roleName, 'recruitment-selection/forms/report') ? 1 : 0;
15
 
16
 
16822 efrain 17
$this->inlineScript()->appendFile($this->basePath('assets/vendors/ckeditor/ckeditor.js'));
1354 eleazar 18
 
19
 
16822 efrain 20
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
21
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
1354 eleazar 22
 
23
 
24
 
16929 efrain 25
 
26
 
27
 
16822 efrain 28
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
29
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
1354 eleazar 30
 
16822 efrain 31
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
32
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
33
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
34
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.min.js'));
1354 eleazar 35
 
36
 
16822 efrain 37
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2/css/select2.min.css'));
16918 efrain 38
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2-bootstrap5-theme/select2-bootstrap-5-theme.css'));
1354 eleazar 39
 
16822 efrain 40
$this->inlineScript()->appendFile($this->basePath('assets/vendors/select2/js/select2.full.min.js'));
1354 eleazar 41
 
16822 efrain 42
$this->inlineScript()->appendFile($this->basePath('assets/vendors/moment/moment-with-locales.min.js'));
43
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css'));
44
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js'));
1354 eleazar 45
 
46
 
16822 efrain 47
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
48
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
1354 eleazar 49
 
50
 
16822 efrain 51
 
52
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-input-number/input-number-format.jquery.js'));
53
 
1354 eleazar 54
// bootbox Alert //
55
 
16822 efrain 56
 
1354 eleazar 57
// JsRender //
16822 efrain 58
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jsrender/jsrender.min.js'));
1354 eleazar 59
 
60
 
61
// Page Styles
62
$this->headLink()->appendStylesheet($this->basePath('css/pages/self-evaluation.css'));
63
 
64
 
65
$status_active = \LeadersLinked\Model\RecruitmentForm::STATUS_ACTIVE;
66
$status_inactive = \LeadersLinked\Model\RecruitmentForm::STATUS_INACTIVE;
67
 
68
$this->inlineScript()->captureStart();
69
echo <<<JS
70
jQuery(document).ready(function($) {
71
    var allowEdit = $allowEdit;
72
    var allowDelete = $allowDelete;
73
    var allowReport = $allowReport;
74
    var sections = [];
75
    var competencies_type = [];
76
    /**
77
     * Get rows and set data table
78
     */
79
    var tableForm = $('#gridTable').dataTable({
80
        'processing': true,
81
        'serverSide': true,
82
        'searching': true,
83
        'order': [
84
            [0, 'asc']
85
        ],
86
        'ordering': true,
87
        'ordenable': true,
88
        'responsive': true,
89
        'select': false,
90
        'paging': true,
91
        'pagingType': 'simple_numbers',
92
        'ajax': {
93
            'url': '$routeDatatable',
94
            'type': 'get',
95
            'beforeSend': function(request) {
96
                NProgress.start();
97
            },
98
            'dataFilter': function(response) {
99
                var response = jQuery.parseJSON(response);
100
                var json = {};
101
                json.recordsTotal = 0;
102
                json.recordsFiltered = 0;
103
                json.data = [];
104
                if (response.success) {
105
                    json.recordsTotal = response.data.total;
106
                    json.recordsFiltered = response.data.total;
107
                    json.data = response.data.items;
108
                } else {
109
                    $.fn.showError(response.data)
110
                }
111
                return JSON.stringify(json);
112
            }
113
        },
114
        'language': {
115
            'sProcessing': 'LABEL_DATATABLE_SPROCESSING',
116
            'sLengthMenu': 'LABEL_DATATABLE_SLENGTHMENU',
117
            'sZeroRecords': 'LABEL_DATATABLE_SZERORECORDS',
118
            'sEmptyTable': 'LABEL_DATATABLE_SEMPTYTABLE',
119
            'sInfo': 'LABEL_DATATABLE_SINFO',
120
            'sInfoEmpty': 'LABEL_DATATABLE_SINFOEMPTY',
121
            'sInfoFiltered': 'LABEL_DATATABLE_SINFOFILTERED',
122
            'sInfoPostFix': '',
123
            'sSearch': 'LABEL_DATATABLE_SSEARCH',
124
            'sUrl': '',
125
            'sInfoThousands': ',',
126
            'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
127
            'oPaginate': {
128
                'sFirst': 'LABEL_DATATABLE_SFIRST',
129
                'sLast': 'LABEL_DATATABLE_SLAST',
130
                'sNext': 'LABEL_DATATABLE_SNEXT',
131
                'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
132
            },
133
            'oAria': {
134
                'sSortAscending': ': LABEL_DATATABLE_SSORTASCENDING',
135
                'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
136
            },
137
        },
138
        'drawCallback': function(settings) {
139
            NProgress.done();
16822 efrain 140
 
1354 eleazar 141
        },
142
        'aoColumns': [{
143
                'mDataProp': 'name'
144
            },
145
            {
146
                'mDataProp': 'job_description'
147
            },
148
            {
149
                'mDataProp': 'status'
150
            },
151
            {
152
                'mDataProp': 'actions'
153
            },
154
        ],
155
        'columnDefs': [{
156
                'targets': 0,
157
                'className': 'text-vertical-middle',
158
            },
159
            {
160
                'targets': 1,
161
                'className': 'text-vertical-middle',
162
            },
163
            {
164
                'targets': -2,
165
                'orderable': false,
166
                'className': 'text-center',
167
                'render': function(data, type, row) {
16822 efrain 168
                    checked = data == 'a'  ? 'checked' : '';
169
                    return '<div class="form-check">' +
16971 efrain 170
                        '<input type="checkbox" class="form-check-input" disabled="" ' + checked + '>' +
16822 efrain 171
                        '<label class="form-check-label" for="checkCheckedDisabled"></label></div>' ;
1354 eleazar 172
                }
173
            },
174
            {
175
                'targets': -1,
176
                'orderable': false,
177
                'render': function(data, type, row) {
178
                    s = '';
179
                    if (allowEdit) {
16906 efrain 180
                        s = s + '<button class="btn btn-primary btn-edit-form" data-href="' + data['link_edit'] + '" data-toggle="tooltip" title="LABEL_EDIT"><i class="fa fa-pen"></i> LABEL_EDIT </button>&nbsp;';
1354 eleazar 181
                    }
182
                    if (allowDelete) {
183
                        s = s + '<button class="btn btn-danger btn-delete" data-href="' + data['link_delete'] + '" data-toggle="tooltip" title="LABEL_DELETE"><i class="fa fa-trash"></i> LABEL_DELETE </button>&nbsp;';
184
                    }
185
                    if (allowReport) {
186
                        s = s + '<a class="btn btn-default btn-pdf" href="' + data['link_report'] + '" target="_blank" data-toggle="tooltip" title="LABEL_PDF"><i class="fa fa-file-o"></i> LABEL_PDF </button>&nbsp;';
187
                    }
188
                    return s;
189
                }
190
            }
191
        ],
192
    });
193
    /**
194
     * Clicked on edit form
195
     */
196
    $('body').on('click', 'button.btn-edit-form', function(e) {
197
        e.preventDefault();
198
        renderCompetenciesData([]);
199
        form_id = $(this).data('id')
200
        var action = $(this).data('href');
201
        $.ajax({
202
            'dataType': 'json',
203
            'accept': 'application/json',
204
            'method': 'get',
205
            'url': action,
206
        }).done(function(response) {
207
            if (response['success']) {
208
                $("#rows").html('');
209
                sections = [];
210
                $('#form-main').attr('action', action);
211
                $('#form-main #form-name').val(response['data']['name']);
212
                $('#form-main #job_description_id').val(response['data']['job_description_id']).trigger('change');
213
                $('#form-main #form-status').val(response['data']['status']);
214
                CKEDITOR.instances['form-description'].setData(response['data']['description']);
215
 
216
                sections = response['data']['content'] || [];
217
                renderData(sections);
218
                $('#row-lists').hide();
219
                $('#row-form').show();
220
            } else {
221
                $.fn.showError(response['message'] || 'ERROR_UNKNOWN');
222
            }
223
        }).fail(function(jqXHR, textStatus, errorThrown) {
224
            $.fn.showError(textStatus);
225
        });
226
    });
227
    /**
228
     * Clicked add new section
229
     */
230
    $('#btn-add-section').click(function(e) {
231
        $('#form-section #id-section').val('');
232
        $('#form-section #title-section').val('');
233
        $('#form-section #text-section').val('');
234
        $('#form-section #type-section').val($('#form-section #type-section option:first').val());
16933 efrain 235
        $('#modal-section h6[class="modal-title"]').html('LABEL_ADD LABEL_SECTION');
1354 eleazar 236
        $('#modal-section').modal('show');
237
        return;
238
    });
239
    /**
240
     * Clicked edit section
241
     */
242
    /**
243
     * Clicked save section
244
     */
245
    $('#btn-save-section').click(function(e) {
246
        if ($('#title-section').val() == '') {
247
            $.fn.showError('ERROR_ENTER_TITLE');
248
            return;
249
        } else {
250
            $('#id-section').val() == "" ?
251
                addSection($('#title-section').val(), $('#text-section').val(), $('#type-section').val()) :
252
                editSection($('#id-section').val(), $('#title-section').val(), $('#text-section').val(), $('#type-section').val())
253
            $('#modal-section').modal('hide');
254
            return;
255
        }
256
    });
257
    /**
258
     * Clicked remove section
259
     */
260
    $('body').on('click', 'button.btn-delete-section', function(e) {
261
        var id_section = $(this).data('section');
16822 efrain 262
 
263
          swal.fire({
1354 eleazar 264
            title: "LABEL_DELETE LABEL_SECTION",
265
            message: "LABEL_QUESTION_DELETE",
16822 efrain 266
            icon: 'question',
267
            cancelButtonText: 'LABEL_NO',
268
            showCancelButton: true,
269
            confirmButtonText: 'LABEL_YES'
270
          }).then((result) => {
271
            if (result.isConfirmed) {
272
                removeSection(id_section);
1354 eleazar 273
            }
16822 efrain 274
          });
275
 
276
 
1354 eleazar 277
    });
278
    $('body').on('click', 'button.btn-edit-section', function(e) {
279
        var id = $(this).data('section');
280
        sections.map((item) => {
281
            if (item.id_section == id) {
282
                $('#form-section #id-section').val(item.id_section);
283
                $('#form-section #title-section').val(item.title);
284
                $('#form-section #text-section').val(item.text);
285
                $('#form-section #type-section').val(item.type);
286
                $('#modal-section').modal('show');
287
                return;
288
            }
289
        });
290
    });
291
    /**
292
     * Clicked remove option
293
     */
294
    $('body').on('click', 'button.btn-delete-option', function(e) {
295
        var id_section = $(this).data('section');
296
        var id_option = $(this).data('option');
16822 efrain 297
 
298
          swal.fire({
1354 eleazar 299
            title: "LABEL_DELETE LABEL_OPTION",
300
            message: "LABEL_QUESTION_DELETE",
16822 efrain 301
            icon: 'question',
302
            cancelButtonText: 'LABEL_NO',
303
            showCancelButton: true,
304
            confirmButtonText: 'LABEL_YES'
305
          }).then((result) => {
306
            if (result.isConfirmed) {
307
                removeOption(id_section, id_option);
1354 eleazar 308
                    return;
309
            }
16822 efrain 310
          });
311
 
312
 
313
 
1354 eleazar 314
    });
315
    /**
316
     * Clicked add new Option
317
     */
318
    $('body').on('click', 'button.btn-add-option', function(e) {
319
        var id = $(this).data('section');
320
        $('#section-option').val(id);
321
        $('#text-option').val('');
16933 efrain 322
        $('#modal-option h6[class="modal-title"]').html('LABEL_EDIT LABEL_OPTION');
1354 eleazar 323
        $('#modal-option').modal('show');
324
        return;
325
    });
326
    /**
327
     * Clicked add new Option
328
     */
329
    $('#btn-save-option').click(function(e) {
330
        if ($('#text-option').val() == '') {
331
            $.fn.showError('ERROR_ENTER_TEXT');
332
            return;
333
        } else {
334
            $('#id-option').val() == "" ?
335
                addOption($('#section-option').val(), $('#text-option').val()) :
336
                editOption($('#section-option').val(), $('#id-option').val(), $('#text-option').val())
337
        }
338
        $('#modal-option').modal('hide');
339
        return;
340
    });
341
    /**
342
     * Clicked edit Option
343
     */
344
    $('body').on('click', 'button.btn-edit-option', function(e) {
345
        var id_section = $(this).data('section');
346
        var id_option = $(this).data('option');
347
        sections.map((item) => {
348
            if (item.id_section == id_section) {
349
                item.options.map((opt) => {
350
                    if (opt.id_option == id_option) {
351
                        $('#id-option').val(opt.id_option);
352
                        $('#section-option').val(opt.id_section);
353
                        $("#text-option").val(opt.title);
16933 efrain 354
                        $('#modal-option h6[class="modal-title"]').html('LABEL_EDIT LABEL_OPTION');
1354 eleazar 355
                        $('#modal-option').modal('show');
356
                        return;
357
                    }
358
                });
359
            }
360
        });
361
    });
362
    /**
363
     * Clicked new Form
364
     */
365
    $('button.btn-add-form').click(function(e) {
366
        $("#rows").html('');
367
        sections = [];
368
        $('#form-main').attr('action', '$routeAdd');
369
        $('#form-main #form-name').val('');
370
        $('#form-main #job_description_id').val('').trigger('change');
371
        $('#form-main #form-status').val('$status_active');
372
        CKEDITOR.instances['form-description'].setData('');
373
        renderCompetenciesData([]);
374
        $('#row-lists').hide();
375
        $('#row-form').show();
376
        $('#form-main #form-name').focus();
377
        return;
378
    });
379
    /**
380
     * Clicked cancel new/edit Form
381
     */
382
    $('button.btn-edit-cancel').click(function(e) {
383
        $('#row-form').hide();
384
        $('#row-lists').show();
385
        return;
386
    });
387
    /**
388
     * Clicked save and continue new Form
389
     */
390
    $('button.btn-form-save-continue').click(function(e) {
391
        for (var instanceName in CKEDITOR.instances) {
392
            CKEDITOR.instances[instanceName].updateElement();
393
        }
394
        saveData(1);
395
    });
396
    /**
397
     * Clicked save and close new/edit Form
398
     */
399
    $('button.btn-form-save-close').click(function(e) {
400
        for (var instanceName in CKEDITOR.instances) {
401
            CKEDITOR.instances[instanceName].updateElement();
402
        }
403
        saveData(0);
404
    });
405
    /**
406
     * Save Form Data
407
     */
408
    const saveData = (action) => {
409
        if ($('#form-name').val() == '') {
410
            $.fn.showError('ERROR_ENTER_NAME');
411
        } else if ($('#form-description').val() == '') {
412
            $.fn.showError('ERROR_ENTER_DESCRIPTION');
413
        } else if ($('#form-text').val() == '') {
414
            $.fn.showError('ERROR_ENTER_TEXT');
415
        } else if ($('#form-status').val() == '') {
416
            $.fn.showError('ERROR_SELECT_STATUS');
417
        } else if ($('#job_description_id').val() == '') {
418
            $.fn.showError('ERROR_SELECT_JOB_DESCRIPTION');
419
        } else if (sections.length == 0) {
420
            $.fn.showError('ERROR_NOT_SECTIONS');
421
        } else {
422
            $.ajax({
423
                'dataType': 'json',
424
                'method': 'post',
425
                'url': $('#form-main').attr('action'),
426
                'data': {
427
                    'name': $('#form-main #form-name').val(),
428
                    'job_description_id': $('#form-main #job_description_id').val(),
429
                    'status': $('#form-main #form-status').val(),
430
                    'description': $('#form-main #form-description').val(),
431
                    'content': JSON.stringify(sections)
432
                },
433
            }).done(function(response) {
434
                if (response['success']) {
435
                    $.fn.showSuccess(response['data']);
436
                    if (action == 1) {
437
                        $('#form-main').attr('action', response['action_edit']);
438
                    } else {
439
                        $('#row-form').hide();
440
                        $('#row-lists').show();
441
                        /*---------- Reset Form -------- */
442
                        $('#form-main')[0].reset();
443
                        /*--------Reset Sections ----------*/
444
                        sections = [];
445
                        tableForm.fnDraw();
446
                    }
447
                    return;
448
                } else {
449
                    $.fn.showError(response['message'] || 'ERROR_UNKNOWN');
450
                    return;
451
                }
452
            });
453
        }
454
    }
455
    /**
456
     * Remove Html Tags
457
     */
458
    const removeTags = (str) => str.toString().replace(/(<([^>]+)>)/ig, '')
459
    /**
460
     * Render Sections data
461
     */
462
    const renderData = (data) => {
463
        $("#rows").html($("#sectionTemplate").render(data));
464
    }
465
    /**
466
     * Add Section to array
467
     */
468
    const addSection = (title, text, type) => {
469
        sections.push({
470
            'id_section': new Date().getTime(),
471
            'title': title,
472
            'type': type,
473
            'text': text,
474
            'answer': '',
475
            'options': []
476
        });
477
        return renderData(sections);
478
    }
479
    /**
480
     * Edit item behavior
481
     */
482
    const editSection = (id, title, text, type) => {
483
        sections.map((item) => {
484
            if (item.id_section == id) {
485
                item.title = title;
486
                item.type = type;
487
                item.text = text;
488
            }
489
        });
490
        return renderData(sections);
491
    }
492
    /**
493
     * Remove behavior
494
     */
495
    const removeSection = (id) => {
496
        sections = sections.filter((item) => item.id_section != id);
497
        return renderData(sections);
498
    }
499
    /**
500
     * Add Option to array
501
     */
502
    const addOption = (id_section, title) => {
503
        sections.map((item) => {
504
            if (item.id_section == id_section) {
505
                item.options.push({
506
                    'id_section': id_section,
507
                    'id_option': new Date().getTime(),
508
                    'title': title,
509
                    'answer': ''
510
                });
511
            }
512
        });
513
        return renderData(sections);
514
    }
515
    /**
516
     * Edit item Option
517
     */
518
    const editOption = (id_section, id, title) => {
519
        sections.map((item) => {
520
            if (item.id_section == id_section) {
521
                item.options.map((opt) => {
522
                    if (opt.id_option == id) {
523
                        opt.title = title
524
                    }
525
                });
526
            }
527
        });
528
        return renderData(sections);
529
    }
530
    /**
531
     * Remove Option
532
     */
533
    const removeOption = (id_section, id) => {
534
        sections.map((item) => {
535
            if (item.id_section == id_section) {
536
                item.options = item.options.filter((opt) => opt.id_option != id) || []
537
            }
538
        });
539
        return renderData(sections);
540
    }
541
    /**
542
     * Clicked refresh button
543
     */
544
    $('button.btn-refresh').click(function(e) {
545
        tableForm.fnDraw();
546
        return;
547
    });
16822 efrain 548
 
549
 $('body').on('click', 'button.btn-delete', function(e) {
550
        e.preventDefault();
551
        var action = $(this).data('href');
552
 
553
 
554
          swal.fire({
555
            title: 'LABEL_ARE_YOU_SURE',
556
            icon: 'question',
557
            cancelButtonText: 'LABEL_NO',
558
            showCancelButton: true,
559
            confirmButtonText: 'LABEL_YES'
560
          }).then((result) => {
561
            if (result.isConfirmed) {
562
 
563
                    NProgress.start();
564
                    $.ajax({
565
                        'dataType'  : 'json',
566
                        'accept'    : 'application/json',
567
                        'method'    : 'post',
568
                        'url'       :  action,
569
                    }).done(function(response) {
570
                        if(response['success']) {
571
                            $.fn.showSuccess(response['data']);
572
                            gridTable.api().ajax.reload(null, false);
573
                        } else {
574
                            $.fn.showError(response['data']);
575
                        }
576
                    }).fail(function( jqXHR, textStatus, errorThrown) {
577
                        $.fn.showError(textStatus);
578
                    }).always(function() {
579
                        NProgress.done();
580
                    });
581
            }
582
       });
583
    });
584
 
1354 eleazar 585
    /**
586
     * Initialize select Jobdescription
587
     */
588
    $('#job_description_id').select2({
16918 efrain 589
        theme: 'bootstrap-5',
1354 eleazar 590
        width: '100%',
591
    });
592
    /**
593
     * On change selecte JobDescription
594
     */
595
    $('#job_description_id').on('change', function() {
596
        if ($("#job_description_id").val() != '') {
15443 efrain 597
            $.getJSON("/jobs-description/edit/" + $("#job_description_id").val(), function(response) {
1354 eleazar 598
                if (response['success']) {
599
                    competencies_type = response['data']['competency_types'];
600
                    renderCompetenciesData(response['data']['competencies_selected']);
601
                }
602
            });
603
        }
604
    });
605
    /**
606
     * Filter competencie type
607
     */
608
    const filterTypeById = (id) => competencies_type.filter((item) => item.competency_type_id == id ? item : false)[0];
609
    /**
610
     * Render Competencies data
611
     */
612
    const renderCompetenciesData = (data) => {
613
        if (data.length > 0) {
614
            $("#competencies-to-job").show();
615
            $("#rows-job-competencies").html($("#sectionCompetencies").render(data, {
616
                getType: filterTypeById
617
            }));
618
        } else {
619
            $("#competencies-to-job").hide();
620
            $("#rows-job-competencies").html('');
621
        }
622
    }
623
});
624
JS;
625
 
626
$this->inlineScript()->captureEnd();
627
?>
16891 efrain 628
<div class="container">
629
	<div class="card" id="">
630
	 	<div class="card-header">
631
	 		<h6 class="card-title">LABEL_PERFORMANCE_EVALUATION</h6>
632
	 	</div>
633
	 	<div class="card-body">
634
	 		<div class="row">
635
	 	         <div class="col-12 mt-3">
636
 
637
	 	            <table id="gridTable" class="table   table-bordered">
1354 eleazar 638
                  <thead>
639
                     <tr>
640
                        <th style="width:25%">LABEL_NAME</th>
641
                        <th style="width:20%">LABEL_JOB_DESCRIPTION</th>
642
                        <th style="width:10%">LABEL_ACTIVE</th>
643
                        <th style="width:25%">LABEL_ACTIONS</th>
644
                     </tr>
645
                  </thead>
646
                  <tbody></tbody>
647
               </table>
16891 efrain 648
 
649
	 	         </div>
650
	 	     </div>
651
	 	</div>
652
	 	<div class="card-footer text-right">
653
			 <div style="float:right;">
16992 efrain 654
                  <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-sync"></i> LABEL_REFRESH </button>
1354 eleazar 655
                  <?php if ($allowAdd) : ?>
656
                  <button type="button" class="btn btn-primary btn-add-form"><i class="fa fa-plus"></i> LABEL_ADD </button>
657
                  <?php endif; ?>
658
               </div>
16891 efrain 659
	 	</div>
660
	</div>
1354 eleazar 661
</div>
16891 efrain 662
 
663
 
1354 eleazar 664
<!-- Create/Edit Form -->
665
<div class="row" id="row-form" style="display: none; padding: 16px;">
16929 efrain 666
   <div class="col-12">
1354 eleazar 667
      <form action="#" name="form-main" id="form-main">
16929 efrain 668
       	<div class="row">
669
       		<div class="col-12 mt-3">
1354 eleazar 670
            <label for="form-name">LABEL_FIRST_NAME</label>
671
            <input type="text" name="form-name" id="form-name" class="form-control" maxlength="50" />
16929 efrain 672
            </div>
1354 eleazar 673
         </div>
16929 efrain 674
       	<div class="row">
675
       		<div class="col-12 mt-3">
1354 eleazar 676
            <label for="job_description_id">LABEL_POSITION_EVALUATED</label>
677
            <select name="job_description_id" id="job_description_id" class="form-control">
678
               <option value="">LABEL_SELECT</option>
679
               <?php foreach ($jobsDescription as $rs): ?>
680
               <option value="<?php echo $rs->uuid;?>"><?php echo $rs->name;?></option>
681
               <?php endforeach; ?>
682
            </select>
16929 efrain 683
            </div>
1354 eleazar 684
         </div>
16929 efrain 685
       	<div class="row">
686
       		<div class="col-12 mt-3">
1354 eleazar 687
            <label for="form-description">LABEL_DESCRIPTION</label>
688
            <!--  ckeditor -->
689
            <textarea  name="form-description" id="form-description" rows="5" class="ckeditor form-control"></textarea>
16929 efrain 690
            </div>
1354 eleazar 691
         </div>
16929 efrain 692
       	<div class="row">
693
       		<div class="col-12 mt-3">
1354 eleazar 694
            <label for="form-status">LABEL_STATUS</label>
695
            <select name="form-status" id="form-status" class="form-control">
696
               <option value="<?php echo $status_inactive; ?>">LABEL_INACTIVE</option>
697
               <option value="<?php echo $status_active; ?>">LABEL_ACTIVE</option>
698
            </select>
16929 efrain 699
            </div>
1354 eleazar 700
         </div>
701
         <div class="row">
16929 efrain 702
            <div class="col-12 text-right">
1354 eleazar 703
               <button type="button" class="btn btn-primary" id="btn-add-section" data-toggle="tooltip" title="LABEL_ADD LABEL_SECTION"><i class="fa fa-plus" aria-hidden="true"></i> LABEL_ADD LABEL_SECTION</button>
704
            </div>
705
         </div>
706
         <br />
707
         <div class="row">
16929 efrain 708
            <div class="col-12">
1354 eleazar 709
               <div class="panel-group" id="rows"></div>
710
            </div>
711
         </div>
712
         <div class="form-group" id="competencies-to-job" style="display:none">
713
            <div class="row">
16929 efrain 714
               <div class="col-12">
1354 eleazar 715
                  <hr>
16845 efrain 716
                  <h6 style="font-size: 18px;font-weight: bold;">LABEL_COMPETENCIES_TO_JOB:</h6>
1354 eleazar 717
                  <br>
718
                  <div class="panel-group" id="rows-job-competencies"></div>
719
               </div>
720
            </div>
721
         </div>
722
         <div class="form-group">
723
            <button type="button" form="form-main" class="btn btn-info btn-form-save-continue">LABEL_SAVE & LABEL_CONTINUE</button>
724
            <button type="button" class="btn btn-primary btn-form-save-close">LABEL_SAVE & LABEL_CLOSE</button>
16822 efrain 725
            <button type="button" class="btn btn-light btn-edit-cancel">LABEL_CANCEL</button>
1354 eleazar 726
         </div>
727
      </form>
728
   </div>
729
</div>
730
<!-- Create/Edit Form-->
731
<!-- section Modal -->
732
<div  id="modal-section" class="modal" tabindex="-1" role="dialog">
733
   <div class="modal-dialog modal-lg" role="document">
734
      <form action="#" name="form-section" id="form-section">
735
         <input type="hidden" name="id-section" id="id-section" />
736
         <div class="modal-content">
737
            <div class="modal-header">
16845 efrain 738
               <h6 class="modal-title">LABEL_ADD LABEL_SECTION</h6>
16864 efrain 739
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1354 eleazar 740
            </div>
741
            <div class="modal-body">
742
               <div class="form-group">
743
                  <label for="title-section">LABEL_FIRST_NAME</label>
744
                  <input type="text" name="title-section" id="title-section" class="form-control" maxlength="50" value="" />
745
               </div>
746
               <div class="form-group">
747
                  <label for="text-section">LABEL_TEXT</label>
748
                  <textarea  name="text-section" id="text-section" rows="5" class="form-control"></textarea>
749
               </div>
750
               <div class="form-group">
751
                  <label for="type-section">LABEL_TYPE</label>
752
                  <select name="type-section" id="type-section" class="form-control">
753
                     <option value="simple">Simple</option>
754
                     <option value="multiple">Multiple</option>
755
                  </select>
756
               </div>
757
            </div>
16891 efrain 758
            <div class="modal-footer text-right">
1354 eleazar 759
               <button type="button" id="btn-save-section" class="btn btn-primary">LABEL_SAVE</button>
16864 efrain 760
               <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close">LABEL_CLOSE</button>
1354 eleazar 761
            </div>
762
         </div>
763
      </form>
764
   </div>
765
</div>
766
<!-- End Modal section -->
767
<!-- Modal Options -->
768
<div  id="modal-option" class="modal" tabindex="-1" role="dialog">
769
   <div class="modal-dialog modal-lg" role="document">
770
      <form action="#" name="form-option" id="form-option">
771
         <input type="hidden" name="section-option" id="section-option" value="" />
772
         <input type="hidden" name="id-option" id="id-option" value="" />
773
         <div class="modal-content">
774
            <div class="modal-header">
16845 efrain 775
               <h6 class="modal-title">LABEL_OPTION</h6>
16864 efrain 776
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1354 eleazar 777
            </div>
778
            <div class="modal-body">
779
               <div class="form-group">
780
                  <label for="text-option">LABEL_TEXT</label>
781
                  <!--  ckeditor -->
782
                  <textarea  name="text-option" id="text-option" rows="5" class="form-control"></textarea>
783
               </div>
784
            </div>
16891 efrain 785
            <div class="modal-footer text-right">
1354 eleazar 786
               <button type="button" class="btn btn-primary" id="btn-save-option">LABEL_SAVE</button>
16864 efrain 787
               <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close">LABEL_CLOSE</button>
1354 eleazar 788
            </div>
789
         </div>
790
      </form>
791
   </div>
792
</div>
793
 
794
   <!-- End Modal Options -->
795
   <!---Template Sections --->
796
   <script id="sectionTemplate" type="text/x-jsrender">
797
   <div class="panel panel-default" id="panel-{{:id_section}}">
798
   <div class="panel-heading">
16845 efrain 799
   <h6 class="panel-title" style="font-size: 18px;">
1354 eleazar 800
         <a class="accordion-toggle" data-toggle="collapse" aria-expanded="true" data-parent="#panel-{{:id_section}}" href="#collapse-{{:id_section}}">
801
         <span class="section-name{{:id_section}}">
802
         {{:title}}
803
         </span>
804
         </a>
16845 efrain 805
      </h6>
1354 eleazar 806
   </div>
807
   <div id="collapse-{{:id_section}}" class="panel-collapse in collapse show">
808
      <div class="panel-body">
809
         <div class="table-responsive">
810
            <table class="table table-bordered">
811
               <thead>
812
                  <tr>
813
                     <th style="width: 10%;">LABEL_ELEMENT</th>
814
                     <th style="width: 30%;">LABEL_TEXT</th>
815
                     <th style="width: 10%;">LABEL_TYPE</th>
816
                     <th style="width: 50%;">LABEL_ACTIONS</th>
817
                  </tr>
818
               </thead>
819
               <tbody>
820
                  <tr>
821
                     <td class="text-left">LABEL_SECTION</td>
822
                     <td class="text-left">{{:title}}</td>
823
                     <td>
824
                        {{if type == 'simple'}} Simple {{/if}}
825
                        {{if type == 'multiple'}} Multiple {{/if}}
826
                     </td>
827
                     <td>
828
                        <button  type="button" class="btn btn-default btn-edit-section" data-section="{{:id_section}}" data-toggle="tooltip"  data-original-title="LABEL_EDIT LABEL_SECTION"><i class="fa fa-edit" aria-hidden="true"></i> LABEL_EDIT LABEL_SECTION </button>
829
                        <button  type="button" class="btn btn-default btn-delete-section" data-section="{{:id_section}}" data-toggle="tooltip"  data-original-title="LABEL_DELETE LABEL_SECTION"><i class="fa fa-ban" aria-hidden="true"></i> LABEL_DELETE LABEL_SECTION </button>
830
                        {{if type == 'multiple'}}
831
                        <button type="button" class="btn btn-default btn-add-option" data-section="{{:id_section}}" data-toggle="tooltip"  data-original-title="LABEL_ADD  LABEL_OPTION"><i class="fa fa-plus" aria-hidden="true"></i> LABEL_ADD  LABEL_OPTION </button>
832
                        {{/if}}
833
                     </td>
834
                  </tr>
835
                  {{for options}}
836
                  <tr >
837
                     <td class="text-left">--LABEL_OPTION</td>
838
                     <td class="text-left">
839
                        {{:title}}
840
                     </td>
841
                     <td></td>
842
                     <td>
843
                        <button type="button"  class="btn btn-default btn-edit-option" data-section="{{:id_section}}" data-option="{{:id_option}}" data-toggle="tooltip"  data-original-title="LABEL_EDIT LABEL_OPTION"><i class="fa fa-edit" aria-hidden="true"></i> LABEL_EDIT LABEL_OPTION</button>
844
                        <button type="button" class="btn btn-default btn-delete-option" data-section="{{:id_section}}" data-option="{{:id_option}}" data-toggle="tooltip"  data-original-title="LABEL_DELETE LABEL_OPTION"><i class="fa fa-ban" aria-hidden="true"></i> LABEL_DELETE LABEL_OPTION</button>
845
                     </td>
846
                  </tr>
847
                  {{/for}}
848
               </tbody>
849
            </table>
850
         </div>
851
      </div>
852
   </div>
853
</div>
854
   </script>
855
   <!-- End Template Sections-->
856
 
857
  <!---Template Competencies --->
858
   <script id="sectionCompetencies" type="text/x-jsrender">
859
   <div class="panel panel-default" id="panel-{{:competency_id}}">
860
   <div class="panel-heading">
16845 efrain 861
      <h6 class="panel-title" style="font-size: 18px;">
1354 eleazar 862
         <a class="accordion-toggle" data-toggle="collapse" aria-expanded="true" data-parent="#panel-{{:competency_id}}" href="#collapse-{{:competency_id}}">
863
         <span class="competency-name{{:competency_id}}">
864
         {{:~getType(competency_type_id).name}} - {{:name}}
865
         </span>
866
         </a>
16845 efrain 867
      </h6>
1354 eleazar 868
   </div>
869
   <div id="collapse-{{:competency_id}}" class="panel-collapse in collapse show">
870
      <div class="panel-body">
871
         <div class="table-responsive">
872
            <table class="table table-bordered">
873
               <thead>
874
                  <tr>
15443 efrain 875
                     <th style="width: 80%;">LABEL_BEHAVIOR</th>
1354 eleazar 876
                     <th style="width: 20%;">LABEL_LEVEL</th>
877
                  </tr>
878
               </thead>
879
               <tbody>
880
                  {{for behaviors}}
881
                  <tr >
882
                     <td class="text-left">
883
                        {{:description}}
884
                     </td>
885
                     <td>
886
                        {{if level == '0'}} LABEL_NA {{/if}}
887
                        {{if level == '1' }} LABEL_LEVEL_ONE {{/if}}
888
                        {{if level == '2' }} LABEL_LEVEL_TWO {{/if}}
889
                        {{if level == '3' }} LABEL_LEVEL_THREE {{/if}}
890
                        {{if level == '4' }} LABEL_LEVEL_FOUR {{/if}}
891
                     </td>
892
 
893
 
894
                  </tr>
895
                  {{/for}}
896
               </tbody>
897
            </table>
898
         </div>
899
      </div>
900
   </div>
901
</div>
902
   </script>
903
    <!-- End Template Competencies-->
904
 
905
</section>