跳至內容
選單
此問題已被標幟
6 回覆
9959 瀏覽次數

Am looking for a method to implement the following scenario. I have an asset class which has a field location. then i have created an employee and associated it with a user account . I need to limit the access to assets to only those employees with the location similar to that of the asset. The asset tree view should only show those assets based on user location. Please suggest me an idea .?

頭像
捨棄

@AV can i ask you about fnct_search ? i don't know what's the different between fnct and fnct_search, if you don't mind please give me an example .. thanks in advance

最佳答案

You can do it by domains, But you have to know really well all the fields and how you have to filter them.

You can see an example of this on Sales Module, there is a group names See Own Leads that filters sales by user, so a user that is in this group can't see other Leads.

To see how they achieve this follow these steps;

  1. You have to enable Technical Features on the user who is going to configure this. Settings>Users. Select the user who is going to have the technical features and in Access Rights enable Technical Features
  2. Refresh your browser.
  3. Go to: Settings>Security>Record Rules look for Personal Orders and see the domain: ['|',('user_id','=',user.id),('user_id','=',False)]

This is enabled for the group Sales / See Own Leads so they can see only the orders where user_id is the same as their user.id or user_id is False.

You can do something like this.

頭像
捨棄
作者

Thanks, I tried to do it using coding ... my idea is to create a functional field which returns true or false value based on the user.

  1. I created a functional field invmtr invmtr':fields.function(_get_uidmtr,method=True,string='Logged in user',multi='CC',type="boolean" ), 2.It returns the following dictionary {3: {'invmtr': False}, 4: {'invmtr': False}, 5: {'invmtr': True}, 7: {'invmtr': True}} 3.but when i try to add this functional field (just for testing) , it doesn't print any value at all
作者

I have done it using a functional field and fnct_search method . Thanks guys..!!

最佳答案

You can do it by creating a group for each location, so users of the same group can see assets in that location.

Have a look at this question, it might help..%

頭像
捨棄
最佳答案

It doesnt work on Odoo 7. By doing so to the accounts the user will be locked to create / save changes.

 

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
2
3月 25
5550
0
12月 24
757
2
1月 24
1508
1
9月 23
1154
4
4月 25
11487