OCA/stock-logistics-reservation · 18.0
Product Expiration Date - Force reservation
product_expiry_assign
Product Expiration Date - Force reservation
Starting from Odoo 18.0, product_expiry module is blocking the
reservation of expired lots.
However we could have use cases where we want to move such expired lots in another location.
Table of contents
Usage
This module allows to force the reservation of expired lots with:
- a configuration option (at the company level)
- a context key
Configuration option (global)
Open Inventory settings (Inventory/Configuration/Settings), section Traceability, and enable option Ignore Expiration Date.
With context key (code)
Before calling <stock.move>._action_confirm() or
<stock.move>._action_assign(), one could set the
ignore_expiration_date context key:
move_expired_lot._action_assign()
assert move_expired_lot.state == "confirmed"
move_expired_lot.with_context(ignore_expiration_date=True)._action_assign()
assert move_expired_lot.state == "assigned"
Bug Tracker
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed feedback.
Do not contact contributors directly about support or help with technical issues.
Credits
Authors
- Camptocamp
Contributors
- Sébastien Alix <<sebastien.alix@camptocamp.com>>
Maintainers
This module is maintained by the OCA.
OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.
This module is part of the OCA/stock-logistics-reservation project on GitHub.
You are welcome to contribute. To learn how please visit <https://odoo-community.org/page/Contribute>.





