[FIX] account_bank_statement_extensions: fix creation of statement lines in web client. State field was needed in views as there are modifiers on this field

lp bug: https://launchpad.net/bugs/920492 fixed

bzr revid: qdp-launchpad@openerp.com-20120124152733-2v08ac0dnwfwes2o
This commit is contained in:
Quentin (OpenERP) 2012-01-24 16:27:33 +01:00
parent fb8255576c
commit 947f584162
1 changed files with 2 additions and 0 deletions

View File

@ -47,12 +47,14 @@
</xpath>
<xpath expr="/form/notebook/page[@name='statement_line_ids']/field[@name='line_ids']/tree/field[@name='amount']" position="after">
<field name="globalisation_id" string="Glob. Id"/>
<field name="state" invisible="1"/>
</xpath>
<xpath expr="/form/notebook/page[@name='statement_line_ids']/field[@name='line_ids']/form/field[@name='date']" position="after">
<field name="val_date"/>
</xpath>
<xpath expr="/form/notebook/page[@name='statement_line_ids']/field[@name='line_ids']/form/field[@name='amount']" position="after">
<field name="globalisation_id"/>
<field name="state" invisible="1"/>
</xpath>
</data>
</field>