Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
2 Replies
5254 Tampilan

When an employee edits his/her information I want to restrict certain fields not to edit by employee (but can be editable by ADMIN).

Avatar
Buang
Jawaban Terbai

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...

Avatar
Buang
Penulis

Hi Mario, Thanks for the reply. It helped me a lot.

Jawaban Terbai

You can apply group on that field.admin exist to that group not user.

like groups="base.group_no_one"

Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
4
Agu 23
12300
0
Nov 16
1395
1
Mar 15
4853
2
Mar 15
4847
4
Okt 20
6781