This question has been flagged
3 Replies
2808 Views

Hello everyone:

Why show me the following error in the following code?

from openerp import models, fields

class silkworm_sale_order(models.Model):
    
    _inherit = 'sale.order'
        
    _columns = {
    x_daterequired: fields.Date(string='Date Required'),
    x_rush: fields.boolean('Rush Order')

}
silkworm_sale_order()

NameError: name 'x_daterequired' is not defined

 

Thanks

 

 

Avatar
Discard
Best Answer

Hi,

You have mix two different coding style.

In this you have import 

from openerp import models, fields

and make new class with "models.Model". All this code is new (Odoo V8) style. But you were define column is of old style. So, you just need to change as like below.

from openerp import models, fields

class silkworm_sale_order(models.Model):
    
    _inherit = 'sale.order'

    x_daterequired: fields.Date(string='Date Required'),
    x_rush: fields.Boolean('Rush Order')

I hope now you will get what you want.

 

Avatar
Discard
Author

Hello Empiro, thx, Yesterday I could fix this error, but look, you put that code, not working: Would the error that __name prpiedad missing. Best regard.

Best Answer

Hi,

@Emipro is right at the theoratical level. But the mentioned code have syntax error. The code should be something like.

No need to put __name.

class silkworm_sale_order(models.Model):
    
    _inherit = 'sale.order'

    x_daterequired = fields.Date(string='Date Required')
    x_rush = fields.Boolean('Rush Order')

I hope this will work for you.

Feel free to contact : hardikgiri.goswami@gmail.com

Avatar
Discard
Author

Both are right, Thank You

Author Best Answer

Hello Empiro,

thx,

Yesterday I could fix this error, but look, you put that code, not working:

Would the error that __name prpiedad missing.


Best regard.

Avatar
Discard