Odoo Community Association

Product Expiration Date - Force reservation

Beta License: AGPL-3 OCA/stock-logistics-reservation Translate me on Weblate Try me on Runboat

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

Maintainers

This module is maintained by the OCA.

Odoo Community Association

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.