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
|
95295 | |||
|
3
9월 21
|
7448 | |||
|
1
9월 15
|
10864 | |||
|
4
8월 25
|
10910 | |||
|
3
7월 23
|
8039 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.
https://www.youtube.com/watch?v=ZrCN3L0oAKE