Skip to Content
Menú
This question has been flagged
1 Respondre
5998 Vistes

 i have age field in my student.student module,this is computed filed according to birthdate field 

but while searching in odoo its not showing because its computed field so i write below code for eneble searching for this field but its not working 

def _search_subscription(self, operator,value):

        a=[]

        b = self.env['student.student']

        for x in b.search([]):

            if x.age==value:

                a.append(x[0])

        return [('id', 'like' ,a)]


i want to return all field which age is like value,please give me solution...

Avatar
Descartar
Best Answer

just give the store=True attribute for age compute field, and you can search

Avatar
Descartar
Autor

@Hilar AK ,i know i can do by stored but, i want to do by function that's why i post,but now i got solution

Related Posts Respostes Vistes Activitat
1
de gen. 22
28931
1
de juny 18
15429
1
de març 18
4161
0
de març 18
2600
2
d’oct. 17
8474