Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 10753 Rev 11070
Línea 10... Línea 10...
10
$allowAdd = $acl->isAllowed($roleName, 'recruitment-and-selection/candidates/add') ? 1 : 0;
10
$allowAdd = $acl->isAllowed($roleName, 'recruitment-and-selection/candidates/add') ? 1 : 0;
11
$allowDelete = $acl->isAllowed($roleName, 'recruitment-and-selection/candidates/delete') ? 1 : 0;
11
$allowDelete = $acl->isAllowed($roleName, 'recruitment-and-selection/candidates/delete') ? 1 : 0;
12
$allowEdit = $acl->isAllowed($roleName, 'recruitment-and-selection/candidates/edit') ? 1 : 0;
12
$allowEdit = $acl->isAllowed($roleName, 'recruitment-and-selection/candidates/edit') ? 1 : 0;
13
$allowEmail = $acl->isAllowed($roleName, 'recruitment-and-selection/user-by-email') ? 1 : 0;
13
$allowEmail = $acl->isAllowed($roleName, 'recruitment-and-selection/user-by-email') ? 1 : 0;
Línea 14... Línea -...
14
 
-
 
15
$this->headLink()->appendStylesheet($this->basePath('plugins/nprogress/nprogress.css'));
-
 
16
$this->inlineScript()->appendFile($this->basePath('plugins/nprogress/nprogress.js'));
-
 
17
 
-
 
18
$this->inlineScript()->appendFile($this->basePath('plugins/ckeditor/ckeditor.js'));
-
 
19
 
-
 
20
$this->inlineScript()->appendFile($this->basePath('plugins/bootbox/bootbox.min.js'));
-
 
21
 
-
 
22
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap-fileinput/css/fileinput.min.css'));
-
 
23
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap-fileinput/themes/explorer-fas/theme.css'));
-
 
24
 
-
 
25
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-fileinput/js/plugins/piexif.js'));
-
 
26
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-fileinput/js/plugins/sortable.js'));
-
 
27
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-fileinput/js/fileinput.js'));
-
 
28
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-fileinput/js/locales/es.js'));
-
 
29
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-fileinput/themes/fas/theme.js'));
-
 
30
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-fileinput/themes/explorer-fas/theme.js'));
-
 
31
 
-
 
32
 
-
 
33
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/jquery.validate.js'));
-
 
34
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/additional-methods.js'));
-
 
35
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/localization/messages_es.js'));
-
 
36
 
-
 
37
$this->headLink()->appendStylesheet($this->basePath('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css'));
-
 
38
$this->headLink()->appendStylesheet($this->basePath('plugins/datatables-responsive/css/responsive.bootstrap4.min.css'));
-
 
39
 
-
 
40
$this->inlineScript()->appendFile($this->basePath('plugins/datatables/jquery.dataTables.min.js'));
-
 
41
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js'));
-
 
42
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-responsive/js/dataTables.responsive.min.js'));
-
 
43
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-responsive/js/responsive.bootstrap4.min.js'));
-
 
44
 
-
 
45
 
-
 
46
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/jquery.validate.js'));
-
 
47
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/additional-methods.js'));
-
 
48
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/localization/messages_es.js'));
-
 
49
 
-
 
50
 
-
 
51
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
-
 
52
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
-
 
53
 
-
 
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
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-confirmation/dist/bootstrap-confirmation.js'));
-
 
61
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap-checkbox/awesome-bootstrap-checkbox.css'));
-
 
62
 
-
 
63
 
-
 
64
$status_active = \LeadersLinked\Model\RecruitmentSelectionCandidate::STATUS_ACEPTED;
-
 
65
$status_inactive = \LeadersLinked\Model\RecruitmentSelectionCandidate::STATUS_REJECTED;
-
 
66
 
-
 
67
$evaluation_0 = \LeadersLinked\Model\RecruitmentSelectionCandidate::EVALUATION_0;
-
 
68
$evaluation_1 = \LeadersLinked\Model\RecruitmentSelectionCandidate::EVALUATION_1;
-
 
69
$evaluation_2 = \LeadersLinked\Model\RecruitmentSelectionCandidate::EVALUATION_2;
-
 
70
$evaluation_3 = \LeadersLinked\Model\RecruitmentSelectionCandidate::EVALUATION_3;
-
 
71
$evaluation_4 = \LeadersLinked\Model\RecruitmentSelectionCandidate::EVALUATION_4;
-
 
72
 
-
 
73
$this->inlineScript()->captureStart();
-
 
74
echo <<<JS
-
 
75
    $.prototype.fileinput.Constructor.prototype["setUploadUrl"] = function(url) {
-
 
76
        this.uploadUrl = url;
-
 
77
    }
-
 
78
 
-
 
79
 
-
 
