PluginProbe
SuperFrete / 2.1.6
SuperFrete v2.1.6
trunk 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 2.0.0 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 3.2.1 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4
superfrete / assets / scripts / admin.js

admin.js in SuperFrete 2.1.6, at assets/scripts/admin.js

27 lines 761 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 jQuery(document).ready(function ($) {
2 $('.pagar-etiqueta').click(function (e) {
3 e.preventDefault();
4
5 var order_id = $(this).data('order-id');
6
7 $.ajax({
8 url: ajaxurl,
9 type: 'POST',
10 data: {
11 action: 'pagar_etiqueta_superfrete',
12 order_id: order_id
13 },
14 beforeSend: function () {
15 alert('Processando pagamento...');
16 },
17 success: function (response) {
18 if (response.success) {
19 alert(response.data.message);
20 location.reload();
21 } else {
22 alert(response.data.message);
23 }
24 }
25 });
26 });
27 });