When an employee edits his/her information I want to restrict certain fields not to edit by employee (but can be editable by ADMIN).
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 회계
- 재고 관리
- PoS
- Project
- MRP
신고된 질문입니다
2
답글
5498
화면
Hi,
You could use the "read" and "write" attributes on field definition, like this one:
_columns = {
'credit_limit': fields.float(string='Credit Limit',
read=['base.group_sale_salesman'],
write=['base.group_sale_manager']),
This will create a field named credit_limit
that will be readable by users belonging to base.group_sale_salesman
and writable only by base.group_sale_manager
users...
Hi Mario, Thanks for the reply. It helped me a lot.
You can apply group on that field.admin exist to that group not user.
like groups="base.group_no_one"
관련 게시물 | 답글 | 화면 | 활동 | |
---|---|---|---|---|
|
4
8월 23
|
12555 | ||
|
0
11월 16
|
1529 | ||
|
1
3월 15
|
5075 | ||
|
2
3월 15
|
5061 | ||
|
4
10월 20
|
7031 |