Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
1 Ответить
5996 Представления

 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...

Аватар
Отменить
Лучший ответ

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

Аватар
Отменить
Автор

@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 Ответы Просмотры Активность
1
янв. 22
28927
1
июн. 18
15426
1
мар. 18
4161
0
мар. 18
2599
2
окт. 17
8472