[FIX] account: sequences in fiscal years should be restricted to the same type.

bzr revid: vra@tinyerp.com-20100728070541-gzlqvmg0joffa2b9
This commit is contained in:
vra 2010-07-28 12:35:41 +05:30
parent 60afe7e093
commit fda393ac2c
1 changed files with 2 additions and 2 deletions

View File

@ -12,11 +12,11 @@
<field name="fiscal_ids" nolabel="1" colspan="4">
<tree string="Fiscal Year Sequences" editable="bottom">
<field name="fiscalyear_id"/>
<field name="sequence_id"/>
<field name="sequence_id" domain="[('code','=',parent.code)]"/>
</tree>
<form string="Fiscal Year Sequence">
<field name="fiscalyear_id"/>
<field name="sequence_id"/>
<field name="sequence_id" domain="[('code','=',parent.code)]"/>
</form>
</field>
</page>