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

Hay,

I do object inheritance with _name != _inherit like in second part of doc

class custom_material(osv.osv):
    _name = 'network.material'
    _inherit = 'network.material'
    _columns = {
        'manuf_warranty': fields.boolean('Manufacturer warranty?'),
    }
    _defaults = {
        'manuf_warranty': lambda *a: False,
    }
custom_material()

Have you a tip to create a custom material from a network material (by copying it ?)

Avatar
Descartar
Autor Mejor respuesta

I've found the solution : You can use result of copy_data method of network material class in create method of custom material

Avatar
Descartar

Hi. How can you do this?

Publicaciones relacionadas Respuestas Vistas Actividad
3
jul 18
3583
2
may 15
31917
0
ene 22
2524
2
jul 16
7804
1
jul 15
3605