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
|
91281 | ||
|
3
9月 21
|
5266 | ||
|
1
9月 15
|
9033 | ||
|
4
8月 25
|
5676 | ||
|
3
7月 23
|
5874 |
https://www.youtube.com/watch?v=ZrCN3L0oAKE