In a form view, what way would you have a field only be editable when the object is crated and not editable afterwards.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 회계
- 재고 관리
- PoS
- Project
- MRP
신고된 질문입니다
2
답글
17179
화면
An object on create will not have an id. Afterwards, it will always have one.
Taking advantage of this behaviour, the id can be used to set the readonly attribute.
<field name="id" invisible="1"/>
<field name="uneditable_field" attrs="{'readonly': [('id', '!=', False)]}"/>
Well done. I was stuggled with this. I didn't think to add the "id" field as invisible to make it available in the domain. Thanks for sharing! J
nice post.
관련 게시물 | 답글 | 화면 | 활동 | |
---|---|---|---|---|
|
0
12월 19
|
6397 | ||
|
1
8월 23
|
2142 | ||
|
0
4월 21
|
3314 | ||
|
1
7월 19
|
7118 | ||
|
6
7월 24
|
45965 |