Contributors mailing list archives
contributors@odoo-community.org
Browse archives
Re: Well practise on rewrite action domain
by
MISYL SERVICES., Michael Delvoye
Hi Richard
Thanks for this example. I followed your advice.
2017-01-27 0:23 GMT+01:00 Richard deMeester <richardd@willdooit.com>:
Hi Michael,I understand your pain on this type of thing.A solution of sorts, particularly if module A and module B are not dependent in either direction is:Module A:....<field name="domain">[('state', 'not in', ('draft', 'sent', 'cancel')),('x_type_contract','=','1')]Module B:....<field name="domain">[('state', 'not in', ('archived')),]Module C: (depends on A, B and the clever part, auto_install = True so this module is automatic when A and B are both installed)....<field name="domain">[('state', 'not in', ('draft', 'sent', 'cancel', 'archived')),('x_type_contract','=','1')]Of course, this is not as elegant as could be, and does mean rewriting the domain in two modules if it ever needs to change, and does not extend any base domains (or domains that a third party module may have just added to the same action!)On 13 January 2017 at 07:38, Michael Delvoye <mdelvoye@misyl-services.com> wrote:Hi every bodyi need to rewrite action sale order like this in one module :<record id="sale.action_orders" model="ir.actions.act_window">
<field name="view_id" ref="sale.view_order_tree"/>
<field name="domain">[
('state', 'not in', ('draft', 'sent', 'cancel')),
('x_type_contract','=','1')
]
</field>
</record>Bu in an other module i need to exclude 'state' '=' 'archived')I don't know the best practise to do that.Can you orient me. Of course I . can centralize it in one module but i would prefer to keep each module and to "cumulate" the domain.Thanks for help--Michael DelvoyeDirecteur TechniqueMISYL SERVICES______________________________
_________________
Mailing-List: http://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: http://odoo-community.org/groups?unsubscribe --______________________________
_________________
Mailing-List: http://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: http://odoo-community.org/groups?unsubscribe
Michael Delvoye
Directeur Technique
MISYL SERVICES
Reference
-
Well practise on rewrite action domain
byMISYL SERVICES., Michael Delvoye-
Re: Well practise on rewrite action domain
byMISYL SERVICES., Michael Delvoye -
Re: Well practise on rewrite action domain
byMISYL SERVICES., Michael Delvoye -
Re: Well practise on rewrite action domain
byMISYL SERVICES., Michael Delvoye -
Re: Well practise on rewrite action domain
byWilldooIT, Richard deMeester -
Re: Well practise on rewrite action domain
byMISYL SERVICES., Michael Delvoye -
Re: Well practise on rewrite action domain
byWeb-veistämö Oy/Avoin.Systems, Miku Laitinen. -
Re: Well practise on rewrite action domain
byOpen Architects Consulting, Houssine BAKKALI -
Re: Well practise on rewrite action domain
byMISYL SERVICES., Michael Delvoye -
Re: Well practise on rewrite action domain
byOpen Architects Consulting, Houssine BAKKALI
-