我試圖將新列(來自合作伙伴模型的字段)添加到報價樹視圖。這是在調試模式下原來的樹視圖如何在OpenERP 7的報價樹視圖中添加新列
<tree string="Quotation" fonts="bold:message_unread==True" colors="grey:state=='cancel';blue:state in ('waiting_date','manual');red:state in ('invoice_except','shipping_except')">
<field name="message_unread" invisible="1"/>
<field name="name" string="Quotation Number"/>
<field name="date_order"/>
<field name="partner_id"/>
<field name="user_id"/>
<field name="amount_total" sum="Total Tax Included"/>
<field name="state"/>
<field name="credit_limit"/>
</tree>
然後我試圖樹標籤但是它給Error occurred while validating the field(s) arch: Invalid XML for View Architecture!
內加入<field name="credit_limit">
。
任何想法如何實現?
分享您的全部代碼。根據給定的信息,我們無法瞭解哪個對象的視圖被修改。 –
更新了額外的信息。 – abiieez
我正在做上述操作而不觸及任何源代碼。一切都通過OpenERP配置完成。 – abiieez