403Webshell
Server IP : 162.0.217.223  /  Your IP : 216.73.216.112
Web Server : LiteSpeed
System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : mypckeys ( 1539)
PHP Version : 8.1.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/mypckeys/backup/msckey.com/wp-content/plugins/woo-wallet/assets/js/admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/mypckeys/backup/msckey.com/wp-content/plugins/woo-wallet/assets/js/admin/admin-order.js
/* global woo_wallet_admin_order_param, woocommerce_admin_meta_boxes, accounting, woocommerce_admin */

jQuery(function ($) {
    var woo_wallet_order_items = {
        init: function () {
            if (woo_wallet_admin_order_param.is_refundable) {
                $('.refund-actions .do-manual-refund').before('<button type="button" class="button button-primary do-wallet-refund">' + woo_wallet_admin_order_param.i18n.refund + ' <span class="wc-order-refund-amount">' + woo_wallet_admin_order_param.default_price + '</span> ' + woo_wallet_admin_order_param.i18n.via_wallet + '</button>');
                $('#woocommerce-order-items').on('click', '.refund-actions .do-wallet-refund', this.do_wallet_refund);
            }
            $('.refund-partial-payment').on('click', this.do_refund_partial_payment_amount);
        },
        do_refund_partial_payment_amount: function () {
            if (window.confirm(woocommerce_admin_meta_boxes.i18n_do_refund)) {
                woo_wallet_order_items.block();
                var data = {
                    action: 'woo_wallet_refund_partial_payment',
                    order_id: woocommerce_admin_meta_boxes.post_id
                };
                $.post(woocommerce_admin_meta_boxes.ajax_url, data, function (response) {
                    if (true === response.success) {
                        woo_wallet_order_items.reload_items();
                        // Redirect to same page for show the refunded status
                        window.location.href = window.location.href;
                    }
                });
            }
        },
        do_wallet_refund: function () {
            woo_wallet_order_items.block();
            if (window.confirm(woocommerce_admin_meta_boxes.i18n_do_refund)) {
                var refund_amount = $('input#refund_amount').val();
                var refund_reason = $('input#refund_reason').val();
                var refunded_amount = $( 'input#refunded_amount' ).val();
                // Get line item refunds
                var line_item_qtys = {};
                var line_item_totals = {};
                var line_item_tax_totals = {};
                $('.refund input.refund_order_item_qty').each(function (index, item) {
                    if ($(item).closest('tr').data('order_item_id')) {
                        if (item.value) {
                            line_item_qtys[ $(item).closest('tr').data('order_item_id') ] = item.value;
                        }
                    }
                });

                $('.refund input.refund_line_total').each(function (index, item) {
                    if ($(item).closest('tr').data('order_item_id')) {
                        line_item_totals[ $(item).closest('tr').data('order_item_id') ] = accounting.unformat(item.value, woocommerce_admin.mon_decimal_point);
                    }
                });

                $('.refund input.refund_line_tax').each(function (index, item) {
                    if ($(item).closest('tr').data('order_item_id')) {
                        var tax_id = $(item).data('tax_id');

                        if (!line_item_tax_totals[ $(item).closest('tr').data('order_item_id') ]) {
                            line_item_tax_totals[ $(item).closest('tr').data('order_item_id') ] = {};
                        }

                        line_item_tax_totals[ $(item).closest('tr').data('order_item_id') ][ tax_id ] = accounting.unformat(item.value, woocommerce_admin.mon_decimal_point);
                    }
                });
                var data = {
                    action: 'woo_wallet_order_refund',
                    order_id              : woocommerce_admin_meta_boxes.post_id,
                    refund_amount         : refund_amount,
                    refunded_amount       : refunded_amount,
                    refund_reason         : refund_reason,
                    line_item_qtys        : JSON.stringify(line_item_qtys, null, ''),
                    line_item_totals      : JSON.stringify(line_item_totals, null, ''),
                    line_item_tax_totals  : JSON.stringify(line_item_tax_totals, null, ''),
                    api_refund            : $(this).is('.do-api-refund'),
                    restock_refunded_items: $('#restock_refunded_items:checked').length ? 'true' : 'false',
                    security              : woocommerce_admin_meta_boxes.order_item_nonce
                };
                $.post(woocommerce_admin_meta_boxes.ajax_url, data, function (response) {
                    if (true === response.success) {
                        woo_wallet_order_items.reload_items();

                        if ('fully_refunded' === response.data.status) {
                            // Redirect to same page for show the refunded status
                            window.location.href = window.location.href;
                        }
                    } else {
                        window.alert(response.data.error);
                        woo_wallet_order_items.unblock();
                    }
                });
            } else {
                woo_wallet_order_items.unblock();
            }
        },
        block: function () {
            $('#woocommerce-order-items').block({
                message: null,
                overlayCSS: {
                    background: '#fff',
                    opacity: 0.6
                }
            });
        },
        unblock: function () {
            $('#woocommerce-order-items').unblock();
        },
        reload_items: function () {
            var data = {
                order_id: woocommerce_admin_meta_boxes.post_id,
                action: 'woocommerce_load_order_items',
                security: woocommerce_admin_meta_boxes.order_item_nonce
            };

            woo_wallet_order_items.block();

            $.ajax({
                url: woocommerce_admin_meta_boxes.ajax_url,
                data: data,
                type: 'POST',
                success: function (response) {
                    $('#woocommerce-order-items').find('.inside').empty();
                    $('#woocommerce-order-items').find('.inside').append(response);
                    woo_wallet_order_items.init_tiptip();
                    woo_wallet_order_items.unblock();
                    woo_wallet_order_items.init();
                }
            });
        },
        init_tiptip: function () {
            $('#tiptip_holder').removeAttr('style');
            $('#tiptip_arrow').removeAttr('style');
            $('.tips').tipTip({
                'attribute': 'data-tip',
                'fadeIn': 50,
                'fadeOut': 50,
                'delay': 200
            });
        }
    };
    woo_wallet_order_items.init();
});

Youez - 2016 - github.com/yon3zu
LinuXploit