On OpenERP 6.1, Sales -> Address Book -> Customer, Salesman should see customer only, how to isolate suppliers information from sale group, and search customer without touching supplier, "clear" button will not show suppliers as well. How to archieve this? Thanks for share!
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilidad
- Inventario
- PoS
- Project
- MRP
Se marcó esta pregunta
Create a domain on the action that opens that customer list view, that will supercede your search filter domains. You can quickly see this by going into debug mode, clicking on Sales -> Address Book -> Customers, then going to the debug dropdown and selecting "Edit Action". For the domain field, enter [('customer','=',1)]
and save it. Now no matter what filters you choose, only customers show up.
To make that change last, you'd need to write some custom code to put that domain into the action XML. Something as simple as this would do it (because you're referring to the already existing action and only writing one change - the domain - and not re-writing the same info that's already there):
<record id="base.action_partner_form" model="ir.actions.act_window">
<field name="domain">[('customer','=',1)]</field>
</record>
This makes your filter buttons pointless though, so you might want to get rid of those if you really want to go down this route.
I have tested with Sales -> Customer, it works good. This also works with Purchase which I set the domain [('supplier','=',1)]. Thanks for sharing, very appreciated!
Brett, where can i find the action XML to edit which is linked to this customer?
¿Le interesa esta conversación? ¡Participe en ella!
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
InscribirsePublicaciones relacionadas | Respuestas | Vistas | Actividad | |
---|---|---|---|---|
How to become a Odoo Ready Partner ?
Resuelto
|
|
1
may 23
|
5357 | |
|
2
nov 17
|
11775 | ||
|
1
mar 15
|
6981 | ||
|
1
mar 15
|
4013 | ||
Allotment Partner explanation
Resuelto
|
|
1
mar 15
|
3701 |