Analytic lines, better view

bzr revid: fp@tinyerp.com-24fe5eea12d7b9f5307b7908c6b55e58e2ed8572
This commit is contained in:
Fabien Pinckaers 2007-08-08 11:13:46 +00:00
parent 69c3ef6567
commit fcd1b1d9af
1 changed files with 6 additions and 4 deletions

View File

@ -121,9 +121,11 @@
<tree string="Analytic Entries" editable="top">
<field name="date"/>
<field name="name" />
<field name="unit_amount" sum="Total quantity"/>
<field name="amount" sum="Total amount"/>
<field name="unit_amount" sum="Total quantity" on_change="on_change_unit_amount(product_id, unit_amount, product_uom_id)"/>
<field name="product_id" on_change="on_change_unit_amount(product_id, unit_amount, product_uom_id)"/>
<field name="account_id" domain="[('type','=','normal')]"/>
<field name="product_uom_id" on_change="on_change_unit_amount(product_id, unit_amount, product_uom_id)" invisible="True"/>
<field name="amount" sum="Total amount"/>
<field name="general_account_id"/>
<field name="journal_id"/>
<field name="ref"/>
@ -161,13 +163,13 @@
<form string="Project line">
<field name="name" />
<field name="account_id" />
<field name="account_id" />
<field name="date" />
<field name="journal_id" />
<field name="unit_amount" on_change="on_change_unit_amount(product_id, unit_amount, product_uom_id)" />
<field name="product_id" on_change="on_change_unit_amount(product_id, unit_amount, product_uom_id)" />
<field name="product_uom_id" on_change="on_change_unit_amount(product_id, unit_amount, product_uom_id)" />
<field name="amount" colspan="4" />
<field name="general_account_id" invisible="True"/>
<field name="amount" />
</form>
</field>
</record>