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:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- Project
- MRP
لقد تم الإبلاغ عن هذا السؤال
2
الردود
1572
أدوات العرض
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)]")
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيل
See dependent dropdown (many2one): https://goo.gl/CBP9og