Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
1838 Vistas

We have a field that is defined like this on the product.template model: 

fields.Char(        string='MPN',        compute='_compute_mpn',        inverse='_inverse_mpn',        store=True,    )

And like this on the product.product model: 

fields.Char(string='MPN')

Now when I import this field, it doesn't show any errors but doesn't get imported either, the field stays blank. Is there anything special that needs to be done to make this import work? 

Avatar
Descartar
Mejor respuesta

Hi,

While importing the compute fields will not get Imported,

Instead, you can create a scheduled action to trigger the compute function manually like this to update the compute field in the imported records,


env['product.template'].search([])._compute_mpn()

Thanks

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
2
ene 24
2766
1
may 23
1727
2
abr 23
2625
8
ene 25
6432
1
abr 25
1238