I have a custom module that adds features to the invoices, but I want to take an account models field and remove its invisible attribute. I know how to do this from developer mode, but I would like to enforce it with my invoicing module.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 회계
- 재고 관리
- PoS
- Project
- MRP
신고된 질문입니다
1
회신
6069
화면
Inherit the view and use xpath with attributes tag
Eg:
<xpath expr="//field[@name='account_id']" position="attributes">
<attribute name="invisible">False</attribute>
</xpath>
관련 게시물 | 답글 | 화면 | 활동 | |
---|---|---|---|---|
|
3
2월 25
|
3057 | ||
invoice number prefix
해결 완료
|
|
1
11월 24
|
2864 | |
|
1
12월 23
|
2708 | ||
|
1
4월 21
|
7838 | ||
|
6
1월 24
|
15590 |
Look how inheritance work in odoo: https://goo.gl/4Zyc9d