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

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
91196
3
9月 21
5195
1
9月 15
9012
4
8月 25
5542
3
7月 23
5809