我正在使用 Openerp 7.0 版并使用“印度会计模板”为三个公司配置帐户。1.ABC Solutions(Parent) 2.ABC Solutions Hyderabad(ABC Solutions 的子代) 3.ABC Solutions Delhi (ABC Solutions) ABC Solutions 没有任何交易,只有 ABC Solutions Delhi、ABC Solutions Hyderabad 有交易。我需要 ABC 解决方案的综合损益表和资产负债表。
问问题
758 次
1 回答
2
如果您根据帐户聊天更改帐户表,如果您有任何疑问,它将生成基于公司的帐户,请查看下方
<record id="account_common_report_view" model="ir.ui.view">
<field name="name">Common Report</field>
<field name="model">account.common.report</field>
<field name="arch" type="xml">
<form string="Report Options" version="7.0">
<label string=""/> <!-- binding for inherited views -->
<group col="4">
<field name="chart_account_id" widget='selection' on_change="onchange_chart_id(chart_account_id, context)"/>
<field name="company_id" invisible="1"/>
<field name="fiscalyear_id" domain="[('company_id','=',company_id)]"/>
<field name="target_move"/>
</group>
<notebook tabpos="up" colspan="4">
<page string="Filters" name="filters">
<group>
<field name="filter" on_change="onchange_filter(filter, fiscalyear_id)"/>
</group>
<group string="Dates" attrs="{'invisible':[('filter', '!=', 'filter_date')], 'required':[('filter', '=', 'filter_date')]}">
<field name="date_from" />
<field name="date_to" />
</group>
<group string="Periods" attrs="{'invisible':[('filter','!=','filter_period')], 'required':[('filter', '=', 'filter_period')]}">
<field name="period_from" domain="[('fiscalyear_id', '=', fiscalyear_id)]"/>
<field name="period_to" domain="[('fiscalyear_id', '=', fiscalyear_id)]"/>
</group>
</page>
<page string="Journals" name="journal_ids">
<field name="journal_ids"/>
</page>
</notebook>
<footer>
<button name="check_report" string="Print" type="object" default_focus="1" class="oe_highlight"/>
or
<button string="Cancel" class="oe_link" special="cancel" />
</footer>
</form>
</field>
</record>
以上对于会计报告很常见,可以在 account/wizard/account_report_common_view.xml 中找到
继承并使 company_id 可见以过滤基于公司的报告,如果需要,还可以在 account.common.report 中查询更改
于 2014-06-02T07:37:37.663 回答