تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
3 الردود
3176 أدوات العرض

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.

الصورة الرمزية
إهمال