Changeset 3475840
- Timestamp:
- 03/05/2026 06:08:10 PM (3 weeks ago)
- Location:
- order-picking-app/trunk
- Files:
-
- 3 edited
-
admin/partials/orderpickingapp-settings-page.php (modified) (4 diffs)
-
orderpickingapp.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
order-picking-app/trunk/admin/partials/orderpickingapp-settings-page.php
r3457811 r3475840 300 300 </div> 301 301 <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> 303 303 <div class="form-check"> 304 304 <input type="hidden" name="enable_pickup_list" value="no"> … … 311 311 foreach ($shipping_methods as $method_id => $method_name){ 312 312 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>'; 313 329 } 314 330 ?> … … 601 617 <option value="inventory" <?php echo (isset($app_user['app_users_type']) && $app_user['app_users_type'] == 'inventory')? 'selected' : ''; ?>>Inventory</option> 602 618 <?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; ?> 603 622 </select> 604 623 … … 638 657 <?php if( $app_settings['subscription']['inventory_addon'] ): ?> 639 658 <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> 640 662 <?php endif; ?> 641 663 </select> -
order-picking-app/trunk/orderpickingapp.php
r3457811 r3475840 3 3 * Plugin Name: Orderpicking App – Order Picking, Barcode Scanning & Fulfillment for WooCommerce 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.3. 85 * Version: 2.3.9 6 6 * Author: Arture | PHP Professionals 7 7 * Author URI: http://arture.nl -
order-picking-app/trunk/readme.txt
r3457811 r3475840 2 2 Contributors: arture 3 3 Donate link: https://www.orderpickingapp.com 4 Tags: order picking, warehouse management, wms, fulfillment, barcode scanning, woocommerce, ecommerce, inventory management, picking workflow, logistics, mobile picking4 Tags: order picking, warehouse management, barcode scanning, woocommerce, inventory management 5 5 Requires at least: 6.0 6 6 Tested up to: 6.9 7 Stable tag: 2.3. 87 Stable tag: 2.3.9 8 8 Requires PHP: 8.0 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html 11 12 Speed up WooCommerce fulfillment with mobile order picking, barcode scanning and smart warehouse workflows. 11 13 12 14 == Description == … … 84 86 https://www.youtube.com/watch?v=V5QiWXkRqhw 85 87 86 This video walks through the mobile workflows, setup, and how picking works in practice — perfect for new users and evaluators.87 88 88 == Performance and reliability == 89 89
Note: See TracChangeset
for help on using the changeset viewer.