Plugin Directory

Changeset 3309569


Ignore:
Timestamp:
06/11/2025 06:49:28 AM (10 months ago)
Author:
arture
Message:

Version 2.1.6

Location:
order-picking-app/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • order-picking-app/trunk/admin/class-orderpickingapp-admin.php

    r3305817 r3309569  
    99        add_action('manage_edit-shop_order_columns', array($this, 'add_orderpickingapp_order_column'), 10, 1);
    1010        add_action('manage_shop_order_posts_custom_column', array($this, 'add_orderpickingapp_order_column_value'), 10, 2);
     11        add_filter('handle_bulk_actions-edit-shop_order', array($this, 'opa_handle_bulk_actions_shop_order'), 20, 3 );
     12        add_action('woocommerce_update_order', array($this, 'save_opa_order_meta_box_data'));
    1113
    1214        // HPOS
     
    1517        add_filter('bulk_actions-woocommerce_page_wc-orders', array($this, 'opa_register_bulk_action') );
    1618        add_filter('handle_bulk_actions-woocommerce_page_wc-orders', array($this, 'opa_handle_bulk_actions_shop_order'), 20, 3 );
    17         add_action('woocommerce_update_order', array($this, 'save_opa_order_meta_box_data'));
     19        add_filter('bulk_actions-edit-shop_order', array($this, 'opa_register_bulk_action') );
    1820
    1921        add_action('add_meta_boxes', array($this, 'opa_order_meta_boxes'));
     
    7274
    7375                        var ajaxUrl = '<?php echo admin_url("admin-ajax.php"); ?>';
     76                        var button = $(this);
    7477                        var buttonText = $(this).html();
    75 
    76                         console.log(buttonText);
    7778
    7879                        $(this).html("In progress...");
     
    8889                            },
    8990                            success: function(response) {
    90                                 $(this).html(buttonText);
    91                                 console.log($(this));
     91                                $(button).html(buttonText);
    9292                                window.open(response.link, '_blank');
    9393                            },
  • order-picking-app/trunk/orderpickingapp.php

    r3305817 r3309569  
    33 * Plugin Name:       Order Picking App
    44 * Description:       Make your life easier by using the Orderpicking App. You'll never be inefficient if the Orderpicking App is installed in your store. We assist you in all aspects of your webshop. From intelligent selecting to order packing, we have you covered. Connecting the Orderpicking App to your Woocommerce webshop is simple and quick. Within an hour, you'll be online with the Orderpicking App. You're able to pick and pack your orders three times faster and with greater accuracy.
    5  * Version:           2.1.5
     5 * Version:           2.1.6
    66 * Author:            Arture | PHP Professionals
    77 * Author URI:        http://arture.nl
  • order-picking-app/trunk/readme.txt

    r3305817 r3309569  
    55Requires at least: 6.0
    66Tested up to: 6.8.1
    7 Stable tag: 2.1.5
     7Stable tag: 2.1.6
    88Requires PHP: 8.0
    99License: GPLv2 or later
     
    3737== Changelog ==
    3838
     39= 2.1.6 =
     40* Compatibility for old orders admin columns
     41
    3942= 2.1.5 =
    4043* Dashboard widget with backorder PDF export
Note: See TracChangeset for help on using the changeset viewer.