Skip to Content
Menú
This question has been flagged
1 Respondre
4138 Vistes

Under the clients in OpenERP(7) for the companies you have tab for all the contactpersons. How can I specify I only want to show the shipping addresses in this tab? I want to duplicate this group under the view, and have one tab for ALL the contacts and one tab for ONLY the shipping adresses.

Is this possible? Can someone explain how I can specify to use only the contacts of a specific type? I saw an attribute specified like e.g. : attrs="{'invisible': [('is_company','=',False)]}. This will hide all the companies. Is there a string like 'is_company' for something like 'is_shipping'??

Avatar
Descartar
Best Answer

The type field indicates the kind of address.

default = Default Address

invoice = Invoice Address

delivery = Shipping Address

contact = Contact Address

other = Other Address

attrs="{'invisible': [('type','<>','delivery')]}

Note: If you specify this in an XML file you should use:

attrs="{'invisible': [('type','&lt;&gt;','delivery')]}
Avatar
Descartar
Related Posts Respostes Vistes Activitat
1
d’ag. 25
475
1
de jul. 25
1248
1
de jul. 25
1584
2
de jul. 25
1100
0
d’abr. 25
980