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

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