Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
3 Odpowiedzi
3173 Widoki

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

 

 

Awatar
Odrzuć
Najlepsza odpowiedź

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.

 

Awatar
Odrzuć
Autor

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.

Najlepsza odpowiedź

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

Awatar
Odrzuć
Autor

Both are right, Thank You

Autor Najlepsza odpowiedź

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.

Awatar
Odrzuć