[IMP] account: display currency in import invoice wizard

Fixes #3830 (really)
This commit is contained in:
Martin Trigaux 2015-04-09 16:31:12 +02:00
parent 0a9e8898b7
commit a3c0742b77
1 changed files with 4 additions and 1 deletions

View File

@ -7,7 +7,10 @@
<field name="arch" type="xml">
<form string="Import Entries">
<separator string="Payable and Receivables"/>
<field height="300" width="700" name="line_ids" domain="[('account_id.type','in',['receivable','payable']), ('reconcile_id','=',False), ('state', '=', 'valid')]"/>
<field height="300" width="700"
name="line_ids"
domain="[('account_id.type','in',['receivable','payable']), ('reconcile_id','=',False), ('state', '=', 'valid')]"
context="{'currency':True}" />
<footer>
<button string="Ok" name="populate_statement" type="object" class="oe_highlight"/>
or