Skip to Content
Menu
This question has been flagged
1 Reply
6674 Views

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
Discard
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
Discard
Related Posts Replies Views Activity
3
Dec 24
4278
1
Feb 22
8702
2
Mar 15
6120
1
Feb 22
1779
2
Apr 25
4764