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.
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيلالمنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
---|---|---|---|---|
readonly option in fields?
تم الحل
|
|
3
ديسمبر 23
|
90991 | |
|
3
سبتمبر 21
|
5097 | ||
|
1
سبتمبر 15
|
8944 | ||
|
4
أبريل 25
|
5276 | ||
|
3
يوليو 23
|
5719 |
https://www.youtube.com/watch?v=ZrCN3L0oAKE