[FIX]:*_view_ref should execute only if there is no view_id provided

bzr revid: nch@tinyerp.com-20100721133727-6kmwn65grzjrc4ig
This commit is contained in:
nch@tinyerp.com 2010-07-21 19:07:27 +05:30
parent 6fddac7e4a
commit 5023186293
1 changed files with 1 additions and 1 deletions

View File

@ -1542,7 +1542,7 @@ class orm_template(object):
sql_res = False
while ok:
view_ref = context.get(view_type + '_view_ref', False)
if view_ref:
if view_ref and not view_id:
if '.' in view_ref:
module, view_ref = view_ref.split('.', 1)
cr.execute("SELECT res_id FROM ir_model_data WHERE model='ir.ui.view' AND module=%s AND name=%s", (module, view_ref))