how can i hide units like margin from Measures At reports Pivot View ?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 회계
- 재고 관리
- PoS
- Project
- MRP
신고된 질문입니다
Hi,
To hide the margin field from the pivot view in the Sales Orders report using Odoo XML customization, you can override the view and make the field invisible using the following code:
<record id="sale_order_pivot_custom" model="ir.ui.view">
<field name="name">sale.order.pivot.custom.inherit</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_pivot"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='margin']" position="attributes">
<attribute name="invisible">1</attribute>
</xpath>
</field>
</record>
Hope it helps
관련 게시물 | 답글 | 화면 | 활동 | |
---|---|---|---|---|
|
3
7월 25
|
2397 | ||
|
0
7월 25
|
362 | ||
|
3
5월 25
|
1231 | ||
|
1
7월 25
|
751 | ||
|
1
5월 25
|
857 |