<?xml version="1.0" ?>
<openerp>
<data>
<record model="ir.module.category" id="module_lunch_category">
<field name="name">Lunch</field>
<field name="description">Helps you handle your lunch needs, if you are a manager you will be able to create new products, cashmoves and to confirm or cancel orders.</field>
<field name="sequence">16</field>
</record>
<record id="group_lunch_user" model="res.groups">
<field name="name">User</field>
<field name="category_id" ref="module_lunch_category"/>
</record>
<record id="group_lunch_manager" model="res.groups">
<field name="name">Manager</field>
<field name="implied_ids" eval="[(4, ref('group_lunch_user'))]"/>
<field name="category_id" ref="module_lunch_category"/>
<field name="users" eval="[(4, ref('base.user_root'))]"/>
</record>
</data>
</openerp>
我現在堅持了安全處理,以我的application.its代碼顯示hereOpenERP的第7版 - 爲交代的security.xml
我指的文檔也爲澄清上述XML代碼。但我沒有在documentation.i版本7中得到很好的解釋。我需要在下面的章節中進行說明。請諮詢我得到明確的想法吧
請解釋
ir.module.category手段?
<record model="ir.module.category" id="module_lunch_category">
model =「res.groups」是指。
<record id="group_lunch_user" model="res.groups">
需要澄清以下全行
<field name="implied_ids" eval="[(4, ref('group_lunch_user'))]"/>
非常感謝我的朋友......我在Twitter上回復您的答案:-) – 2013-04-12 08:15:23