80
jQuery(document).ready(function ($) {
-
 
81
 
-
 
82
 
-
 
83
 
-
 
84
    var allowAdd = $allowAdd;
-
 
85
    var allowDelete = $allowDelete;
-
 
86
    var allowEdit = $allowEdit;
-
 
87
    var allowEmail = $allowEmail;
-
 
88
 
-
 
89
    var gridTable = $('#gridTable').dataTable({
-
 
90
        'processing': true,
-
 
91
        'serverSide': true,
-
 
92
        'searching': true,
-
 
93
        'order': [[1, 'asc']],
-
 
94
        'ordering': true,
-
 
95
        'ordenable': true,
-
 
96
        'responsive': true,
-
 
97
        'select': false,
-
 
98
        'paging': true,
-
 
99
        'pagingType': 'simple_numbers',
-
 
100
        'lengthMenu': [[10, 25, 50, -1], [10, 25, 50, 'All']],
-
 
101
 
-
 
102
        'ajax': {
-
 
103
            'url': '$routeDatatable',
-
 
104
            'type': 'get',
-
 
105
            'data': function (d) {
-
 
106
            },
-
 
107
            'beforeSend': function (request) {
-
 
108
                NProgress.start();
-
 
109
            },
-
 
110
            'dataFilter': function (response) {
-
 
111
                var response = jQuery.parseJSON(response);
-
 
112
 
-
 
113
                var json = {};
-
 
114
                json.recordsTotal = 0;
-
 
115
                json.recordsFiltered = 0;
-
 
116
                json.data = [];
-
 
117
 
-
 
118
                if (response.success) {
-
 
119
                    json.recordsTotal = response.data.total;
-
 
120
                    json.recordsFiltered = response.data.total;
-
 
121
                    json.data = response.data.items;
-
 
122
                } else {
-
 
123
                    $.fn.showError(response.data)
-
 
124
                }
-
 
125
 
-
 
126
                return JSON.stringify(json);
-
 
127
            }
-
 
128
        },
-
 
129
        'language': {
-
 
130
            'sProcessing': 'LABEL_DATATABLE_SPROCESSING',
-
 
131
            'sLengthMenu': 'LABEL_DATATABLE_SLENGTHMENU',
-
 
132
            'sZeroRecords': 'LABEL_DATATABLE_SZERORECORDS',
-
 
133
            'sEmptyTable': 'LABEL_DATATABLE_SEMPTYTABLE',
-
 
134
            'sInfo': 'LABEL_DATATABLE_SINFO',
-
 
135
            'sInfoEmpty': 'LABEL_DATATABLE_SINFOEMPTY',
-
 
136
            'sInfoFiltered': 'LABEL_DATATABLE_SINFOFILTERED',
-
 
137
            'sInfoPostFix': '',
-
 
138
            'sSearch': 'LABEL_DATATABLE_SSEARCH',
-
 
139
            'sUrl': '',
-
 
140
            'sInfoThousands': ',',
-
 
141
            'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
-
 
142
            'oPaginate': {
-
 
143
                'sFirst': 'LABEL_DATATABLE_SFIRST',
-
 
144
                'sLast': 'LABEL_DATATABLE_SLAST',
-
 
145
                'sNext': 'LABEL_DATATABLE_SNEXT',
-
 
146
                'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
-
 
147
            },
-
 
148
            'oAria': {
-
 
149
                'sSortAscending': ': LABEL_DATATABLE_SSORTASCENDING',
-
 
150
                'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
-
 
151
            },
-
 
152
        },
-
 
153
        'drawCallback': function (settings) {
-
 
154
            NProgress.done();
-
 
155
            $('button.btn-delete').confirmation({
-
 
156
                rootSelector: 'button.btn-delete',
-
 
157
                title: 'LABEL_ARE_YOU_SURE',
-
 
158
                singleton: true,
-
 
159
                btnOkLabel: 'LABEL_YES',
-
 
160
                btnCancelLabel: 'LABEL_NO',
-
 
161
                onConfirm: function (value) {
-
 
162
                    action = $(this).data('href');
-
 
163
                    NProgress.start();
-
 
164
                    $.ajax({
-
 
165
                        'dataType': 'json',
-
 
166
                        'accept': 'application/json',
-
 
167
                        'method': 'post',
-
 
168
                        'url': action,
-
 
169
                    }).done(function (response) {
-
 
170
                        if (response['success']) {
-
 
171
                            $.fn.showSuccess(response['data']);
-
 
172
                            gridTable.api().ajax.reload(null, false);
-
 
173
                        } else {
-
 
174
                            $.fn.showError(response['data']);
-
 
175
                        }
-
 
176
                    }).fail(function (jqXHR, textStatus, errorThrown) {
-
 
177
                        $.fn.showError(textStatus);
-
 
178
                    }).always(function () {
-
 
179
                        NProgress.done();
-
 
180
                    });
-
 
181
                },
-
 
182
            });
-
 
183
 
-
 
184
            $('#form-add #file').fileinput({
-
 
185
                theme: 'fas',
-
 
186
                language: 'es',
-
 
187
                showUpload: false,
-
 
188
                dropZoneEnabled: false,
-
 
189
                maxFileCount: 1,
-
 
190
                allowedFileExtensions: ['pdf', 'docx'],
-
 
191
            });
-
 
192
 
-
 
193
            $('#form-edit #file').fileinput({
-
 
194
                theme: 'fas',
-
 
195
                language: 'es',
-
 
196
                showUpload: false,
-
 
197
                initialPreviewAsData: true,
-
 
198
                dropZoneEnabled: false,
-
 
199
                maxFileCount: 1,
-
 
200
                allowedFileExtensions: ['pdf', 'docx'],
-
 
201
            });
-
 
202
 
-
 
203
 
-
 
204
            $('body').on('click', 'button.btn-add', function (e) {
-
 
205
                e.preventDefault();
-
 
206
 
-
 
207
                $('#form-add #user_id').val('');
-
 
208
                $('#form-add #first_name').val('');
-
 
209
                $('#form-add #last_name').val('');
-
 
210
                $('#form-add #email').val('');
-
 
211
                $('#form-add #file').fileinput('reset');
-
 
212
                $('#form-add #file').val('');
-
 
213
                $('#form-add #status').val('$status_active');
-
 
214
                $('#form-add #evaluation').val('$evaluation_0');
-
 
215
                $('#first-step').show();
-
 
216
                $('#second-step').hide();
-
 
217
                CKEDITOR.instances.coment.setData('');
-
 
218
                validatorAdd.resetForm();
-
 
219
                
-
 
220
                $('#add-candidate-box').modal('show');
-
 
221
                return false;
-
 
222
            });
-
 
223
 
-
 
224
            $(".close-box, .btn-add-cancel").on("click", function (e) {
-
 
225
                e.preventDefault();
-
 
226
                $('#form-add #first_name').prop("disabled", false);
-
 
227
                $('#form-add #last_name').prop('disabled', false);
-
 
228
                $('#secon-step').hide();
-
 
229
                $('#add-candidate-box').modal('hide');
-
 
230
                $('#edit-candidate-box').modal('hide');
-
 
231
                return false;
-
 
232
            });
-
 
233
 
-
 
234
            var validatorEdit = $('#form-edit').validate({
-
 
235
                debug: true,
-
 
236
                onclick: false,
-
 
237
                onkeyup: false,
-
 
238
                onfocusout: false,
-
 
239
                ignore: [],
-
 
240
                rules: {
-
 
241
                    'user_id': {
-
 
242
                        required: false,
-
 
243
                    },
-
 
244
                    'first_name': {
-
 
245
                        required: true,
-
 
246
                        maxlength: 128,
-
 
247
                    },
-
 
248
                    'file': {
-
 
249
                        required: false,
-
 
250
                        extension: 'pdf|docx',
-
 
251
                        accept: 'application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/msword,application/pdf'
-
 
252
                    },
-
 
253
                    'last_name': {
-
 
254
                        required: true,
-
 
255
                    },
-
 
256
                    'email': {
-
 
257
                        required: true,
-
 
258
                    },
-
 
259
                    'evaluation':{
-
 
260
                        required: false,
-
 
261
                    },
-
 
262
                    'coment':{
-
 
263
                        updateCkeditor:function() {
-
 
264
                        CKEDITOR.instances.coment.updateElement();
-
 
265
                        },
-
 
266
                    },
-
 
267
                    'status': {
-
 
268
                        required: true,
-
 
269
                    }
-
 
270
                },
-
 
271
                submitHandler: function (form) {
-
 
272
                    var formdata = false;
-
 
273
                    if (window.FormData) {
-
 
274
                        formdata = new FormData(form); //form[0]);
-
 
275
                    }
-
 
276
 
-
 
277
                    $('input[type="submit"]').prop('disabled', true);
-
 
278
 
-
 
279
                    $.ajax({
-
 
280
                        'dataType': 'json',
-
 
281
                        'accept': 'application/json',
-
 
282
                        'method': 'post',
-
 
283
                        'url': $('#form-edit').attr('action'),
-
 
284
                        'data': formdata,
-
 
285
                        'processData': false,
-
 
286
                        'contentType': false,
-
 
287
                    }).done(function (response) {
-
 
288
                        if (response['success']) {
-
 
289
                            $.fn.showSuccess(response['data']);
-
 
290
 
-
 
291
                            $('#edit-candidate-box').modal('hide');
-
 
292
                            gridTable.api().ajax.reload(null, false);
-
 
293
                        } else {
-
 
294
                            validatorEdit.resetForm();
-
 
295
                            if (jQuery.type(response['data']) == 'string') {
-
 
296
                                $.fn.showError(response['data']);
-
 
297
                            } else {
-
 
298
                                $.each(response['data'], function (fieldname, errors) {
-
 
299
                                    $.fn.showFormErrorValidator('#form-edit #' + fieldname, errors);
-
 
300
                                });
-
 
301
                            }
-
 
302
                        }
-
 
303
                    }).fail(function (jqXHR, textStatus, errorThrown) {
-
 
304
                        $.fn.showError(textStatus);
-
 
305
                    }).always(function () {
-
 
306
                        NProgress.done();
-
 
307
                    });
-
 
308
                    return false;
-
 
309
                },
-
 
310
                invalidHandler: function (form, validator) {
-
 
311
 
-
 
312
                }
-
 
313
            });
-
 
314
 
-
 
315
            $('body').on('click', 'button.btn-edit', function (e) {
-
 
316
                e.preventDefault();
-
 
317
 
-
 
318
                var url = $(this).data('href');
-
 
319
                $.ajax({
-
 
320
                    'dataType': 'json',
-
 
321
                    'accept': 'application/json',
-
 
322
                    'method': 'get',
-
 
323
                    'url': url,
-
 
324
                }).done(function (response) {
-
 
325
                    if (response['success']) {
-
 
326
                        $('#form-edit')[0].reset();
-
 
327
 
-
 
328
                        $('#form-edit').attr('action', url);
-
 
329
 
-
 
330
                        $('#form-edit #first_name').val(response['data']['user_id']);
-
 
331
                        $('#form-edit #first_name').val(response['data']['first_name']);
-
 
332
                        $('#form-edit #last_name').val(response['data']['last_name']);
-
 
333
                        $('#form-edit #email').val(response['data']['email']);
-
 
334
                        $('#form-edit #status').val(response['data']['status']);
-
 
335
                        $('#form-edit #evaluation').val(response['data']['evaluation']);
-
 
336
                        $('#form-edit #coment').val(response['data']['coment']);
-
 
337
                        $('#form-edit #btn-cv').attr('href', response['data']['file']);
-
 
338
 
-
 
339
                        
-
 
340
 
-
 
341
                        $('#form-edit #file').fileinput('reset');
-
 
342
                        $('#form-edit #file').fileinput('setUploadUrl', response['data']['file'] );
-
 
343
 
-
 
344
 
-
 
345
                        $('#form-edit #status').val(response['data']['status']);
-
 
346
 
-
 
347
                        $('#edit-candidate-box').modal('show');
-
 
348
                    } else {
-
 
349
                        validatorEdit.resetForm();
-
 
350
                        if (jQuery.type(response['data']) == 'string') {
-
 
351
                            $.fn.showError(response['data']);
-
 
352
                        } else {
-
 
353
                            $.each(response['data'], function (fieldname, errors) {
-
 
354
                                $.fn.showFormErrorValidator('#form-edit #' + fieldname, errors);
-
 
355
                            });
-
 
356
                        }
-
 
357
                    }
-
 
358
                }).fail(function (jqXHR, textStatus, errorThrown) {
-
 
359
                    $.fn.showError(textStatus);
-
 
360
                }).always(function () {
-
 
361
                    NProgress.done();
-
 
362
                });
-
 
363
            });
-
 
364
 
-
 
365
            var validatorAdd = $('#form-add').validate({
-
 
366
                debug: true,
-
 
367
                onclick: false,
-
 
368
                onkeyup: false,
-
 
369
                onfocusout: false,
-
 
370
                ignore: [],
-
 
371
                rules: {
-
 
372
                    'user_id': {
-
 
373
                        required: false,
-
 
374
                    },
-
 
375
                    'first_name': {
-
 
376
                        required: true,
-
 
377
                        maxlength: 128,
-
 
378
                    },
-
 
379
                    'file': {
-
 
380
                        required: false,
-
 
381
                        extension: 'pdf|docx',
-
 
382
                        accept: 'application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/msword,application/pdf'
-
 
383
                    },
-
 
384
                    'last_name': {
-
 
385
                        required: true,
-
 
386
                    },
-
 
387
                    'email': {
-
 
388
                        required: true,
-
 
389
                    },
-
 
390
                    'evaluation':{
-
 
391
                        required: false,
-
 
392
                    },
-
 
393
                    'coment':{
-
 
394
                        updateCkeditor:function() {
-
 
395
                            CKEDITOR.instances.coment.updateElement();
-
 
396
                        },
-
 
397
                    },
-
 
398
                    'status': {
-
 
399
                        required: true,
-
 
400
                    }
-
 
401
                },
-
 
402
                submitHandler: function (form) {
-
 
403
                    var formdata = false;
-
 
404
                    if (window.FormData) {
-
 
405
                        formdata = new FormData(form); //form[0]);
-
 
406
                    }
-
 
407
 
-
 
408
                    $('input[type="submit"]').prop('disabled', true);
-
 
409
 
-
 
410
                    $.ajax({
-
 
411
                        'dataType': 'json',
-
 
412
                        'accept': 'application/json',
-
 
413
                        'method': 'post',
-
 
414
                        'url': $('#form-add').attr('action'),
-
 
415
                        'data': formdata,
-
 
416
                        'processData': false,
-
 
417
                        'contentType': false,
-
 
418
                    }).done(function (response) {
-
 
419
                        if (response['success']) {
-
 
420
                            $.fn.showSuccess(response['data']);
-
 
421
 
-
 
422
                            $('#add-candidate-box').modal('hide');
-
 
423
                            gridTable.api().ajax.reload(null, false);
-
 
424
                        } else {
-
 
425
                            validatorAdd.resetForm();
-
 
426
                            if (jQuery.type(response['data']) == 'string') {
-
 
427
                                $.fn.showError(response['data']);
-
 
428
                            } else {
-
 
429
                                $.each(response['data'], function (fieldname, errors) {
-
 
430
                                    $.fn.showFormErrorValidator('#form-add #' + fieldname, errors);
-
 
431
                                });
-
 
432
                            }
-
 
433
                        }
-
 
434
                    }).fail(function (jqXHR, textStatus, errorThrown) {
-
 
435
                        $.fn.showError(textStatus);
-
 
436
                    }).always(function () {
-
 
437
                        NProgress.done();
-
 
438
                    });
-
 
439
                    return false;
-
 
440
                },
-
 
441
                invalidHandler: function (form, validator) {
-
 
442
 
-
 
443
                }
-
 
444
            });
-
 
445
        },
-
 
446
        'aoColumns': [
-
 
447
            { 'mDataProp': 'first_name' },
-
 
448
            { 'mDataProp': 'last_name' },
-
 
449
            { 'mDataProp': 'email' },
-
 
450
            { 'mDataProp': 'status' },
-
 
451
            { 'mDataProp': 'actions' },
-
 
452
        ],
-
 
453
        'columnDefs': [
-
 
454
            {
-
 
455
                'targets': -2,
-
 
456
                'orderable': false,
-
 
457
                'className': 'text-center',
-
 
458
                'render': function(data, type, row) {
-
 
459
                    checked = data == 'a' ? ' checked="checked" ' : '';
-
 
460
                    return '<div class="checkbox checkbox-success">' +
-
 
461
                        '<input class="styled" type="checkbox" ' + checked + ' disabled="disabled">' +
-
 
462
                        '<label ></label></div>';
-
 
463
                }
-
 
464
            },
-
 
465
            {
-
 
466
                'targets': -1,
-
 
467
                'orderable': false,
-
 
468
                'render': function (data, type, row) {
-
 
469
                    s = '';
-
 
470
 
-
 
471
                    if (allowEdit && data['link_edit']) {
-
 
472
                        s = s + '<button class="btn btn-info btn-sm btn-edit" data-href="' + data['link_edit'] + '" data-toggle="tooltip" title="LABEL_EDIT"><i class="fa fa-pencil"></i> LABEL_EDIT </button>&nbsp;';
-
 
473
                    }
-
 
474
 
-
 
475
                    if (allowDelete && data['link_delete']) {
-
 
476
                        s = s + '<button class="btn btn-danger btn-sm btn-delete" data-href="' + data['link_delete'] + '" data-toggle="tooltip" title="LABEL_DELETE"><i class="fa fa-times"></i> LABEL_DELETE </button>&nbsp;';
-
 
477
                    }
-
 
478
 
-
 
479
                    return s;
-
 
480
                }
-
 
481
            }
-
 
482
        ],
-
 
483
    });
-
 
484
 
-
 
485
    $('#form-filter #form_uuid').change(function (e) {
-
 
486
        e.preventDefault();
-
 
487
 
-
 
488
        var uuid = e.target.value;
-
 
489
 
-
 
490
        $('#form-add').attr('action', String("$routeAdd").replaceAll('UUID_PLACEHOLDER', uuid));
-
 
491
 
-
 
492
        gridTable.api().ajax.url("$routeDatatable" + "/" + uuid);
-
 
493
        gridTable.api().ajax.reload(null, false);
-
 
494
    })
-
 
495
 
-
 
496
 
-
 
497
    $('body').on('click', 'button.btn-refresh', function (e) {
-
 
498
        e.preventDefault();
-
 
499
        gridTable.api().ajax.reload(null, false);
-
 
500
    });
-
 
501
 
-
 
502
    $('body').on('click', '#btn-next', function () {
-
 
503
       $("#first-step").hide();
-
 
504
       $("#second-step").show();
-
 
505
    });
-
 
506
 
-
 
507
    $('#form-filter #form_uuid').change();
-
 
508
 
-
 
509
    $('body').on('click', '#check-email', function () {
-
 
510
        $.ajax("$routeEmail", {
-
 
511
            accepts: 'application/json',
-
 
512
            method: 'GET',
-
 
513
            data: {
-
 
514
                'email': $('#form-add #email').val(),
-
 
515
            }
-
 
516
        }).done(function (response) {
-
 
517
            if (response['success']) {
-
 
518
                $('#form-add #user_id').val(response['data']['user_id']);
-
 
519
                $('#form-add #first_name').val(response['data']['first_name']);
-
 
520
                $('#form-add #last_name').val(response['data']['last_name']);
-
 
521
               // $('#form-add #first_name').prop("disabled", true);
-
 
522
               // $('#form-add #last_name').prop('disabled', true);
-
 
523
            } else {
-
 
524
                $.fn.showError(response['data']);
-
 
525
            }
-
 
526
        }).fail(function (jqXHR, textStatus, errorThrown) {
-
 
527
            $.fn.showError(textStatus);
-
 
528
        }).always(function () {
-
 
529
            NProgress.done();
-
 
530
        });
-
 
531
    })
-
 
532
 
-
 
533
    CKEDITOR.replace('coment', {
-
 
534
        toolbar: [
-
 
535
                    { name: 'editing', items: ['Scayt'] },
-
 
536
                    { name: 'links', items: ['Link', 'Unlink'] },
-
 
537
                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
-
 
538
                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
-
 
539
                    '/',
-
 
540
                    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
-
 
541
                    { name: 'styles', items: ['Styles', 'Format'] },
-
 
542
                    { name: 'tools', items: ['Maximize'] }
-
 
543
                ],
-
 
544
                removePlugins: 'elementspath,Anchor',
-
 
545
                heigth: 100
-
 
546
    });
-
 
547
});
-
 
