mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
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:
20
partner_area_data/data/partner_area_data.xml
Normal file
20
partner_area_data/data/partner_area_data.xml
Normal 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">m²</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>
|
||||
Reference in New Issue
Block a user