$('#immigration-table').DataTable().clear().destroy();
var date = $('.date');
date.datepicker({
format: '{{ env('Date_Format_JS')}}',
autoclose: true,
todayHighlight: true
});
var table_table = $('#immigration-table').DataTable({
initComplete: function () {
this.api().columns([0]).every(function () {
var column = this;
var select = $('')
.appendTo($(column.footer()).empty())
.on('change', function () {
var val = $.fn.dataTable.util.escapeRegex(
$(this).val()
);
column
.search(val ? '^' + val + '$' : '', true, false)
.draw();
});
column.data().unique().sort().each(function (d, j) {
select.append('');
$('select').selectpicker('refresh');
});
});
},
responsive: true,
fixedHeader: {
header: true,
footer: true
},
processing: true,
serverSide: true,
ajax: {
url: "{{ route('immigrations.show',$employee->id) }}",
},
columns: [
{
data: 'document',
name: 'document',
},
{
data: 'issue_date',
name: 'issue_date',
},
{
data: 'expiry_date',
name: 'expiry_date',
},
{
data: 'country',
name: 'country',
},
{
data: 'eligible_review_date',
name: 'eligible_review_date',
},
{
data: 'action',
name: 'action',
orderable: false
}
],
"order": [],
'language': {
'lengthMenu': '_MENU_ {{__('records per page')}}',
"info": '{{trans("file.Showing")}} _START_ - _END_ (_TOTAL_)',
"search": '{{trans("file.Search")}}',
'paginate': {
'previous': '{{trans("file.Previous")}}',
'next': '{{trans("file.Next")}}'
}
},
'columnDefs': [
{
"orderable": false,
'targets': [0, 5],
},
],
'select': {style: 'multi', selector: 'td:first-child'},
'lengthMenu': [[10, 25, 50, -1], [10, 25, 50, "All"]],
});
new $.fn.dataTable.FixedHeader(table_table);
$('#create_immigration_record').click(function () {
$('.modal-title').text('{{__('Add Immigration')}}');
$('#immigration_action_button').val('{{trans('file.Add')}}');
$('#immigration_action').val('{{trans('file.Add')}}');
$('#ImmigrationformModal').modal('show');
});
$('#immigration_sample_form').on('submit', function (event) {
event.preventDefault();
if ($('#immigration_action').val() == '{{trans('file.Add')}}') {
$.ajax({
url: "{{ route('immigrations.store',$employee->id) }}",
method: "POST",
data: new FormData(this),
contentType: false,
cache: false,
processData: false,
dataType: "json",
success: function (data) {
var html = '';
if (data.errors) {
html = '
';
for (var count = 0; count < data.errors.length; count++) {
html += '
' + data.errors[count] + '
';
}
html += '
';
}
if (data.success) {
html = '' + data.success + '
';
$('#immigration_sample_form')[0].reset();
$('select').selectpicker('refresh');
$('.date').datepicker('update');
$('#immigration-table').DataTable().ajax.reload();
}
$('#immigration_form_result').html(html).slideDown(300).delay(5000).slideUp(300);
}
});
}
if ($('#immigration_action').val() == '{{trans('file.Edit')}}') {
$.ajax({
url: "{{ route('immigrations.update') }}",
method: "POST",
data: new FormData(this),
contentType: false,
cache: false,
processData: false,
dataType: "json",
success: function (data) {
console.log(data);
var html = '';
if (data.errors) {
html = '';
for (var count = 0; count < data.errors.length; count++) {
html += '
' + data.errors[count] + '
';
}
html += '
';
}
if (data.error) {
html = '' + data.error + '
';
}
if (data.success) {
html = '' + data.success + '
';
setTimeout(function () {
$('#ImmigrationformModal').modal('hide');
$('.date').datepicker('update');
$('select').selectpicker('refresh');
$('#immigration-table').DataTable().ajax.reload();
$('#immigration_sample_form')[0].reset();
}, 2000);
}
$('#immigration_form_result').html(html).slideDown(300).delay(5000).slideUp(300);
}
});
}
});
$(document).on('click', '.immigration_edit', function () {
var id = $(this).attr('id');
var target = "{{ route('immigrations.index') }}/" + id + '/edit';
$.ajax({
url: target,
dataType: "json",
success: function (html) {
let id = html.data.id;
$('#immigration_document_number').val(html.data.document_number);
$('#immigration_issue_date').val(html.data.issue_date);
$('#immigration_expiry_date').val(html.data.expiry_date);
$('#immigration_eligible_review_date').val(html.data.eligible_review_date);
$('#immigration_document_type_id').selectpicker('val', html.data.document_type_id);
$('#immigration_country').selectpicker('val', html.data.country_id);
{{-- if(html.data.document_file){--}}
{{-- let d_link = '{{ route('immigrations_document.download')}}/' + id;--}}
{{-- $('#stored_immigration_document').html('Download');--}}
{{-- }--}}
$('#immigration_hidden_id').val(html.data.id);
$('.modal-title').text('{{trans('file.Edit')}}');
$('#immigration_action_button').val('{{trans('file.Edit')}}');
$('#immigration_action').val('{{trans('file.Edit')}}');
$('#ImmigrationformModal').modal('show');
}
});
});
let immigration_delete_id;
$(document).on('click', '.immigration_delete', function () {
immigration_delete_id = $(this).attr('id');
$('.confirmModal').modal('show');
$('.modal-title').text('{{__('DELETE Record')}}');
$('.immigration-ok').text('{{trans('file.OK')}}');
});
$('.immigration-close').click(function () {
$('#immigration_sample_form')[0].reset();
$('select').selectpicker('refresh');
$('.date').datepicker('update');
$('.confirmModal').modal('hide');
$('#immigration-table').DataTable().ajax.reload();
});
$('.immigration-ok').click(function () {
let target = "{{ route('immigrations.index') }}/" + immigration_delete_id + '/delete';
$.ajax({
url: target,
beforeSend: function () {
$('.immigration-ok').text('{{trans('file.Deleting...')}}');
},
success: function (data) {
setTimeout(function () {
$('.confirmModal').modal('hide');
$('#immigration-table').DataTable().ajax.reload();
}, 2000);
}
})
});