Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
1 Vastaa
4059 Näkymät

Hello everybody!!!

I am working with qweb to print a report.

So, i have a field in which i get the date of the day:

Here is my python:

            'get_date_print': self.get_date_print,

and the function is:

    def get_date_print(self, context=None):

res_list=[]

res_list = datetime.now().strftime('%d-%m-%Y')

return res_list


in the qweb i have this:

<p style="float:left;text-align: left;">

<strong>Date de Jour:

<span t-esc="get_date_print()"/>

</strong>

</p>

the problem is that i get this error:

get_date_print: object is not callable.

How can i please resolve this problem.

Can anyone help.

Thanks a lot in advance.

Avatar
Hylkää
Paras vastaus

Drees,

Please use your object reference to call that method as,

<span t-esc="o.get_date_print()"/>, here 'o' is the reference to the object,

Hope it help!

Avatar
Hylkää
Aiheeseen liittyviä artikkeleita Vastaukset Näkymät Toimenpide
2
heinäk. 23
6293
1
kesäk. 23
4319
1
huhtik. 23
5040
1
marrask. 22
3752
1
lokak. 21
12076