Daily updates from Odoo
Friday, October 4, 2019
1 change
Enhancements to existing features
Point of Sale orders can now use make-to-order routes so related inventory movements can trigger follow-up operations such as preparation, dispatch, or component consumption tracking. This helps businesses like restaurants and electronics retailers manage stock flows more accurately while still selling through the POS workflow.
Original PR description
Before this commit, pos_restaurant could not be configured to trigger a bom explosion of a freshly prepared dish, in order to track ongoing (estimated) raw material consumtion (estimated, as based on…
Before this commit, pos_restaurant could not be configured to trigger a bom explosion of a freshly prepared dish, in order to track ongoing (estimated) raw material consumtion (estimated, as based on estimated bom values). This commit replays the logic employed in mrp module onto the pos module, that is: when the route that happens to reflect the specs of a move in the picking at hand defines make_to_order, adjust that move accordingly. After this, a product or product category can be configured (through a route) to be make_to_order. Apart from the above use case, this also enables routing logic for a Point of Sale, if - although a POS - the business requires it. Example: Dispense of electronic goods often times have a separate dispatch window, need a serial registration an IMEI unlock, etc. while still beeing sold through a POS sales flow. **Description of the issue/feature this PR addresses:** - Inventory moves coming from POS are not chainable - Several use cases require this possibility, two examples: - Restaurant, which wishes to estimate ongoing raw material consumption based on bom explosions - Electronics dispatching requireing advanced routing, while seeling in a POS workflow **Current behavior before PR:** - Inventory moves coming from POS are not chainable **Desired behavior after PR is merged:** - Advanced configuration can be undertaken, so that: - Inventory moves coming from POS are chainable. **Note:** Please do not close, even if not immediately accepted (`wishlist` tag). This PR is meant to be carried along and actively maintained, until this semantic will be completed this way or another. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr @xoe-labs