2017-07-06 07:48:32 +08:00
|
|
|
@section('scripts')
|
|
|
|
<script>
|
2018-03-06 12:10:00 +08:00
|
|
|
function setEditable() {
|
|
|
|
@if(isset($airport))
|
|
|
|
$('#airport-expenses a.text').editable({
|
|
|
|
emptytext: '0',
|
2018-03-13 06:58:12 +08:00
|
|
|
url: '{{ url('/admin/airports/'.$airport->id.'/expenses') }}',
|
2018-03-06 12:10:00 +08:00
|
|
|
title: 'Enter override value',
|
|
|
|
ajaxOptions: {'type': 'put'},
|
|
|
|
params: function (params) {
|
|
|
|
return {
|
|
|
|
expense_id: params.pk,
|
|
|
|
name: params.name,
|
|
|
|
value: params.value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#airport-expenses a.dropdown').editable({
|
|
|
|
type: 'select',
|
|
|
|
emptytext: '0',
|
2018-03-13 06:58:12 +08:00
|
|
|
source: {{ json_encode(list_to_editable(\App\Models\Enums\ExpenseType::select())) }},
|
|
|
|
url: '{{ url('/admin/airports/'.$airport->id.'/expenses') }}',
|
2018-03-06 12:10:00 +08:00
|
|
|
title: 'Enter override value',
|
|
|
|
ajaxOptions: {'type': 'put'},
|
|
|
|
params: function (params) {
|
|
|
|
return {
|
|
|
|
expense_id: params.pk,
|
|
|
|
name: params.name,
|
|
|
|
value: params.value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
@endif
|
|
|
|
}
|
|
|
|
|
2018-01-03 00:59:44 +08:00
|
|
|
function phpvms_vacentral_airport_lookup(icao, callback) {
|
|
|
|
$.ajax({
|
|
|
|
url: BASE_URL + '/api/airports/'+ icao + '/lookup',
|
|
|
|
method: 'GET',
|
|
|
|
headers: {
|
|
|
|
'x-api-key': PHPVMS_USER_API_KEY
|
|
|
|
}
|
|
|
|
}).done(function (data, status) {
|
|
|
|
callback(data.data);
|
|
|
|
});
|
|
|
|
}
|
2017-12-08 07:22:15 +08:00
|
|
|
|
2017-07-06 07:48:32 +08:00
|
|
|
$(document).ready(function() {
|
2017-12-08 07:22:15 +08:00
|
|
|
|
2018-03-06 12:10:00 +08:00
|
|
|
setEditable();
|
|
|
|
|
2017-07-06 07:48:32 +08:00
|
|
|
$('#airports-table a.inline').editable({
|
|
|
|
type: 'text',
|
|
|
|
mode: 'inline',
|
|
|
|
emptytext: '0',
|
2018-03-13 06:58:12 +08:00
|
|
|
url: '{{ url('/admin/airports/fuel') }}',
|
2017-07-06 07:48:32 +08:00
|
|
|
title: 'Enter price per unit of fuel',
|
|
|
|
ajaxOptions: {'type': 'put'},
|
|
|
|
params: function(params) {
|
|
|
|
return {
|
|
|
|
id: params.pk,
|
|
|
|
name: params.name,
|
|
|
|
value: params.value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2017-12-08 07:22:15 +08:00
|
|
|
|
|
|
|
$('a.airport_data_lookup').click(function(e) {
|
|
|
|
e.preventDefault();
|
2018-02-11 06:10:19 +08:00
|
|
|
const icao = $("input#airport_icao").val();
|
2017-12-08 07:22:15 +08:00
|
|
|
if(icao === '') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
phpvms_vacentral_airport_lookup(icao, function(data) {
|
|
|
|
console.log('lookup data', data);
|
|
|
|
_.forEach(data, function(value, key) {
|
|
|
|
if(key === 'city') {
|
|
|
|
key = 'location';
|
|
|
|
}
|
|
|
|
|
|
|
|
$("#" + key).val(value);
|
|
|
|
|
2018-02-22 04:36:41 +08:00
|
|
|
if(key === 'tz') {
|
|
|
|
$("#timezone").val(value);
|
2018-02-07 00:59:31 +08:00
|
|
|
$("#timezone").trigger('change');
|
2017-12-08 07:22:15 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2018-03-06 12:10:00 +08:00
|
|
|
|
|
|
|
$(document).on('submit', 'form.modify_expense', function (event) {
|
|
|
|
event.preventDefault();
|
|
|
|
console.log(event);
|
|
|
|
$.pjax.submit(event, '#airport-expenses-wrapper', {push: false});
|
|
|
|
});
|
|
|
|
|
|
|
|
$(document).on('pjax:complete', function () {
|
|
|
|
$(".select2").select2();
|
|
|
|
setEditable();
|
|
|
|
});
|
2017-07-06 07:48:32 +08:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endsection
|