Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
5 Răspunsuri
3938 Vizualizări

Hi,
I want to check database name in qweb template odoo 10, how I can get it, please help if anyone know.

Imagine profil
Abandonează

Hi Nalini,

in Which Qweb Template you need Database name ?

Autor

I have added 1 report for printing journal entry .. in that I want to fetch database name. But i don't know how we can get it in template.

Cel mai bun răspuns

Hello Nalini

You can try with following code in qweb report.

<t t-esc='doc.env.cr.dbname'/>

correct me if i am wrong !

Thank you 

Imagine profil
Abandonează
Autor

Yes it helped.. Thanks alot

Cel mai bun răspuns

Hi Nalini,

In Normal we can use this method for find database name

self.env.cr.dbname

for qweb replace self by request

 <t t-esc='request.env.cr.dbname'/>

Imagine profil
Abandonează
Autor

Thanks a lot.. it helped me..