548
JS;
-
 
549
$this->inlineScript()->captureEnd();
-
 
550
 
14
 
Línea 551... Línea 15...
551
$jsonVacancies = json_encode($vacancies);
15
$jsonVacancies = json_encode($vacancies);
552
 
16
 
553
$js = <<<JS
17
$js = <<<JS
Línea 569... Línea 33...
569
$this->headLink()->appendStylesheet($this->basePath('/react-bundles/recruitment_and_selection/candidates/main.css'));
33
$this->headLink()->appendStylesheet($this->basePath('/react-bundles/recruitment_and_selection/candidates/main.css'));
570
$this->inlineScript()->appendFile('/react-bundles/recruitment_and_selection/candidates/candidatesBundle.js');
34
$this->inlineScript()->appendFile('/react-bundles/recruitment_and_selection/candidates/candidatesBundle.js');
571
?>
35
?>
Línea 572... Línea 36...
572
 
36
 
573
<div id="recruitment-candidates">
37
<div id="recruitment-candidates">
574
</div>
-
 
575
 
-
 
576
<!-- Content Header (Page header) -->
-
 
577
<section class="content-header">
-
 
578
    <div class="container-fluid">
-
 
579
        <div class="row mb-2">
-
 
580
            <div class="col-sm-12">
-
 
