mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
Tax chart for a period interval =============================== Regular tax chart wizard lets you select only one period. With this module, you can select an initial and ending period, and you will get taxes data for that interval.
27 lines
1014 B
XML
27 lines
1014 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
|
|
<record id="view_account_tax_chart_interval" model="ir.ui.view">
|
|
<field name="name">account.tax.chart.form.interval</field>
|
|
<field name="model">account.tax.chart</field>
|
|
<field name="inherit_id" ref="account.view_account_tax_chart"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='period_id']/../.." position="attributes">
|
|
<attribute name="invisible">1</attribute>
|
|
</xpath>
|
|
<xpath expr="//field[@name='period_id']/../.." position="after">
|
|
<group>
|
|
<field name="fiscalyear_id"/>
|
|
</group>
|
|
<group colspan="4" col="4">
|
|
<field name="period_from"/>
|
|
<field name="period_to"/>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|