Add partner_area_data and partner_area_management

This module was written to enter a location's area based on different units of measure
The information is dependant on the different locations entered
This commit is contained in:
Agathe Mollé
2015-04-21 17:10:24 -04:00
parent a7272f41ff
commit 242544df1b
16 changed files with 609 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="product_uom_categ_surface" model="product.uom.categ">
<field name="name">Surface</field>
</record>
<record id="product_uom_m2" model="product.uom">
<field name="name"></field>
<field name="category_id" eval="product_uom_categ_surface"/>
</record>
<record id="product_uom_feet2" model="product.uom">
<field name="name">feet²</field>
<field name="category_id" eval="product_uom_categ_surface"/>
</record>
</data>
</openerp>