581
                <h1>LABEL_PRE_SELECTION</h1>
-
 
582
            </div>
-
 
583
        </div>
-
 
584
    </div><!-- /.container-fluid -->
-
 
585
</section>
-
 
586
 
-
 
587
<section class="content">
-
 
588
    <div class="container-fluid">
-
 
589
        <div class="row">
-
 
590
            <div class="col-12">
-
 
591
                <div class="card">
-
 
592
                    <div class="card-header">
-
 
593
                        <?php
-
 
594
                        // $form = $this->form;
-
 
595
                        $form->setAttributes([
-
 
596
                            'name' => 'form-filter',
-
 
597
                            'id' => 'form-filter',
-
 
598
                        ]);
-
 
599
 
-
 
600
                        $form->prepare();
-
 
601
                        echo $this->form()->openTag($form);
-
 
602
                        ?>
-
 
603
                        <div class="row">
-
 
604
                            <div class="col-md-6 col-sm-12">
-
 
605
                                <div class="form-group">
-
 
606
                                    <?php
-
 
607
                                    $element = $form->get('form_uuid');
-
 
608
 
-
 
609
                                    $element->setOptions(['label' => 'LABEL_VACANCIES']);
-
 
610
 
-
 
611
                                    $element->setAttributes(['class' => 'form-control']);
