跳至内容
菜单
此问题已终结
3 回复
3168 查看

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

 

 

形象
丢弃
最佳答案

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.

 

形象
丢弃
编写者

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.

最佳答案

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

形象
丢弃
编写者

Both are right, Thank You

编写者 最佳答案

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.

形象
丢弃