Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
2 Replies
2535 Tampilan

Need help
I am using odoo 10. in module lunch I would like when click to select order, I want to get product from sales and not only product from lunch or product created in lunch to appear also in product of sales. anyone can help?

Avatar
Buang
Penulis Jawaban Terbai

I changed

product_id = fields.Many2one('lunch.product''Product'required=True)

by this

product_id = fields.Many2one('product.product''Product'required=True)

but no effect after I updated my module getting Internal server error

Avatar
Buang
Jawaban Terbai

Hi,

in the lunch module the product form is created separately does not inherit module product

if you want to change that you have to change this line: (\addons\\lunch\models/lunch.py)

product_id = fields.Many2one('lunch.product', 'Product', required=True)

by this

product_id = fields.Many2one('product.product', 'Product', required=True)


Avatar
Buang