[FIX] account_voucher: wrong type in context

The type 'general' no longer exists on a account.voucher. As in general context, removed the default value on this menu.
Fixes #1261, it produces a traceback in 8.0 where the selection fields are less fault-tolerant.
This commit is contained in:
David Arnold 2014-08-19 01:43:47 -05:00 committed by Martin Trigaux
parent f572b27ec8
commit 6164f52ca3
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@
<field name="res_model">account.voucher</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form,graph</field>
<field name="context">{'type':'general'}</field>
<field name="context">{}</field>
<field name="view_id" eval="view_voucher_tree"/>
<field name="search_view_id" ref="view_voucher_filter"/>
</record>