mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
91 lines
3.2 KiB
JavaScript
91 lines
3.2 KiB
JavaScript
var PaymentMethodCreate = function ($) {
|
|
'use strict';
|
|
|
|
var me = {
|
|
storage: {
|
|
hideElements: null,
|
|
showElements: null,
|
|
vueElement: null
|
|
},
|
|
search: function (el) {
|
|
$.ajax({
|
|
url: 'index.php?module=zahlungsweisen&action=create&cmd=suche',
|
|
type: 'POST',
|
|
dataType: 'json',
|
|
data: {
|
|
val: $(el).val()
|
|
}
|
|
})
|
|
.done(function (data) {
|
|
if (typeof data != 'undefined' && data != null) {
|
|
if (typeof data.ausblenden != 'undefined' && data.ausblenden != null) {
|
|
me.storage.hideElements = data.ausblenden.split(';');
|
|
$.each(me.storage.hideElements, function (k, v) {
|
|
if (v != '') {
|
|
$('#' + v).hide();
|
|
}
|
|
});
|
|
|
|
}
|
|
if (typeof data.anzeigen != 'undefined' && data.anzeigen != null) {
|
|
me.storage.showElements = data.anzeigen.split(';');
|
|
$.each(me.storage.showElements, function (k, v) {
|
|
if (v != '') {
|
|
$('#' + v).show();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
init: function () {
|
|
if ($('#payment-create').length === 0) {
|
|
return;
|
|
}
|
|
me.storage.vueElement = $('#payment-create').clone();
|
|
$('#createSearchInput').on('keyup', function () {
|
|
me.search(this);
|
|
});
|
|
$('.createbutton').on('click', function () {
|
|
$.ajax({
|
|
url: 'index.php?module=zahlungsweisen&action=create&cmd=getAssistant',
|
|
type: 'POST',
|
|
dataType: 'json',
|
|
data: {
|
|
paymentmodule: $(this).data('module')
|
|
}
|
|
}).done(function (data) {
|
|
if (typeof data.pages == 'undefined' && typeof data.location != 'undefined') {
|
|
window.location = data.location;
|
|
return;
|
|
}
|
|
if ($('#onlineshop-create').length === 0) {
|
|
$('body').append(me.storage.vueElement);
|
|
}
|
|
new Vue({
|
|
el: '#payment-create',
|
|
data: {
|
|
showAssistant: true,
|
|
pagination: true,
|
|
allowClose: true,
|
|
pages: data.pages
|
|
}
|
|
});
|
|
});
|
|
});
|
|
$('.autoOpenModule').first().each(function () {
|
|
$('.createbutton[data-module=\'' + $(this).data('module') + '\']').first().trigger('click');
|
|
$(this).remove();
|
|
});
|
|
}
|
|
|
|
};
|
|
return {
|
|
init: me.init
|
|
};
|
|
}(jQuery);
|
|
|
|
$(document).ready(function () {
|
|
PaymentMethodCreate.init();
|
|
});
|