-
 
612
                                    echo $this->formLabel($element);
-
 
613
                                    echo $this->formSelect($element);
-
 
614
                                    ?>
-
 
615
                                </div>
-
 
616
                            </div>
-
 
617
 
-
 
618
                        </div>
-
 
619
                        <?php echo $this->form()->closeTag($form); ?>
-
 
620
                    </div>
-
 
621
                    <div class="card-body">
-
 
622
                        <table id="gridTable" class="table   table-hover">
-
 
623
                            <thead>
-
 
624
                            <tr>
-
 
625
                                <th>LABEL_FIRST_NAME</th>
-
 
626
                                <th>LABEL_LAST_NAME</th>
-
 
627
                                <th>LABEL_EMAIL</th>
-
 
628
                                <th>LABEL_STATUS</th>
-
 
629
                                <th>LABEL_ACTIONS</th>
-
 
630
                            </tr>
-
 
631
                            </thead>
-
 
632
                            <tbody>
-
 
633
                            </tbody>
-
 
634
                        </table>
-
 
635
                    </div>
-
 
636
                    <div class="card-footer clearfix">
-
 
637
                        <div style="float:right;">
-
 
638
                            <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i>
-
 
639
                                LABEL_REFRESH
-
 
640
                            </button>
-
 
641
                            <?php if ($allowAdd) : ?>
