Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
3897 Lượt xem

i am learning module creation but stuck at a point. can some buddy help me out. odoo is saying syntax error at line 8. mean on title field

#this is teting learning module

# coding: utf-8

from openerp import models,fields, osv

class book(models.Model):

_name="book.book"

_description="simple book"

_coloumn={

title = fields.Char(string='Title', required=True)

desc = fields.text("Description"),

author = fields.char(string="Author", size=30, required=True)

}

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hello Ahmed,


_coloumn spell is wrong.

Try this :-

Old api :-

from openerp import models,fields, osv

class book(models.Model):

    _name="book.book"

    _description="simple book"

    _columns = {

        'title' : fields.char(string='Title', required=True),

        'desc': fields.text("Description"),

        'author': fields.char(string="Author", size=30, required=True),

    }


New Api :-

from openerp import models,fields, osv

class book(models.Model):

    _name="book.book"

    _description="simple book" 

       

    title =  fields.Char(string='Title', required=True)

    desc = fields.Text("Description")

    author =  fields.Char(string="Author", size=30, required=True)

 

Hope this useful to you.

Thanks,

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
5
thg 4 19
5708
1
thg 3 15
8524
new module? Đã xử lý
10
thg 5 20
4477
6
thg 7 18
11573
3
thg 4 17
10079