change res.partner field name readonly.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
change res.partner field name readonly.
inherit partner form view and add this code
<xpath expr="//field[@name='name']" position="attributes">
<attribute name="readonly">1</attribute>
</xpath>
Another way to do this is through model:
Try:
class ResPartner(models.Model):
_inherit = 'res.partner'
name = fields.Char(readonly=True)
Hope it help.
Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!
Inscreva-sePublicações relacionadas | Respostas | Visualizações | Atividade | |
---|---|---|---|---|
readonly option in fields?
Resolvido
|
|
3
dez. 23
|
90975 | |
|
3
set. 21
|
5090 | ||
|
1
set. 15
|
8940 | ||
|
4
abr. 25
|
5252 | ||
|
3
jul. 23
|
5704 |
https://www.youtube.com/watch?v=ZrCN3L0oAKE