I have two custom modules. In module A, I have a One2many relation to a model in module B, and in module B, I have a Many2one relation to the model in module A.
However, this creates a dependency issue, as both modules cannot depend on each other.
I tried adding module B as a dependency in module A __manifest__.py, and vice versa, but this doesn't work, and the modules don't install.
Is there a way to do this?