我正在使用Openerp 7.0版并使用"印度会计模板"为三家公司配置帐户。 1.ABC解决方案(家长) 2.ABC Solutions Hyderabad(ABC Solutions的子女) 3.ABC Solutions德里(ABC解决方案) ABC Solutions没有任何交易,只有ABC Solutions Delhi,ABC Solutions Hyderabad才有交易。 我需要为ABC解决方案整合p& L和资产负债表。
答案 0 :(得分: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_report_common_view.xml中找到
继承并使company_id可见,以过滤基于公司的报告,如果需要,还可以在account.common.report中查询更改