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

Hi all,

Here i tried the following,

1.add a dropdown field for product category in sale oder line.

2.in that sale order line list the products respective to selected product category.

Please suggest any ideas

Thanks in advance.

Ảnh đại diện
Huỷ bỏ

can you post your code here, whatever you have tried so far.

Câu trả lời hay nhất

Hi,
you can use this method. you have to do things in the sale order line then you must inherit sale.order.line.

class SaleOrderLineExt(models.Model):
_inherit = 'sale.order.line'  

categ_id = fields.Many2one('product.category') 

@api.onchange('categ_id')
def _onchange_categ(self):
    return {'domain': {'product_id': [('categ_id', '=', self.categ_id.id)]}
I think this will help you, don't forget to add this category field in the UI.
Regard,
Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Make onchange for the product category.

select category then search product ids on the basis of category_id pass the domain of product ids in return result of onchange hope this will help you.

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

Is this code coorect  :

    @api.onchange('x_product_categories')

    def _show_list_of_products(self):

        for order in self:

            selected_category_id = order.x_product_categories

            product_id = fields.One2many('product.product' , domain=['category_id', '=','selected_category_id'])

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 3 15
3096
4
thg 8 25
2391
1
thg 1 25
3672
4
thg 2 24
12601
4
thg 12 22
9338