Is there a way to define a specific field as readonly on products and customers? I.e. a payment method is created for a customer and only those with access to change this field should be able to change the field. All other fields on the customer like address are writable by regular users.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilità
- Magazzino
- PoS
- Project
- MRP
La domanda è stata contrassegnata
Hi Sean Samborski,
You can write the fields as below:
'approved': fields.boolean('Approved', write=['base.group_sale_manager']),
And in xml as normal fields without any readonly or groups.
<field name="approved"/>
This won't be readonly field. But it is writable only to the users having sale manager access rights.
If you don't want to show this field to the users having no access rights, better write as normal fields and assign groups in xml file.
+1 this sounds really great. Where would I put the first snippet you added?
Inherit the model product and customer, add the above field in py file.
You Can Specify Group in xml for that particular field.
<field name="date" readonly="1" groups="base.group_user"/>
where group_user is the name of the group and base is the module in which group is defined. Then
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
RegistratiPost correlati | Risposte | Visualizzazioni | Attività | |
---|---|---|---|---|
|
2
mar 15
|
5680 | ||
|
0
gen 23
|
1295 | ||
|
3
mar 22
|
17451 | ||
|
1
mar 15
|
6197 | ||
|
4
giu 24
|
3062 |