-
 
642
                                <button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i>
-
 
643
                                    LABEL_ADD
-
 
644
                                </button>
-
 
645
                            <?php endif; ?>
-
 
646
                        </div>
-
 
647
                    </div>
-
 
648
                </div>
-
 
649
            </div>
-
 
650
        </div>
-
 
651
    </div>
-
 
652
</section>
-
 
653
 
-
 
654
<!-- The Add Modal -->
-
 
655
<div class="modal" tabindex="-1" role="dialog" id="add-candidate-box">
-
 
656
    <div class="modal-dialog" role="document">
-
 
657
        <?php
-
 
658
        //$form = $this->formAdd;
-
 
659
        $form->setAttributes([
-
 
660
            'method' => 'post',
-
 
661
            'name' => 'form-add',
-
 
662
            'action' => $routeAdd,
-
 
663
            'email' => $routeEmail,
-
 
664
            'id' => 'form-add'
-
 
665
        ]);
-
 
666
        $form->prepare();
-
 
667
        echo $this->form()->openTag($form);
-
 
668
 
-
 
669
        $fields = ['user_id'];
-
 
670
        
-
 
671
        foreach($fields as $field) 
-
 
672
        {
-
 
673
            $element = $form->get($field);
-
 
674
            echo $this->formHidden($element);
-
 
675
        }
