2014-09-19 33 views
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領域它與一些藍色文本覆蓋在樹視圖使它不可能告訴這是怎麼回事基本無法使用。

enter image description here

是否有可能使其工作體面?

回答

5

可以在XML插件使用= 「many2many_tags」。例如: :

<field name="fields_name" widget="many2many_tags"/> 
1

您可以在xml中使用widget="one2many"

這將根據需要將many2many窗體視圖更改爲one2many

例如:

<field name="your_many2many_field" widget="one2many"> 
    <tree string="your string" editable="top/bottom"> 
     <field name="your_fields"/>#Define all your fields for tree view 
    </tree> 
</field?