[IMP]lunch: Lunch configuration improvemnets

bzr revid: dbr@tinyerp.com-20120627110207-fmhxho2ij95d2jp8
This commit is contained in:
DBR (OpenERP) 2012-06-27 16:32:07 +05:30
parent 903080fbeb
commit 51b64aef01
1 changed files with 18 additions and 15 deletions

View File

@ -109,8 +109,10 @@
<field name="model">lunch.cashbox</field>
<field name="arch" type="xml">
<form string="Cashboxes" version="7.0">
<field name="name"/>
<field name="manager"/>
<group>
<field name="name"/>
<field name="manager"/>
</group>
</form>
</field>
</record>
@ -220,8 +222,9 @@
<field name="model">lunch.category</field>
<field name="arch" type="xml">
<form string="Category" version="7.0">
<separator string="Category Related to Products" colspan="4"/>
<group col="4">
<field name="name"/>
</group>
</form>
</field>
</record>
@ -254,18 +257,18 @@
<field name="model">lunch.product</field>
<field name="arch" type="xml">
<form string="Products" version="7.0">
<group col="6">
<field name="name"/>
<field name="category_id"/>
<field name="price" />
</group>
<notebook colspan="4">
<page string="General Information">
<field name="active"/>
<separator string="Description" colspan="4" />
<field name="description" nolabel="1" colspan="4" />
</page>
</notebook>
<group>
<group>
<field name="name"/>
<field name="category_id"/>
<field name="price" />
</group>
<group>
<field name="active"/>
</group>
<field name="description" placeholder="Add a description" nolabel="1"/>
</group>
</form>
</field>
</record>