0
我在odoo10中有一個選擇字段和另一個many2one字段。我希望當我從選擇類型字段中只選擇「服務」,然後在窗體視圖中顯示另一個many2one字段。在這裏我附上我的python和xml代碼。僅當特定字段被選中時字段的可見性
Python代碼: -
service_types = fields.Selection([('product', ('Product')),('service', ('Service'))], string='Services', required=True),
name_rental = fields.Many2one('rental.pet', string="Rental Management")
XML代碼: -
<field name="service_types"/>
<field name="name_rental" attrs="{'invisible': [('service_types', '!=', 'service')]}"/>
看起來像應該對我有用。你看到什麼問題? – alexbclay
是的,它的工作,但你能告訴我,如何選擇'服務'選項時如何顯示完整的表單(rental.pet)在嚮導中。 –