[REF] point_of_sale: rml_parse has already a self.pool, not need to call pooler.get_pool().

bzr revid: vmt@openerp.com-20130327130138-tzhqev6yako5xr9f
This commit is contained in:
Vo Minh Thu 2013-03-27 14:01:38 +01:00
parent 489dcedf8c
commit 598b455c22
1 changed files with 1 additions and 2 deletions

View File

@ -21,7 +21,6 @@
import time
from openerp.report import report_sxw
from openerp import pooler
def titlize(journal_name):
words = journal_name.split()
@ -34,7 +33,7 @@ class order(report_sxw.rml_parse):
def __init__(self, cr, uid, name, context):
super(order, self).__init__(cr, uid, name, context=context)
user = pooler.get_pool(cr.dbname).get('res.users').browse(cr, uid, uid, context=context)
user = self.pool['res.users'].browse(cr, uid, uid, context=context)
partner = user.company_id.partner_id
self.localcontext.update({