コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
10503 ビュー
最善の回答

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