콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
10625 화면
베스트 답변

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
91262
3
9월 21
5248
1
9월 15
9028
4
8월 25
5621
3
7월 23
5850