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 .?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project
- MRP
This question has been flagged
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;
- 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 inAccess Rights
enableTechnical Features
- Refresh your browser.
- Go to:
Settings>Security>Record Rules
look forPersonal 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.
- 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.
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
2
Mar 25
|
5283 | ||
|
0
Dec 24
|
544 | ||
|
2
Jan 24
|
1274 | ||
|
1
Sep 23
|
922 | ||
Dynamic date in filters
Solved
|
|
4
Apr 25
|
11166 |
@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