The Product Pick Barcode module enhances Odoo's stock management capabilities by adding barcode scanning functionality to stock picking and inventory adjustment processes. This module streamlines warehouse operations, improves accuracy, and increases efficiency in inventory management.
- Product identification with Barcodes, QR codes, and Internal references
- Integrated barcode scanning interface for stock picking, incoming shipments, and inventory adjustment forms
- Immediately updates product quantities in the current operation when scanned
- User-friendly notifications for successful scans and errors
- Configurable product scan options: Barcode, QR Code, Internal Reference, or All
- Incoming shipment support: Scan products and serial numbers for efficient receipt processing
- Assigns serial numbers to products during incoming shipments
- Inventory adjustment: Barcode scanning functionality for streamlined inventory counts
- Improved error handling: Enhanced messages for various scenarios during scanning
- Optimized for use with handheld scanners
- Add option to product between barcode, QR code, internal reference
- Place the
dh_product_pick_barcode
folder in your Odoo addons directory. - Update the addons list in your Odoo instance.
- Install the module through the Odoo Apps menu.
- Go to Inventory > Configuration > Settings.
- Locate the "Product Scan Option" section.
- Choose the preferred scan option: Barcode, QR Code, Internal Reference, or All.
- Save the configuration.
- Open a stock picking form (e.g., delivery order or internal transfer).
- Locate the "Scan products" section at the bottom of the form.
- Use a barcode scanner to scan product barcodes, QR codes, or internal references (based on configuration).
- Optionally, enter a quantity before scanning if adding multiple units.
- The system automatically updates quantities or adds new lines as needed.
- Complete the picking process as usual.
- Open an incoming shipment form.
- Find the "Scan products and serial numbers" section.
- Scan product barcodes or serial numbers.
- The system will automatically update quantities and assign serial numbers.
- Complete the receipt process as normal.
- Start a new inventory adjustment.
- Use the barcode scanner to count products (using the configured scan option).
- The system automatically updates product quantities in the inventory.
- Validate the inventory when counting is complete.
- Extends
product.product
,stock.picking
, andstock.inventory
models - Custom JavaScript for capturing barcode scan events and communicating with the server
- Compatible with Odoo 13.0 Community Edition
The process_barcode_from_ui
method in the StockPicking
model handles the core barcode scanning functionality:
- Checks if the picking is already validated.
- Finds the product using the scanned code based on the configured scan option.
- Handles cases for products not found, unexpected products, or products not in the picking.
- Updates quantities or creates new move lines as needed.
- Manages excess quantities and provides appropriate feedback.
For incoming shipments, the process_barcode_from_ui_incoming
method provides additional functionality:
- Supports scanning of both product barcodes and serial numbers.
- Automatically assigns serial numbers to products.
- Creates new move lines for products not in the original receipt.
These methods ensure accurate and efficient processing of scanned products during various stock operations, with flexibility in product identification methods and robust error handling.
The module includes comprehensive error handling for various scenarios:
- Invalid barcodes
- Products not found in the system
- Products not in the current picking
- Excess quantities
- Unexpected products in the picking
Each error case provides a specific message to guide the user in resolving the issue.
stock
module
dinoherlambang
13.0.1.0.0
LGPL-3
For support, feature requests, or bug reports, please contact the author or create an issue in the module's repository.