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

Hello All,

I want to add one field in side the sale order module by custom module how can I add?

Thanks in advance.

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

Prince,

Here you go!

#class file yourfile.py

#Example With APi.

from openerp import models, fields, api,

class sale_order(models.Model)

    _inherit = 'sale.order'

    your_field = fields.Char("Your Field Label")

    #instead Char you apply any type of field whatever you need from this field list you can use

    #Char,Integer,Date,Float,Many2one,One2many,Many2many,Related etc...

    #First later of each field type must be capital in odoo  v8. if you follow the v8 codding standard,

#Example Without Api (With v7 codding standard)

from openerp.osv import osv, fields

class sale_order(osv.Model)

    _inherit = 'sale.order'

    _columns = {

    'your_field':fields.char("Label of your Field", size=64),

}

#Now in xml file you can add this field by using xpath concept by inherting exsisting view.

Let me know if you face any difficuties on this.

Regards,

Anil.

 

 

 

 

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

just create a class in your customer module, and inside that class you inherit that sales order model. Then use of xpath create field in customer xml file.

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 6 25
643
1
thg 2 24
2832
1
thg 7 18
7013
1
thg 5 16
3552
1
thg 3 16
6163