数据透视表中的百分比符号(图形视图)Odoo V8

时间:2019-02-23 17:22:43

标签: javascript python xml odoo odoo-8

我想在数据透视表Odoo v8中将小数点(%)添加到float类型的字段中

enter image description here

我希望在此度量列中将数字显示为百分比

我在表中具有的结果:50.00

我想要的结果:50.00%

这是我的代码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'),

谢谢您的帮助

1 个答案:

答案 0 :(得分:0)

您可以在下一行之后手动添加%登录xml文件。

    <field name="percentage_forecast"  type="measure"/>