We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello , i'm having a problem when i try to use two @Odoo.domain() in the same OModel
example :
@Odoo.Domain("[['wilaya_id', '=', @wilaya_id]]") OColumn market = new OColumn("Nom Marché", Market.class, OColumn.RelationType.ManyToOne).setRequired(); @Odoo.Domain("[['wilaya', '=', @wilaya_id]]") OColumn commune = new OColumn("Commune", Commune.class,OColumn.RelationType.ManyToOne).setRequired(); OColumn wilaya_id = new OColumn("Wilaya", Wilaya.class,OColumn.RelationType.ManyToOne).setRequired();
if i keep only one of @Odoo.Domain it's works perfectly , when i keep them both only the second get affected by the filter and not both
any help ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello , i'm having a problem when i try to use two @Odoo.domain() in the same OModel
example :
if i keep only one of @Odoo.Domain it's works perfectly , when i keep them both only the second get affected by the filter and not both
any help ?
The text was updated successfully, but these errors were encountered: