Changeset 3309569
- Timestamp:
- 06/11/2025 06:49:28 AM (10 months ago)
- Location:
- order-picking-app/trunk
- Files:
-
- 3 edited
-
admin/class-orderpickingapp-admin.php (modified) (4 diffs)
-
orderpickingapp.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
order-picking-app/trunk/admin/class-orderpickingapp-admin.php
r3305817 r3309569 9 9 add_action('manage_edit-shop_order_columns', array($this, 'add_orderpickingapp_order_column'), 10, 1); 10 10 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')); 11 13 12 14 // HPOS … … 15 17 add_filter('bulk_actions-woocommerce_page_wc-orders', array($this, 'opa_register_bulk_action') ); 16 18 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') ); 18 20 19 21 add_action('add_meta_boxes', array($this, 'opa_order_meta_boxes')); … … 72 74 73 75 var ajaxUrl = '<?php echo admin_url("admin-ajax.php"); ?>'; 76 var button = $(this); 74 77 var buttonText = $(this).html(); 75 76 console.log(buttonText);77 78 78 79 $(this).html("In progress..."); … … 88 89 }, 89 90 success: function(response) { 90 $(this).html(buttonText); 91 console.log($(this)); 91 $(button).html(buttonText); 92 92 window.open(response.link, '_blank'); 93 93 }, -
order-picking-app/trunk/orderpickingapp.php
r3305817 r3309569 3 3 * Plugin Name: Order Picking App 4 4 * 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. 55 * Version: 2.1.6 6 6 * Author: Arture | PHP Professionals 7 7 * Author URI: http://arture.nl -
order-picking-app/trunk/readme.txt
r3305817 r3309569 5 5 Requires at least: 6.0 6 6 Tested up to: 6.8.1 7 Stable tag: 2.1. 57 Stable tag: 2.1.6 8 8 Requires PHP: 8.0 9 9 License: GPLv2 or later … … 37 37 == Changelog == 38 38 39 = 2.1.6 = 40 * Compatibility for old orders admin columns 41 39 42 = 2.1.5 = 40 43 * Dashboard widget with backorder PDF export
Note: See TracChangeset
for help on using the changeset viewer.