Skip to Content
Menú
This question has been flagged
2 Respostes
4713 Vistes

This code works perfectly:

prod_obj = self.env['product.template'] 
new_dict = product.read(list(set(prod_obj._fields)))

How to return only fields where state = manual?


Avatar
Descartar
Autor Best Answer

I'm getting error:

ValueError: Invalid field 'state' in leaf "<osv.ExtendedLeaf: ('state', '=', 'manual') on product_template (ctx: )>"

I add a custom field in ir.model.fields to product.template.

In model product.template i want create dict only from custom fields 




Avatar
Descartar
Best Answer

Hello Popeye,

Here you can use read_group() when you you want to apply domain.
self.env['product.template'].read_group([('state', '=', 'manual')], ['state'], ['state'])


Regards,




Email: odoo@aktivsoftware.com

Skype: kalpeshmaheshwari

   

Avatar
Descartar
Related Posts Respostes Vistes Activitat
2
de set. 21
5424
1
de jul. 19
2879
3
de set. 20
3024
3
de des. 19
2984
1
de nov. 19
4737