我正在尝试根据account_move_line表创建数据透视报表,
我需要按顺序显示报告,但顺序列不应在数据透视视图中显示。
Python代码:
class BalanceSheetReport(models.Model):
_name = "account.balance.sheet"
_description = "Balance Sheet Statistics"
_auto = False
_rec_name = 'date'
_order = 'sequence ASC'
XML:
<record id="view_balance_sheet_report_pivot" model="ir.ui.view">
<field name="name">account.balance.sheet.pivot</field>
<field name="model">account.balance.sheet</field>
<field name="arch" type="xml">
<pivot string="Balance Sheet" disable_linking="True">
<field name="report_name" type="row"/>
<field name="debit" type="measure"/>
<field name="credit" type="measure"/>
<field name="balance" type="measure"/>
</pivot>
</field>
</record>
现在,报告按report_name升序排序。
我需要按顺序列对报表进行排序(不以行或度量显示列)。
请有人给我一个主意。