Hi everyone,
I’m working with Odoo 19 and I’ve run into some limitations regarding Storage Categories and package type capacities.
Requirement 1: Restrict specific package types
In storage categories, I define capacities per package type.
What I need:
- Ability to explicitly forbid certain package types from a location
Ideally something like:
- Setting quantity = 0 → meaning “this package type is not allowed”
Example:
- A shelf should accept only specific pallet types
- Any other package type (or no package at all) should be rejected
Requirement 2: Shared capacity across package types
I have locations that can store:
- Only 1 pallet total, regardless of its type (height)
Example:
- Pallet types: 1.40m, 1.50m, 1.90m
What I need:
The location should allow:
- Either 1 pallet of type A
- Or 1 pallet of type B
- But not both at the same time
Any guidance, design patterns, or real implementations would be very helpful.