1
我有一個樹視圖與many2many場require_weekday
:如何在Odoo中製作內聯樹許多領域看起來不錯?
<record model="ir.ui.view"
id="sale_order_email_collection_form">
<field name="name">sale.order_email.collection.form</field>
<field name="model">sale.order_email.collection</field>
<field name="arch" type="xml">
<form string="Collection">
<group>
<field name="name"/>
</group>
<field name="emails">
<tree string="Lines" editable="bottom">
<field name="required_weekday"/>
</tree>
</field>
</form>
</field>
</record>
當我點擊many2many領域它與一些藍色文本覆蓋在樹視圖使它不可能告訴這是怎麼回事基本無法使用。
是否有可能使其工作體面?