在odoo 12中 如何添加帐户类型列 进入分析帐户列表视图?
通常在将分析列表报表导出到excel时获取帐户/类型。但我需要在列表视图中。
我为模型添加了一个新字段,以为我可以使其读取帐户类型。
<?xml version="1.0"?>
<tree string="Analytic Entries">
<field name="date"/>
<field name="name"/>
<field name="account_id"/>
<field name="general_account_id"/>
<field name="???"/> #account Type
<field name="currency_id" invisible="1"/>
<field name="company_id" groups="base.group_multi_company"/>
<field name="unit_amount" sum="Quantity"/>
<field name="amount" sum="Total"/>
</tree>