Plugin Directory

Changeset 3475840


Ignore:
Timestamp:
03/05/2026 06:08:10 PM (3 weeks ago)
Author:
arture
Message:

Version 2.3.9

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

Legend:

Unmodified
Added
Removed
  • order-picking-app/trunk/admin/partials/orderpickingapp-settings-page.php

    r3457811 r3475840  
    300300                        </div>
    301301                        <div style="border: 1px solid #575757; padding: 5px; margin-top: 5px;">
    302                             <strong style="font-size: 12px;">3. | Pickup list (optional)</strong>
     302                            <strong style="font-size: 12px;">3a. | Pickup list (optional)</strong>
    303303                            <div class="form-check">
    304304                                <input type="hidden" name="enable_pickup_list" value="no">
     
    311311                                foreach ($shipping_methods as $method_id => $method_name){
    312312                                    echo '<option value="' . $method_id . '" ' . selected($method_id, $app_settings['pickup_list_method'], false) . '>' . esc_html($method_name) . '</option>';
     313                                }
     314                                ?>
     315                            </select>
     316                        </div>
     317                        <div style="border: 1px solid #575757; padding: 5px; margin-top: 5px;">
     318                            <strong style="font-size: 12px;">3b. | Delivery list (optional)</strong>
     319                            <div class="form-check">
     320                                <input type="hidden" name="enable_delivery_list" value="no">
     321                                <input type="checkbox" class="form-check-input" name="enable_delivery_list" value="yes" <?php echo (isset($app_settings['enable_delivery_list']) && $app_settings['enable_delivery_list'] == 'yes')? 'checked' : ''; ?>>
     322                                <label  class="form-check-label" for="enable_delivery_list"><?php echo __( 'Enable delivery orders list view inside the app', 'orderpickingapp' ); ?></label>
     323                            </div>
     324                            <select name="delivery_list_method">
     325                                <option value="">Select delivery method</option>
     326                                <?php
     327                                foreach ($shipping_methods as $method_id => $method_name){
     328                                    echo '<option value="' . $method_id . '" ' . selected($method_id, $app_settings['delivery_list_method'], false) . '>' . esc_html($method_name) . '</option>';
    313329                                }
    314330                                ?>
     
    601617                                            <option value="inventory" <?php echo (isset($app_user['app_users_type']) && $app_user['app_users_type'] == 'inventory')? 'selected' : ''; ?>>Inventory</option>
    602618                                        <?php endif; ?>
     619                                        <?php if( isset($app_settings['enable_delivery_list']) && $app_settings['enable_delivery_list'] == 'yes' ): ?>
     620                                            <option value="delivery" <?php echo (isset($app_user['app_users_type']) && $app_user['app_users_type'] == 'delivery')? 'selected' : ''; ?>>Delivery</option>
     621                                        <?php endif; ?>
    603622                                    </select>
    604623
     
    638657                                    <?php if( $app_settings['subscription']['inventory_addon'] ): ?>
    639658                                        <option value="inventory">Inventory</option>
     659                                    <?php endif; ?>
     660                                    <?php if( isset($app_settings['enable_delivery_list']) && $app_settings['enable_delivery_list'] == 'yes' ): ?>
     661                                        <option value="delivery">Delivery</option>
    640662                                    <?php endif; ?>
    641663                                </select>
  • order-picking-app/trunk/orderpickingapp.php

    r3457811 r3475840  
    33 * Plugin Name:       Orderpicking App – Order Picking, Barcode Scanning & Fulfillment for WooCommerce
    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.3.8
     5 * Version:           2.3.9
    66 * Author:            Arture | PHP Professionals
    77 * Author URI:        http://arture.nl
  • order-picking-app/trunk/readme.txt

    r3457811 r3475840  
    22Contributors: arture
    33Donate link: https://www.orderpickingapp.com
    4 Tags: order picking, warehouse management, wms, fulfillment, barcode scanning, woocommerce, ecommerce, inventory management, picking workflow, logistics, mobile picking
     4Tags: order picking, warehouse management, barcode scanning, woocommerce, inventory management
    55Requires at least: 6.0
    66Tested up to: 6.9
    7 Stable tag: 2.3.8
     7Stable tag: 2.3.9
    88Requires PHP: 8.0
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     11
     12Speed up WooCommerce fulfillment with mobile order picking, barcode scanning and smart warehouse workflows.
    1113
    1214== Description ==
     
    8486https://www.youtube.com/watch?v=V5QiWXkRqhw
    8587
    86 This video walks through the mobile workflows, setup, and how picking works in practice — perfect for new users and evaluators.
    87 
    8888== Performance and reliability ==
    8989
Note: See TracChangeset for help on using the changeset viewer.