[FIX] Account : Move line creation was giving encoding error while automated entries were inserted,corrected

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

bzr revid: jvo@tinyerp.com-20090918103321-duidpcu12b358dlv
This commit is contained in:
GPA(Open ERP) 2009-09-18 16:03:21 +05:30 committed by Jay (Open ERP)
parent 35ca7bf8a7
commit 62749f5823
1 changed files with 4 additions and 2 deletions

View File

@ -28,6 +28,8 @@ from tools.translate import _
import mx.DateTime
from mx.DateTime import RelativeDateTime, now, DateTime, localtime
import tools
class account_move_line(osv.osv):
_name = "account.move.line"
_description = "Entry lines"
@ -908,7 +910,7 @@ class account_move_line(osv.osv):
'move_id': vals['move_id'],
'journal_id': vals['journal_id'],
'period_id': vals['period_id'],
'name': vals['name']+' '+tax['name'],
'name': tools.ustr(vals['name'] or '') + ' ' + tools.ustr(tax['name'] or ''),
'date': vals['date'],
'partner_id': vals.get('partner_id',False),
'ref': vals.get('ref',False),
@ -927,7 +929,7 @@ class account_move_line(osv.osv):
'move_id': vals['move_id'],
'journal_id': vals['journal_id'],
'period_id': vals['period_id'],
'name': vals['name']+' '+tax['name'],
'name': tools.ustr(vals['name'] or '') + ' ' + tools.ustr(tax['name'] or ''),
'date': vals['date'],
'partner_id': vals.get('partner_id',False),
'ref': vals.get('ref',False),