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

Hello, I would limit the list of contacts and customers that they are assigned to a specific commercial. When a commercial login into openerp and he goes to customer list, I would like that they appear only his assigned customers, not all customers that there are in the application. Is it possible?

Thank you in advance

Avatar
Descartar
Best Answer

From OpenERP UI:

  • Go to Configuration > Technical > Actions > Window Actions
  • Search for Clients
  • Open the first result with the name Clients and with no domain value
  • in Domain Value put: [('user_id','=',uid)]

Custom module:

  • Use the following XML:

    <record id="base.action_partner_form" model="ir.actions.ac_window">
        <field name="domain">[('user_id','=',uid)]</field>
    </record>
    

Note: You can apply the same thing on the Suppliers list

Note 2: This isn't bullet proof, users can have access to some customers from other means.

Note 3: This applies to all users, so if you have a type of user whom you want to be able to see all customers, then you will have to do something else.

Avatar
Descartar
Related Posts Respostes Vistes Activitat
3
de des. 24
4368
1
de febr. 22
8754
2
de març 15
6181
1
de febr. 22
2135
2
d’abr. 25
4825