How to make product invisible in next line, if product is already selected in previous line of one2Many..????
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
2
Trả lời
1565
Lượt xem
I think you need an @api.onchange function that returns a domain for the Many2one field. Sometthing like that:
@api.onchange('o2m_field')
def onchange_attack(self):
result = {
'domain': {'m2o_field': [('id', 'not in', self.one2many_field.ids)], },
}
And you also can use this domain in the field:
m2o_field = fields.Many2one('module.model' domain="[('id', 'not in', o2m_field)]")
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng ký
See dependent dropdown (many2one): https://goo.gl/CBP9og