[FIX] report_task : report_task_user_pipeline_open was having no uniqueness

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

bzr revid: jvo@tinyerp.com-20090821134648-h2uf22ewnewsw5n3
This commit is contained in:
SME(Tiny/Axelor) 2009-08-21 19:16:48 +05:30 committed by Jay (Open ERP)
parent 9631c6faea
commit 4aeb42972d
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class report_task_user_pipeline_open (osv.osv):
cr.execute('''
create or replace view report_task_user_pipeline_open as (
select
u.id as id,
min(t.id) as id,
u.id as user_id,
u.company_id as company_id,
count(t.*) as task_nbr,