change res.partner field name readonly.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
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.
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
readonly option in fields?
Rozwiązane
|
|
3
gru 23
|
90984 | |
|
3
wrz 21
|
5092 | ||
|
1
wrz 15
|
8941 | ||
|
4
kwi 25
|
5270 | ||
|
3
lip 23
|
5716 |
https://www.youtube.com/watch?v=ZrCN3L0oAKE