-
 
676
 
-
 
677
        ?>
-
 
678
        <div class="modal-content">
-
 
679
            <div class="modal-header">
-
 
680
                <h3 class="modal-title">LABEL_NEW_CANDIDATE</h3>
-
 
681
            </div>
-
 
682
            <div class="modal-body">
-
 
683
                <div id="first-step" style="display: none;">    
-
 
684
                    <div class="form-group">
-
 
685
                        <?php
-
 
686
                        $element = $form->get('email');
-
 
687
                        $element->setOptions(['label' => 'LABEL_EMAIL']);
-
 
688
                        $element->setAttributes(['class' => 'form-control']);
-
 
689
                        echo $this->formLabel($element);
-
 
690
                        echo $this->formText($element);
-
 
691
                        ?>
-
 
692
                    </div>
-
 
693
                    <button id="check-email" type="button" class="btn btn-primary">LABEL_CHECK_EMAIL</button>
-
 
694
                    <div class="form-group">
-
 
695
                        <?php
-
 
696
                        $element = $form->get('first_name');
-
 
697
                        $element->setOptions(['label' => 'LABEL_FIRST_NAME']);
-
 
698
                        $element->setAttributes(['class' => 'form-control']);
-
 
699
                        echo $this->formLabel($element);
-
 
700
                        echo $this->formText($element);
-
 
701
                        ?>
-
 
702
                    </div>
-
 
703
                    <div class="form-group">
-
 
704
                        <?php
-
 
705
                        $element = $form->get('last_name');
-
 
706
                        $element->setOptions(['label' => 'LABEL_LAST_NAME']);
-
 
707
                        $element->setAttributes(['class' => 'form-control']);
-
 
708
                        echo $this->formLabel($element);
-
 
709
                        echo $this->formText($element);
-
 
710
                        ?>
-
 
711
                    </div>
-
 
712
                    <div class="modal-footer">
-
 
713
                        <button id="btn-next" type="button" class="btn btn-primary">LABEL_NEXT</button>
-
 
714
                    </div>
-
 
715
                </div>
-
 
716
                <div id="second-step" style="display: none;">
-
 
717
                    <div class="form-group">
-
 
718
              	       <?php 
-
 
719
                         $element = $form->get('coment');
-
 
720
                         $element->setAttributes(['class' => 'form-control']);    
-
 
721
                         $element->setOptions(['label' => 'LABEL_COMMENT']);                                       
-
 
722
                         echo $this->formLabel($element);
-
 
723
                         echo $this->formTextArea($element);
-
 
724
                        ?>
-
 
725
      	            </div>
-
 
726
                      <div class="form-group">
-
 
727
                        <?php
-
 
728
                        $element = $form->get('evaluation');
-
 
729
                        $element->setAttributes(['class' => 'form-control']);
-
 
730
                        $element->setOptions(['label' => 'LABEL_EVALUATION']);
-
 
731
                        echo $this->formLabel($element);
-
 
732
                        echo $this->formSelect($element);
-
 
733
                        ?>
-
 
734
                    </div>
-
 
735
                    <div class="form-group">
-
 
736
                        <?php
-
 
737
                        $element = $form->get('file');
-
 
738
                        $element->setAttributes(['class' => 'form-control', 'accept' => 'pdf/docx']);
-
 
739
                        $element->setOptions(['label' => 'LABEL_CURRICULUM']);
-
 
740
                        echo $this->formLabel($element);
-
 
741
                        ?>
-
 
742
                        <div class="file-loading">
-
 
743
                            <?php echo $this->formFile($element); ?>
-
 
744
                        </div>
-
 
745
                    </div>
-
 
746
                    <div class="form-group">
-
 
747
                        <?php
-
 
748
                        $element = $form->get('status');
-
 
749
                        $element->setAttributes(['class' => 'form-control']);
-
 
750
                        $element->setOptions(['label' => 'LABEL_STATUS']);
-
 
751
                        echo $this->formLabel($element);
-
 
752
                        echo $this->formSelect($element);
-
 
753
                        ?>
-
 
754
                    </div>
-
 
755
                    <div class="modal-footer">
-
 
756
                        <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
-
 
757
                        <button type="button" class="btn btn-default btn-add-cancel">LABEL_CANCEL</button>
-
 
758
                    </div>
-
 
759
                </div>
-
 
760
            </div>
-
 
761
            
-
 
762
            <?php echo $this->form()->closeTag($form); ?>
-
 
763
        </div>
