我想在数据透视表Odoo v8中将小数点(%)添加到float类型的字段中
我希望在此度量列中将数字显示为百分比
这是我的代码xml:
<record id="view_order_product_graph" model="ir.ui.view">
<field name="name">forecast_report.graph</field>
<field name="model">forecast_report</field>
<field name="arch" type="xml">
<graph string="Forecasts Analysis" type="pivot">
<!-- <field name="date" interval="month" type="col"/> -->
<field name="forecast_quantity" type="measure"/>
<field name="product_uom_qty" type="measure"/>
<field name="forecast_subtotal" type="measure"/>
<field name="price_total" type="measure"/>
<field name="percentage_forecast" type="measure"/>
<field name="product_id" type="row"/>
</graph>
</field>
</record>
forecast_percentage的代码python:
'percentage_forecast': fields.float('% Sales Forecast', readonly=True, group_operator = 'avg'),
谢谢您的帮助
答案 0 :(得分:0)
您可以在下一行之后手动添加%
登录xml文件。
<field name="percentage_forecast" type="measure"/>