Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
4374 Visualizzazioni

Im trying to create a store procedure at module install by

__openerp_.py:

 ...

   'data': [

"data/activity_period_team_sp.sql",

...

and on data/activity_period_team_sp.sql file:

create or replace function select_activity_by_period_team(from_date date, to_date date,team_id int)

RETURNS TABLE(

id int,

name varchar,

full_date date,

semana float8,

fecha text,

descripcion text,

iniciativas bigint,

oportunidades bigint,

llamadas bigint,

cotizaciones bigint,

montos numeric

)

LANGUAGE sql AS

$$

SELECT u.id,

p.name,

dats.date as full_date,

...

So the log error says:

 File "/home/carlos/odoo8/source/odoo/openerp/sql_db.py", line 234, in execute

res = self._obj.execute(query, params)

ProgrammingError: unterminated dollar-quoted string at or near "$$ ...

If i run my sql statement on psql it works but if i try to doit by odoo dont

Some one has succeed on this?

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
4
apr 23
11412
0
giu 16
4487
1
mar 15
4300
3
lug 25
1990
3
mag 25
3471