[REM] Remove useless colspan="1" on labels in order to be compatible with web client's heuristic for label vs paragraph detection

bzr revid: fme@openerp.com-20110908082959-vb2pcrsuuz43vxqi
This commit is contained in:
Fabien Meghazi 2011-09-08 10:29:59 +02:00
parent e13a97446a
commit 5b223f5961
1 changed files with 7 additions and 7 deletions

View File

@ -493,13 +493,13 @@
<separator string="How do you generate your costumer invoice ?"/>
</group>
<group colspan="8" col="2">
<label align="0.0" string="Based on Sales Orders" width="200" colspan="1"/>
<label align="0.0" string="Based on Sales Orders" width="200"/>
<field name="sale_orders" on_change="onchange_order(sale_orders,deli_orders)" nolabel="1"/>
<label align="0.0" string="Based on Delivery Orders" width="200" colspan="1"/>
<label align="0.0" string="Based on Delivery Orders" width="200"/>
<field name="deli_orders" on_change="onchange_order(sale_orders,deli_orders)" nolabel="1"/>
<label align="0.0" string="Based on Task's Work" width="200" colspan="1"/>
<label align="0.0" string="Based on Task's Work" width="200"/>
<field name="task_work" nolabel="1"/>
<label align="0.0" string="Based on Timesheet" width="200" colspan="1"/>
<label align="0.0" string="Based on Timesheet" width="200"/>
<field name="timesheet" nolabel="1"/>
</group>
<group colspan="8">
@ -507,15 +507,15 @@
</group>
<group colspan="8">
<group colspan="4" col="2" attrs="{'invisible':['|',('sale_orders','!=',True),('deli_orders','!=',True)]}">
<label align="0.0" string="Main Method Based On" width="200" colspan="1"/>
<label align="0.0" string="Main Method Based On" width="200"/>
<field name="order_policy" nolabel="1"/>
</group>
<group colspan="4" col="2" attrs="{'invisible':[('sale_orders','!=',True), ('deli_orders','!=',True)]}">
<label align="0.0" string="Do you charge the delivery" width="200" colspan="1"/>
<label align="0.0" string="Do you charge the delivery" width="200"/>
<field name="charge_delivery" nolabel="1"/>
</group>
<group colspan="4" col="2" attrs="{'invisible':[('task_work','=',False),('timesheet','=',False)]}">
<label align="0.0" string="Main Working Time Unit" width="200" colspan="1"/>
<label align="0.0" string="Main Working Time Unit" width="200"/>
<field name="time_unit" widget="selection" domain="[('category_id','=',3)]" nolabel="1"/>
</group>
</group>