[FIX] event: event report registration, replace char by varchar in the view, so it...
authorDenis Ledoux <dle@openerp.com>
Mon, 10 Mar 2014 11:35:57 +0000 (12:35 +0100)
committerDenis Ledoux <dle@openerp.com>
Mon, 10 Mar 2014 11:35:57 +0000 (12:35 +0100)
bzr revid: dle@openerp.com-20140310113557-rbohomzy8xrvwk05

addons/event/report/report_event_registration.py

index 481b86f..595d394 100644 (file)
@@ -58,7 +58,7 @@ class report_event_registration(osv.osv):
         # TOFIX this request won't select events that have no registration
         cr.execute(""" CREATE VIEW report_event_registration AS (
             SELECT
-                e.id::char || '/' || coalesce(r.id::char,'') AS id,
+                e.id::varchar || '/' || coalesce(r.id::varchar,'') AS id,
                 e.id AS event_id,
                 e.user_id AS user_id,
                 r.user_id AS user_id_registration,