-
 
764
    </div>
-
 
765
</div>
-
 
766
 
-
 
767
<!-- The Edit Modal -->
-
 
768
<div class="modal" tabindex="-1" role="dialog" id="edit-candidate-box">
-
 
769
    <div class="modal-dialog" role="document">
-
 
770
        <?php
-
 
771
        $form->setAttributes([
-
 
772
            'method' => 'post',
-
 
773
            'name' => 'form-edit',
-
 
774
            'id' => 'form-edit'
-
 
775
        ]);
-
 
776
        $form->prepare();
-
 
777
        echo $this->form()->openTag($form);
-
 
778
 
-
 
779
        $fields = ['user_id'];
-
 
780
        
-
 
781
        foreach($fields as $field) 
-
 
782
        {
-
 
783
            $element = $form->get($field);
-
 
784
            echo $this->formHidden($element);
-
 
785
        }
-
 
786
 
-
 
787
        ?>
-
 
788
        <div class="modal-content">
-
 
789
            <div class="modal-header">
-
 
790
                <h3 class="modal-title">LABEL_CANDIDATE</h3>
-
 
791
            </div>
-
 
792
            <div class="modal-body">
-
 
793
                <div class="form-group">
-
 
794
                    <?php
-
 
795
                    $element = $form->get('first_name');
-
 
796
                    $element->setOptions(['label' => 'LABEL_FIRST_NAME']);
-
 
797
                    $element->setAttributes(['class' => 'form-control']);
-
 
798
                    echo $this->formLabel($element);
-
 
799
                    echo $this->formText($element);
-
 
800
                    ?>
-
 
801
                </div>
-
 
802
                <div class="form-group">
-
 
803
                    <?php
-
 
804
                    $element = $form->get('last_name');
-
 
805
                    $element->setOptions(['label' => 'LABEL_LAST_NAME']);
-
 
806
                    $element->setAttributes(['class' => 'form-control']);
-
 
807
                    echo $this->formLabel($element);
-
 
808
                    echo $this->formText($element);
-
 
809
                    ?>
-
 
810
                </div>
-
 
811
                <div class="form-group">
-
 
812
                    <?php
-
 
813
                    $element = $form->get('email');
-
 
814
                    $element->setOptions(['label' => 'LABEL_EMAIL']);
-
 
815
                    $element->setAttributes(['class' => 'form-control']);
-
 
816
                    echo $this->formLabel($element);
-
 
817
                    echo $this->formText($element);
-
 
818
                    ?>
-
 
819
                </div>
-
 
820
                <div class="form-group">
-
 
821
              	   <?php 
-
 
822
                     $element = $form->get('coment');
-
 
823
                     $element->setAttributes(['class' => 'form-control']);    
-
 
824
                     $element->setOptions(['label' => 'LABEL_COMMENT']);                                       
-
 
825
                     echo $this->formLabel($element);
-
 
826
                     echo $this->formTextArea($element);
-
 
827
                    ?>
-
 
828
      	        </div>
-
 
829
                  <div class="form-group">
-
 
830
                    <?php
-
 
831
                    $element = $form->get('evaluation');
-
 
832
                    $element->setAttributes(['class' => 'form-control']);
-
 
833
                    $element->setOptions(['label' => 'LABEL_EVALUATION']);
-
 
834
                    echo $this->formLabel($element);
-
 
835
                    echo $this->formSelect($element);
-
 
836
                    ?>
-
 
837
                </div>
-
 
838
                <div class="form-group">     
-
 
839
                    <?php
-
 
840
                    $element = $form->get('file');
-
 
841
                    $element->setAttributes(['class' => 'form-control', 'accept' => 'pdf/docx']);
-
 
842
                    $element->setOptions(['label' => 'LABEL_CURRICULUM']);
-
 
843
                    echo $this->formLabel($element);
-
 
844
                    ?>
-
 
845
                    <div class="file-loading">
-
 
846
                        <?php echo $this->formFile($element); ?>
-
 
847
                    </div>
-
 
848
 
-
 
849
                    <div class="mt-2" id="current-file">
-
 
850
                        <a href="" class="btn btn-primary" id="btn-cv"  target="_blank">CV actual</a>
-
 
851
                    </div>
-
 
852
                </div>
-
 
853
 
-
 
854
                <div class="form-group">
-
 
855
                    <?php
-
 
856
                    $element = $form->get('status');
-
 
857
                    $element->setAttributes(['class' => 'form-control']);
-
 
858
                    $element->setOptions(['label' => 'LABEL_STATUS']);
-
 
859
                    echo $this->formLabel($element);
-
 
860
                    echo $this->formSelect($element);
-
 
861
                    ?>
-
 
862
                </div>
-
 
863
            </div>
-
 
864
            <div class="modal-footer">
-
 
865
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
-
 
866
                <button type="button" class="btn btn-default btn-add-cancel">LABEL_CANCEL</button>
-
 
867
            </div>
-
 
868
            <?php echo $this->form()->closeTag($form); ?>
-
 
869
        </div>
-
 
870
    </div>
-
 
871
</div>
38
</div>