### Install Stock Picking Backorder Strategy with Pip Source: https://github.com/oca/stock-logistics-workflow/blob/18.0/stock_picking_backorder_strategy_cancel/readme/INSTALL.md Use this command to install the addon and its dependencies. After installation, restart Odoo and update the addons list in your database. ```bash pip install --pre odoo11-addon-stock-picking-backorder-strategy ``` -------------------------------- ### Call check_assign_all() with custom domain Source: https://github.com/oca/stock-logistics-workflow/blob/18.0/stock_picking_mass_action/README.rst Executes the check_assign_all method with a custom domain to filter stock pickings. This example searches for pickings with 'outgoing' or 'incoming' types and a 'confirmed' state. ```python model.check_assign_all(domain=[("picking_type_code", "in", ["outgoing", "incoming"])])) ``` -------------------------------- ### Check Assign All Pickings Source: https://github.com/oca/stock-logistics-workflow/blob/18.0/stock_picking_mass_action/readme/CONFIGURE.md Use this method to check if all pickings can be assigned. The default domain searches for confirmed pickings. You can customize the search by providing a domain parameter. ```python model.check_assign_all() ``` ```python model.check_assign_all(domain=[("picking_type_code", "in", ["outgoing", "incoming"])]) ```