[IMP] account_statement_ext - hide type column in bank statement line

This commit is contained in:
Yannick Vaucher
2013-06-28 17:00:20 +02:00
parent e22e4191e5
commit 7f7e025647

View File

@@ -139,8 +139,9 @@
<xpath expr="//field[@name='line_ids']/form//field[@name='type']" position="replace">
<field name="type" on_change="onchange_type(partner_id, type, parent.profile_id)"/>
</xpath>
# also set type hidden as it has no impact on reconciliation
<xpath expr="//field[@name='line_ids']/tree/field[@name='type']" position="replace">
<field name="type" on_change="onchange_type(partner_id, type, parent.profile_id)"/>
<field name="type" on_change="onchange_type(partner_id, type, parent.profile_id)" invisible="1"/>
</xpath>
</field>