Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
2 Răspunsuri
4189 Vizualizări

how to changes field types in BOM from one2many to float ?

Imagine profil
Abandonează
Cel mai bun răspuns

Hi,

You need to redefine the field to change the field type using inheritance. 

E.g. :
Original one2many field:

class mrp_bom(osv.osv):
    _name = 'mrp.bom'
    _description = 'Bill of Material'
    _columns = {
       'bom_lines': fields.one2many('mrp.bom', 'bom_id', 'BoM Lines'),
    }
mrp_bom()
Do the following to change the field type to float:
class mrp_bom(osv.osv):
    _name = 'mrp.bom' 
   _description = 'Bill of Material'
    _inherit='mrp.bom'
    _columns={
        'bom_lines': fields.float(''BoM Lines'),
    }
mrp_bom()
Hope this may help you.

Imagine profil
Abandonează
Autor Cel mai bun răspuns

error, i cant login, because error in mrp.login

in _inherit='mail.thread' should i change into _inherit='mrp.bom' ??

please help me

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
1
dec. 17
4548
2
aug. 24
2463
0
ian. 24
1232
3
sept. 23
2326
4
sept. 18
5020