[FIX] no cost at reception

bzr revid: fp@tinyerp.com-20111230110604-29fr2n3t1n77ztp0
This commit is contained in:
Fabien Pinckaers 2011-12-30 12:06:04 +01:00
parent e8be384f70
commit 23e490adfe
2 changed files with 7 additions and 5 deletions

View File

@ -47,7 +47,6 @@
<field eval="0" name="parent_id"/>
<field name="type">view</field>
<field name="user_type" ref="data_account_type_view"/>
<field name="complete_tax_set" eval="False"/>
</record>
<!-- Balance Sheet -->
@ -383,6 +382,7 @@
<field name="property_account_income_opening" ref="conf_o_income"/>
<field name="property_account_expense_opening" ref="conf_o_expense"/>
<field name="property_reserve_and_surplus_account" ref="conf_a_reserve_and_surplus"/>
<field name="complete_tax_set" eval="False"/>
</record>
<!-- VAT Codes -->

View File

@ -24,9 +24,10 @@
<field name="product_uom" />
<field name="tracking" invisible="1"/>
<field name="prodlot_id" domain="[('product_id', '=', product_id)]" invisible="context.get('hide_tracking',False)" attrs="{'required':[('tracking','=',True)]}"/>
<!-- Removed as this feature is not logic: price must be updated upon reception of invoice -->
<field name="update_cost" invisible="1"/>
<field name="cost" attrs="{'invisible': [('update_cost','=', False)]}"/>
<field name="currency" attrs="{'invisible': [('update_cost','=', False)]}"/>
<field name="cost" invisible="1"/>
<field name="currency" invisible="1"/>
</tree>
</field>
<separator string="" colspan="4" />
@ -50,9 +51,10 @@
<field name="product_uom" />
<field name="tracking" invisible="1"/>
<field name="prodlot_id" domain="[('product_id', '=', product_id)]" attrs="{'required':[('tracking','=',True)]}" groups="base.group_extended" />
<!-- Removed as this feature is not logic: price must be updated upon reception of invoice -->
<field name="update_cost" invisible="1"/>
<field name="cost" attrs="{'invisible': [('update_cost','=', False)]}"/>
<field name="currency" attrs="{'invisible': [('update_cost','=', False)]}"/>
<field name="cost" invisible="1"/>
<field name="currency" invisible="1"/>
</tree>
</field>
</record>