Skip to Content
Menu
This question has been flagged
2 Replies
10348 Views
Best Answer

inherit partner form view and add this code


 <xpath expr="//field[@name='name']" position="attributes">

     <attribute name="readonly">1</attribute>

</xpath>

Avatar
Discard
Best Answer

Another way to do this is through model:

Try:

class ResPartner(models.Model):
_inherit = 'res.partner'

name = fields.Char(readonly=True)

Hope it help.

Avatar
Discard
Related Posts Replies Views Activity
3
Dec 23
90593
3
Sep 21
4883
1
Sep 15
8802
4
Apr 25
4610
3
Jul 23
5530