[FIX] Passed bank statement's currency in payment_rate_currency_id of the account.voucher when importing payment lines

This commit is contained in:
dhr-odoo 2014-10-06 18:53:15 +05:30 committed by David Monjoie
parent a091de8d8d
commit 056ab55b6b
1 changed files with 1 additions and 0 deletions

View File

@ -92,6 +92,7 @@ class account_payment_populate_statement(osv.osv_memory):
'date': line.date or time.strftime('%Y-%m-%d'),
'amount': abs(amount),
'period_id': statement.period_id.id,
'payment_rate_currency_id': statement.currency.id,
}
voucher_id = voucher_obj.create(cr, uid, voucher_res, context=context)