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.
関連投稿 | 返信 | ビュー | 活動 | |
---|---|---|---|---|
|
3
12月 23
|
90961 | ||
|
3
9月 21
|
5086 | ||
|
1
9月 15
|
8933 | ||
|
4
4月 25
|
5224 | ||
|
3
7月 23
|
5699 |
https://www.youtube.com/watch?v=ZrCN3L0oAKE