← Back to team overview

savoirfairelinux-openerp team mailing list archive

[Merge] lp:~atin81/product-extra-addons/product-multi-variant into lp:product-extra-addons

 

Agustín has proposed merging lp:~atin81/product-extra-addons/product-multi-variant into lp:product-extra-addons.

Requested reviews:
  extra-addons-commiter (extra-addons-commiter)

For more details, see:
https://code.launchpad.net/~atin81/product-extra-addons/product-multi-variant/+merge/150864

Ported module product_multi_variant for work with openerp version 7
-- 
https://code.launchpad.net/~atin81/product-extra-addons/product-multi-variant/+merge/150864
Your team extra-addons-commiter is requested to review the proposed merge of lp:~atin81/product-extra-addons/product-multi-variant into lp:product-extra-addons.
=== added directory 'product_multi_variant'
=== added file 'product_multi_variant/__init__.py'
--- product_multi_variant/__init__.py	1970-01-01 00:00:00 +0000
+++ product_multi_variant/__init__.py	2013-02-27 17:36:20 +0000
@@ -0,0 +1,26 @@
+# -*- encoding: utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution	
+#    Copyright (C) 2004-2008 Tiny SPRL (<http://tiny.be>). All Rights Reserved
+#    $Id$
+#
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU General Public License as published by
+#    the Free Software Foundation, either version 3 of the License, or
+#    (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
+import product_variant
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
+

=== added file 'product_multi_variant/__openerp__.py'
--- product_multi_variant/__openerp__.py	1970-01-01 00:00:00 +0000
+++ product_multi_variant/__openerp__.py	2013-02-27 17:36:20 +0000
@@ -0,0 +1,75 @@
+# -*- encoding: utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution	
+#    Copyright (C) 2004-2008 Tiny SPRL (<http://tiny.be>). All Rights Reserved
+#    $Id$
+#
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU General Public License as published by
+#    the Free Software Foundation, either version 3 of the License, or
+#    (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+{
+    "name" : "Products with multi-level variants",
+    "version" : "1.0",
+    "author" : "Tiny, Akretion",
+    "category" : "Generic Modules/Inventory Control",
+    "description":"""
+Multi-axial varianted product support for OpenERP
+=================================================
+
+OpenERP is already supporting a product variants at the core level. But
+without this module, variants are only mono-axial. OpenERP indeed uses the product.template
+as the model object and the product.variant as the instance variant.
+Using this module, you can now easily deal with multi-axial variants.
+
+A product.template, now has a set of dimensions (like Color, Size, anything you want).
+For each dimension, a product.template has a set of dimension values (like Red, Green
+for the Color dimension). For each dimension, you can accept or not custom dimension
+values. Dimensions can be shared between products.
+
+Once the product.template is set up, you can use a 'generator' button that will populate
+the space of the variants. You could also choose to populate only some combinations
+by hand instead.
+
+Each variant can have an extra price that will be taken into account when computing
+the base listed price. Yet to be implemented: a price extra per variant dimension value.
+Finally, this module is better used along with the product_variant_configurator which
+will help the salesman selecting the appropriate variant in the sale order line
+using dimension criteria instead of having to crawl the full space of variants.
+The selection can also be done by name if a proper naming convention is adopted.
+
+Gotchas:
+Because many OpenERP reports refer only to the product name without taking care of the
+variant, we decided it's better that each variant has a different name expliciting
+the variant specifics. So we override the product.template#name field and make it
+optional while product.product now has a new mandatory name field. This is usualy
+transparent as OpenERP modules try to get their properties like name from product.product
+and only from product.template if not found on product.product. But at least you
+will have been warned.
+
+The dependence to the stock module is weak, it's only there to be able to put the
+variant menu in the warehouse management sub-menu (sigh!).
+    """,
+    "depends" : ["product", "stock"],
+    "init_xml" : [],
+    "demo_xml" : ["demo_data.xml"],
+    "update_xml" : [
+        "security/ir.model.access.csv",
+        "product_view.xml",
+    ],
+    "active": False,
+    "installable": True
+}
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
+

=== added file 'product_multi_variant/demo_data.xml'
--- product_multi_variant/demo_data.xml	1970-01-01 00:00:00 +0000
+++ product_multi_variant/demo_data.xml	2013-02-27 17:36:20 +0000
@@ -0,0 +1,84 @@
+<?xml version="1.0" ?>
+<openerp>
+
+    <data noupdate="1">
+<!--
+        <record id="product_template_mezzanine" model="product.template">
+            <field eval="1.0" name="list_price"/>
+            <field eval="1.0" name="standard_price"/>
+            <field eval="&quot;&quot;&quot;fixed&quot;&quot;&quot;" name="mes_type"/>
+            <field name="uom_id" ref="product.product_uom_unit"/>
+            <field eval="1.0" name="uos_coeff"/>
+            <field eval="1" name="sale_ok"/>
+            <field eval="1" name="purchase_ok"/>
+            <field name="company_id" ref="base.main_company"/>
+            <field name="uom_po_id" ref="product.product_uom_unit"/>
+            <field eval="&quot;&quot;&quot;product&quot;&quot;&quot;" name="type"/>
+            <field eval="&quot;&quot;&quot;Mezzanine&quot;&quot;&quot;" name="name"/>
+            <field name="cost_method">standard</field>
+            <field name="supply_method">produce</field>
+            <field name="procure_method">make_to_order</field>
+            <field eval="0" name="rental"/>
+            <field eval="7.0" name="sale_delay"/>
+            <field name="categ_id" ref="product.cat1"/>
+            <field eval="1.0" name="produce_delay"/>
+        </record>
+        <record id="product_variant_dimension_type_hauteur0" model="product.variant.dimension.type">
+            <field name="product_tmpl_id" ref="product_template_mezzanine"/>
+            <field eval="1" name="allow_custom_value"/>
+            <field eval="&quot;&quot;&quot;Hauteur&quot;&quot;&quot;" name="name"/>
+            <field eval="0" name="sequence"/>
+        </record>
+        <record id="product_variant_dimension_type_largeur0" model="product.variant.dimension.type">
+            <field name="product_tmpl_id" ref="product_template_mezzanine"/>
+            <field eval="1" name="allow_custom_value"/>
+            <field eval="&quot;&quot;&quot;Largeur&quot;&quot;&quot;" name="name"/>
+            <field eval="1" name="sequence"/>
+        </record>
+        <record id="product_variant_dimension_value_0" model="product.variant.dimension.value">
+            <field eval="&quot;&quot;&quot;10&quot;&quot;&quot;" name="name"/>
+            <field name="dimension_id" ref="product_variant_dimension_type_hauteur0"/>
+            <field model="product.template" name="product_tmpl_id" search="[('name','=','Mezzanine')]"/>
+        </record>
+        <record id="product_variant_dimension_value_1" model="product.variant.dimension.value">
+            <field eval="&quot;&quot;&quot;20&quot;&quot;&quot;" name="name"/>
+            <field name="dimension_id" ref="product_variant_dimension_type_hauteur0"/>
+            <field model="product.template" name="product_tmpl_id" search="[('name','=','Mezzanine')]"/>
+        </record>
+
+        <record id="product_variant_dimension_value_2" model="product.variant.dimension.value">
+            <field eval="&quot;&quot;&quot;22&quot;&quot;&quot;" name="name"/>
+            <field name="dimension_id" ref="product_variant_dimension_type_largeur0"/>
+            <field eval="1.0" name="dimension_sequence"/>
+            <field model="product.template" name="product_tmpl_id" search="[('name','=','Mezzanine')]"/>
+        </record>
+        <record id="product_variant_dimension_value_3" model="product.variant.dimension.value">
+            <field eval="&quot;&quot;&quot;33&quot;&quot;&quot;" name="name"/>
+            <field name="dimension_id" ref="product_variant_dimension_type_largeur0"/>
+            <field eval="1.0" name="dimension_sequence"/>
+            <field model="product.template" name="product_tmpl_id" search="[('name','=','Mezzanine')]"/>
+        </record>
+
+        <record id="product_product_mezzanine0" model="product.product">
+            <field eval="1" name="active"/>
+            <field name="product_tmpl_id" ref="product_template_mezzanine"/>
+            <field eval="[(6,0,[ref('product_variant_dimension_value_0'),ref('product_variant_dimension_value_2')])]" name="dimension_value_ids"/>
+        </record>
+        <record id="product_product_mezzanine1" model="product.product">
+            <field eval="1" name="active"/>
+            <field name="product_tmpl_id" ref="product_template_mezzanine"/>
+            <field eval="[(6,0,[ref('product_variant_dimension_value_0'),ref('product_variant_dimension_value_3')])]" name="dimension_value_ids"/>
+        </record>
+        <record id="product_product_mezzanine2" model="product.product">
+            <field eval="1" name="active"/>
+            <field name="product_tmpl_id" ref="product_template_mezzanine"/>
+            <field eval="[(6,0,[ref('product_variant_dimension_value_1'),ref('product_variant_dimension_value_2')])]" name="dimension_value_ids"/>
+        </record>
+        <record id="product_product_mezzanine3" model="product.product">
+            <field eval="1" name="active"/>
+            <field name="product_tmpl_id" ref="product_template_mezzanine"/>
+            <field eval="[(6,0,[ref('product_variant_dimension_value_1'),ref('product_variant_dimension_value_3')])]" name="dimension_value_ids"/>
+        </record>
+-->
+    </data>
+</openerp>

=== added directory 'product_multi_variant/i18n'
=== added file 'product_multi_variant/i18n/ca.po'
--- product_multi_variant/i18n/ca.po	1970-01-01 00:00:00 +0000
+++ product_multi_variant/i18n/ca.po	2013-02-27 17:36:20 +0000
@@ -0,0 +1,335 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+# 	* product_variant_multi
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: OpenERP Server 5.0.15\n"
+"Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
+"POT-Creation-Date: 2011-01-19 17:00+0000\n"
+"PO-Revision-Date: 2011-02-01 19:28+0000\n"
+"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
+"<jesteve@xxxxxxxxxxxxxxx>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2012-12-05 05:40+0000\n"
+"X-Generator: Launchpad (build 16335)\n"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_extra:0
+msgid "Sale Price Extra"
+msgstr "Preu de venda extra"
+
+#. module: product_variant_multi
+#: constraint:ir.model:0
+msgid ""
+"The Object name must start with x_ and not contain any special character !"
+msgstr ""
+"El nom de l'objecte deu començar amb x_ i no ha de contenir cap caràcter "
+"especial!"
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Generate ->"
+msgstr "Genera ->"
+
+#. module: product_variant_multi
+#: field:product.product,cost_price_extra:0
+msgid "Purchase Extra Cost"
+msgstr "Cost extra de compra"
+
+#. module: product_variant_multi
+#: field:product.template,is_multi_variants:0
+msgid "Is Multi Variants?"
+msgstr "És multi variant?"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,dimension_sequence:0
+msgid "Related Dimension Sequence"
+msgstr "Seqüència de dimensió relacionada"
+
+#. module: product_variant_multi
+#: help:product.template,code_generator:0
+msgid ""
+"enter the model for the product code, all parameter between [_o.my_field_] "
+"will be replace by the product field. Example product_code model : "
+"prefix_[_o.variants_]_suffixe ==> result : prefix_2S2T_suffix"
+msgstr ""
+"Introduïu el model per al codi del producte, tots els paràmetres entre "
+"[_o.meu_camp_] se substituiran pel camp del producte. Exemple de model per "
+"al codi de producte: prefix_[_o.variants_]_sufix ==> Resultat: "
+"prefix_2S2T_sufix"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,allow_custom_value:0
+msgid "Allow Custom Value"
+msgstr "Permet valor personalitzat"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,sequence:0
+msgid ""
+"The product 'variants' code will use this to order the dimension values"
+msgstr ""
+"El codi de variants del producte usarà aquesta seqüència per ordenar els "
+"valors de la dimensió."
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Build Code ->"
+msgstr "Calcula codis ->"
+
+#. module: product_variant_multi
+#: constraint:ir.actions.act_window:0
+msgid "Invalid model name in the action definition."
+msgstr "Nom de model no vàlid a la definició de l'acció."
+
+#. module: product_variant_multi
+#: view:product.product:0
+#: field:product.product,dimension_value_ids:0
+msgid "Dimensions"
+msgstr "Dimensions"
+
+#. module: product_variant_multi
+#: field:product.template,dimension_type_ids:0
+#: view:product.variant.dimension.type:0
+msgid "Dimension Types"
+msgstr "Tipus de dimensió"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Template Sale Price"
+msgstr "Preu de venda de la plantilla"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,description:0
+msgid "Description"
+msgstr "Descripció"
+
+#. module: product_variant_multi
+#: field:product.template,code_generator:0
+msgid "Code Generator"
+msgstr "Generador de codi"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,mandatory_dimension:0
+msgid ""
+"If false, variant products will be created with and without this dimension"
+msgstr ""
+"Si es fals, es crearan variants de productes amb i sense aquesta dimensió."
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_margin:0
+msgid "Sale Price Margin"
+msgstr "Marge preu de venta"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,mandatory_dimension:0
+msgid "Mandatory Dimension"
+msgstr "Dimensió obligatòria"
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name:0
+msgid ""
+"[NAME] will be replaced by the name of the dimension and [VALUE] by is "
+"value. Example of Variant Model Name : \"[NAME] - [VALUE]\""
+msgstr ""
+"Es substituirà [NAME] pel nom de la dimensió i [VALUE] pel valor. Exemple de "
+"model per al nom de la variant: \"[NAME] - [VALUE] \""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type_form
+msgid "Types"
+msgstr "Tipus"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,variant_ids:0
+msgid "Variants"
+msgstr "Variants"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_variant
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant
+msgid "Product Variants"
+msgstr "Variants de producte"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,value_ids:0
+msgid "Dimension Values"
+msgstr "Valors de dimensió"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension_types
+msgid "Dimension types"
+msgstr "Tipus de dimensió"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,allow_custom_value:0
+msgid "If true, custom values can be entered in the product configurator"
+msgstr ""
+"Si es cert, podeu introduir els valors personalitzats en el configurador de "
+"producte."
+
+#. module: product_variant_multi
+#: constraint:ir.ui.view:0
+msgid "Invalid XML for View Architecture!"
+msgstr "XML no vàlid per a l'arquitectura de la vista!"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Product Variant"
+msgstr "Variant de producte"
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name_separator:0
+msgid "Variant Model Name Separator"
+msgstr "Separador del model per al nom de variant"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+#: view:product.variant.dimension.value:0
+msgid "Variant Value"
+msgstr "Valor de variant"
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_value
+#: field:product.variant.dimension.option,name:0
+msgid "Dimension Value"
+msgstr "Valor de dimensió"
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_template
+#: field:product.variant.dimension.type,product_tmpl_id:0
+#: field:product.variant.dimension.value,product_tmpl_id:0
+msgid "Product Template"
+msgstr "Plantilla de producte"
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name:0
+msgid "Variant Model Name"
+msgstr "Model per al nom de variant"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_value_form
+msgid "Values"
+msgstr "Valors"
+
+#. module: product_variant_multi
+#: model:ir.module.module,shortdesc:product_variant_multi.module_meta_information
+msgid "Products with multi-level variants"
+msgstr "Productes amb variants multi-nivell"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,name:0
+msgid "Dimension"
+msgstr "Dimensió"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+msgid "Variant Type"
+msgstr "Tipus de variant"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_template
+#: model:ir.ui.menu,name:product_variant_multi.menu_template
+msgid "Product Templates"
+msgstr "Plantilles de producte"
+
+#. module: product_variant_multi
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension
+msgid "Variant Dimensions"
+msgstr "Dimensions de variant"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.option,sequence:0
+#: field:product.variant.dimension.type,sequence:0
+#: field:product.variant.dimension.value,sequence:0
+msgid "Sequence"
+msgstr "Seqüència"
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name_separator:0
+msgid "Add a separator between the elements of the variant name"
+msgstr "Afegeix un separador entre els elements del nom de la variant."
+
+#. module: product_variant_multi
+#: model:ir.module.module,description:product_variant_multi.module_meta_information
+msgid ""
+"OpenERP is already supporting a product variants at the core level. But\n"
+"without this module, variants are only mono-axial. OpenERP indeed uses the "
+"product.tempate\n"
+"as the model object and the product.variant as the instance variant.\n"
+"Using this module, you can now easily deal with multi-axial variants.\n"
+"A product.template, now has a set of dimensions (like Color, Size, anything "
+"you want).\n"
+"For each dimension, a product.template has a set of dimension values (like "
+"Red, Green\n"
+"for the Color dimension). For each dimension, you can accept or not custom "
+"dimension\n"
+"values. The sale interface product configurator will take it into account.\n"
+"Once the product.template is set up, you can use a 'generator' button that "
+"will populate\n"
+"the space of the variants. You could also choose to populate only some "
+"combinations\n"
+"by hand instead.\n"
+"Each variant can have an extra price that will be taken into account when "
+"computing\n"
+"the base listed price. Yet to be implemented: a price extra per variant "
+"dimension value.\n"
+"Finally, this module is better used along with the "
+"product_variant_configurator which\n"
+"will help the salesman selecting the appropriate variant in the sale order "
+"line\n"
+"using dimension criteria instead of having to crawl the full space of "
+"variants.\n"
+"    "
+msgstr ""
+"OpenERP suporta variants de producte a nivell bàsic. Però sense aquest "
+"mòdul,\n"
+"les variants són només monoaxials.  De fet, OpenERP utilitza l'objecte "
+"product.tempate\n"
+"com el producte base i l'objecte product.variant com la variant del "
+"producte.\n"
+"L'ús d'aquest mòdul permet tractar fàcilment variants multiaxials.\n"
+"product.template ara conté un conjunt de dimensions (com color, grandària, o "
+"el que es vulgui).\n"
+"Per a cada dimensió, product.template conté un conjunt de valors de dimensió "
+"(com el vermell, o el verd \n"
+"per a la dimensió color). Per a cada dimensió, podeu acceptar o no valors de "
+"dimensió\n"
+"personalitzats. El configurador de producte de la interfície de venda ho "
+"tindrà en compte.\n"
+"Una cop que product.template estigui configurat, es pot utilitzar el botó "
+"'Genera' que omplirà\n"
+"totes les combinacions de variants. També es pot optar per omplir manualment "
+"només algunes\n"
+"combinacions.\n"
+"Cada variant pot tenir un preu addicional que es tindrà en compte al "
+"calcular el preu\n"
+"base de venda. Encara per implementar: el preu extra per valor de dimensió "
+"de variant.\n"
+"Per últim, és millor utilitzar aquest mòdul juntament amb el mòdul "
+"product_variant_configurator donat que\n"
+"ajudarà al venedor a seleccionar la variant apropiada en la línia de comanda "
+"de venda\n"
+"utilitzant criteris de dimensió en comptes d'haver de cercar en totes les "
+"combinacions de variants.\n"
+"    "
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_type
+#: field:product.variant.dimension.option,dimension_id:0
+#: field:product.variant.dimension.value,dimension_id:0
+msgid "Dimension Type"
+msgstr "Tipus de dimensió"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Price"
+msgstr "Preu"

=== added file 'product_multi_variant/i18n/de.po'
--- product_multi_variant/i18n/de.po	1970-01-01 00:00:00 +0000
+++ product_multi_variant/i18n/de.po	2013-02-27 17:36:20 +0000
@@ -0,0 +1,291 @@
+# German translation for openobject-addons
+# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
+# This file is distributed under the same license as the openobject-addons package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-addons\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-01-19 17:00+0000\n"
+"PO-Revision-Date: 2012-09-11 11:22+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: German <de@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2012-12-05 05:40+0000\n"
+"X-Generator: Launchpad (build 16335)\n"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_extra:0
+msgid "Sale Price Extra"
+msgstr ""
+
+#. module: product_variant_multi
+#: constraint:ir.model:0
+msgid ""
+"The Object name must start with x_ and not contain any special character !"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Generate ->"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.product,cost_price_extra:0
+msgid "Purchase Extra Cost"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,is_multi_variants:0
+msgid "Is Multi Variants?"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,dimension_sequence:0
+msgid "Related Dimension Sequence"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.template,code_generator:0
+msgid ""
+"enter the model for the product code, all parameter between [_o.my_field_] "
+"will be replace by the product field. Example product_code model : "
+"prefix_[_o.variants_]_suffixe ==> result : prefix_2S2T_suffix"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,allow_custom_value:0
+msgid "Allow Custom Value"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,sequence:0
+msgid ""
+"The product 'variants' code will use this to order the dimension values"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Build Code ->"
+msgstr ""
+
+#. module: product_variant_multi
+#: constraint:ir.actions.act_window:0
+msgid "Invalid model name in the action definition."
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.product:0
+#: field:product.product,dimension_value_ids:0
+msgid "Dimensions"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,dimension_type_ids:0
+#: view:product.variant.dimension.type:0
+msgid "Dimension Types"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Template Sale Price"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,description:0
+msgid "Description"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,code_generator:0
+msgid "Code Generator"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,mandatory_dimension:0
+msgid ""
+"If false, variant products will be created with and without this dimension"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_margin:0
+msgid "Sale Price Margin"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,mandatory_dimension:0
+msgid "Mandatory Dimension"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name:0
+msgid ""
+"[NAME] will be replaced by the name of the dimension and [VALUE] by is "
+"value. Example of Variant Model Name : \"[NAME] - [VALUE]\""
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type_form
+msgid "Types"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,variant_ids:0
+msgid "Variants"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_variant
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant
+msgid "Product Variants"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,value_ids:0
+msgid "Dimension Values"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension_types
+msgid "Dimension types"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,allow_custom_value:0
+msgid "If true, custom values can be entered in the product configurator"
+msgstr ""
+
+#. module: product_variant_multi
+#: constraint:ir.ui.view:0
+msgid "Invalid XML for View Architecture!"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Product Variant"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name_separator:0
+msgid "Variant Model Name Separator"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+#: view:product.variant.dimension.value:0
+msgid "Variant Value"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_value
+#: field:product.variant.dimension.option,name:0
+msgid "Dimension Value"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_template
+#: field:product.variant.dimension.type,product_tmpl_id:0
+#: field:product.variant.dimension.value,product_tmpl_id:0
+msgid "Product Template"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name:0
+msgid "Variant Model Name"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_value_form
+msgid "Values"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.module.module,shortdesc:product_variant_multi.module_meta_information
+msgid "Products with multi-level variants"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,name:0
+msgid "Dimension"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+msgid "Variant Type"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_template
+#: model:ir.ui.menu,name:product_variant_multi.menu_template
+msgid "Product Templates"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension
+msgid "Variant Dimensions"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.option,sequence:0
+#: field:product.variant.dimension.type,sequence:0
+#: field:product.variant.dimension.value,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name_separator:0
+msgid "Add a separator between the elements of the variant name"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.module.module,description:product_variant_multi.module_meta_information
+msgid ""
+"OpenERP is already supporting a product variants at the core level. But\n"
+"without this module, variants are only mono-axial. OpenERP indeed uses the "
+"product.tempate\n"
+"as the model object and the product.variant as the instance variant.\n"
+"Using this module, you can now easily deal with multi-axial variants.\n"
+"A product.template, now has a set of dimensions (like Color, Size, anything "
+"you want).\n"
+"For each dimension, a product.template has a set of dimension values (like "
+"Red, Green\n"
+"for the Color dimension). For each dimension, you can accept or not custom "
+"dimension\n"
+"values. The sale interface product configurator will take it into account.\n"
+"Once the product.template is set up, you can use a 'generator' button that "
+"will populate\n"
+"the space of the variants. You could also choose to populate only some "
+"combinations\n"
+"by hand instead.\n"
+"Each variant can have an extra price that will be taken into account when "
+"computing\n"
+"the base listed price. Yet to be implemented: a price extra per variant "
+"dimension value.\n"
+"Finally, this module is better used along with the "
+"product_variant_configurator which\n"
+"will help the salesman selecting the appropriate variant in the sale order "
+"line\n"
+"using dimension criteria instead of having to crawl the full space of "
+"variants.\n"
+"    "
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_type
+#: field:product.variant.dimension.option,dimension_id:0
+#: field:product.variant.dimension.value,dimension_id:0
+msgid "Dimension Type"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Price"
+msgstr ""

=== added file 'product_multi_variant/i18n/es.po'
--- product_multi_variant/i18n/es.po	1970-01-01 00:00:00 +0000
+++ product_multi_variant/i18n/es.po	2013-02-27 17:36:20 +0000
@@ -0,0 +1,338 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+# 	* product_variant_multi
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: OpenERP Server 5.0.15\n"
+"Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
+"POT-Creation-Date: 2011-01-19 17:00+0000\n"
+"PO-Revision-Date: 2011-02-01 19:28+0000\n"
+"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
+"<jesteve@xxxxxxxxxxxxxxx>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2012-12-05 05:40+0000\n"
+"X-Generator: Launchpad (build 16335)\n"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_extra:0
+msgid "Sale Price Extra"
+msgstr "Precio de venta extra"
+
+#. module: product_variant_multi
+#: constraint:ir.model:0
+msgid ""
+"The Object name must start with x_ and not contain any special character !"
+msgstr ""
+"¡El nombre del objeto debe empezar con x_ y no contener ningún carácter "
+"especial!"
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Generate ->"
+msgstr "Generar ->"
+
+#. module: product_variant_multi
+#: field:product.product,cost_price_extra:0
+msgid "Purchase Extra Cost"
+msgstr "Coste extra de compra"
+
+#. module: product_variant_multi
+#: field:product.template,is_multi_variants:0
+msgid "Is Multi Variants?"
+msgstr "¿Es multi variante?"
+
+msgid "is_multi_variants"
+msgstr "�Es multi variante?"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,dimension_sequence:0
+msgid "Related Dimension Sequence"
+msgstr "Secuencia de dimensión relacionada"
+
+#. module: product_variant_multi
+#: help:product.template,code_generator:0
+msgid ""
+"enter the model for the product code, all parameter between [_o.my_field_] "
+"will be replace by the product field. Example product_code model : "
+"prefix_[_o.variants_]_suffixe ==> result : prefix_2S2T_suffix"
+msgstr ""
+"Introduzca el modelo para el código del producto, todos los parámetros entre "
+"[_o.mi_campo_] se sustituirán por el campo del producto. Ejemplo de modelo "
+"para el código de producto: prefijo_[_o.variants_]_sufijo ==> Resultado: "
+"prefijo_2S2T_sufijo"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,allow_custom_value:0
+msgid "Allow Custom Value"
+msgstr "Permitir valor personalizado"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,sequence:0
+msgid ""
+"The product 'variants' code will use this to order the dimension values"
+msgstr ""
+"El código de variantes del producto usará esta secuencia para ordenar los "
+"valores de la dimensión."
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Build Code ->"
+msgstr "Calcular códigos ->"
+
+#. module: product_variant_multi
+#: constraint:ir.actions.act_window:0
+msgid "Invalid model name in the action definition."
+msgstr "Nombre de modelo no válido en la definición de la acción."
+
+#. module: product_variant_multi
+#: view:product.product:0
+#: field:product.product,dimension_value_ids:0
+msgid "Dimensions"
+msgstr "Dimensiones"
+
+#. module: product_variant_multi
+#: field:product.template,dimension_type_ids:0
+#: view:product.variant.dimension.type:0
+msgid "Dimension Types"
+msgstr "Tipos de dimensión"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Template Sale Price"
+msgstr "Precio de venta de la plantilla"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,description:0
+msgid "Description"
+msgstr "Descripción"
+
+#. module: product_variant_multi
+#: field:product.template,code_generator:0
+msgid "Code Generator"
+msgstr "Generador de código"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,mandatory_dimension:0
+msgid ""
+"If false, variant products will be created with and without this dimension"
+msgstr ""
+"Si es falso, se crearán variantes de productos con y sin esta dimensión."
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_margin:0
+msgid "Sale Price Margin"
+msgstr "Margen precio de venta"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,mandatory_dimension:0
+msgid "Mandatory Dimension"
+msgstr "Dimensión obligatoria"
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name:0
+msgid ""
+"[NAME] will be replaced by the name of the dimension and [VALUE] by is "
+"value. Example of Variant Model Name : \"[NAME] - [VALUE]\""
+msgstr ""
+"Se sustituirá [NAME] por el nombre de la dimensión y [VALUE] por el valor. "
+"Ejemplo de modelo para el nombre de la variante: \"[NAME] - [VALUE] \""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type_form
+msgid "Types"
+msgstr "Tipos"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,variant_ids:0
+msgid "Variants"
+msgstr "Variantes"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_variant
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant
+msgid "Product Variants"
+msgstr "Variantes de producto"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,value_ids:0
+msgid "Dimension Values"
+msgstr "Valores de dimensión"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension_types
+msgid "Dimension types"
+msgstr "Tipos de dimensión"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,allow_custom_value:0
+msgid "If true, custom values can be entered in the product configurator"
+msgstr ""
+"Si es cierto, se pueden introducir los valores personalizados en el "
+"configurador de producto."
+
+#. module: product_variant_multi
+#: constraint:ir.ui.view:0
+msgid "Invalid XML for View Architecture!"
+msgstr "¡XML no válido para la arquitectura de la vista!"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Product Variant"
+msgstr "Variante de producto"
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name_separator:0
+msgid "Variant Model Name Separator"
+msgstr "Separador del modelo para el nombre de variante"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+#: view:product.variant.dimension.value:0
+msgid "Variant Value"
+msgstr "Valor de variante"
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_value
+#: field:product.variant.dimension.option,name:0
+msgid "Dimension Value"
+msgstr "Valor de dimensión"
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_template
+#: field:product.variant.dimension.type,product_tmpl_id:0
+#: field:product.variant.dimension.value,product_tmpl_id:0
+msgid "Product Template"
+msgstr "Plantilla de producto"
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name:0
+msgid "Variant Model Name"
+msgstr "Modelo para el nombre de variante"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_value_form
+msgid "Values"
+msgstr "Valores"
+
+#. module: product_variant_multi
+#: model:ir.module.module,shortdesc:product_variant_multi.module_meta_information
+msgid "Products with multi-level variants"
+msgstr "Productos con variantes multi-nivel"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,name:0
+msgid "Dimension"
+msgstr "Dimensión"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+msgid "Variant Type"
+msgstr "Tipo de variante"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_template
+#: model:ir.ui.menu,name:product_variant_multi.menu_template
+msgid "Product Templates"
+msgstr "Plantillas de producto"
+
+#. module: product_variant_multi
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension
+msgid "Variant Dimensions"
+msgstr "Dimensiones de variante"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.option,sequence:0
+#: field:product.variant.dimension.type,sequence:0
+#: field:product.variant.dimension.value,sequence:0
+msgid "Sequence"
+msgstr "Secuencia"
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name_separator:0
+msgid "Add a separator between the elements of the variant name"
+msgstr "Añade un separador entre los elementos del nombre de la variante."
+
+#. module: product_variant_multi
+#: model:ir.module.module,description:product_variant_multi.module_meta_information
+msgid ""
+"OpenERP is already supporting a product variants at the core level. But\n"
+"without this module, variants are only mono-axial. OpenERP indeed uses the "
+"product.tempate\n"
+"as the model object and the product.variant as the instance variant.\n"
+"Using this module, you can now easily deal with multi-axial variants.\n"
+"A product.template, now has a set of dimensions (like Color, Size, anything "
+"you want).\n"
+"For each dimension, a product.template has a set of dimension values (like "
+"Red, Green\n"
+"for the Color dimension). For each dimension, you can accept or not custom "
+"dimension\n"
+"values. The sale interface product configurator will take it into account.\n"
+"Once the product.template is set up, you can use a 'generator' button that "
+"will populate\n"
+"the space of the variants. You could also choose to populate only some "
+"combinations\n"
+"by hand instead.\n"
+"Each variant can have an extra price that will be taken into account when "
+"computing\n"
+"the base listed price. Yet to be implemented: a price extra per variant "
+"dimension value.\n"
+"Finally, this module is better used along with the "
+"product_variant_configurator which\n"
+"will help the salesman selecting the appropriate variant in the sale order "
+"line\n"
+"using dimension criteria instead of having to crawl the full space of "
+"variants.\n"
+"    "
+msgstr ""
+"OpenERP ya soporta variantes de producto a nivel básico. Pero sin este "
+"módulo,\n"
+"las variantes son sólo monoaxiales.  De hecho, OpenERP utiliza el objeto "
+"product.tempate\n"
+"como el producto base y el objeto product.variant como la variante del "
+"producto.\n"
+"El uso de este módulo permite tratar fácilmente variantes multiaxiales.\n"
+"product.template ahora contiene un conjunto de dimensiones (como color, "
+"tamaño, o lo que se desee).\n"
+"Para cada dimensión, product.template contiene un conjunto de valores de "
+"dimensión (como el rojo, o el verde \n"
+"para la dimensión color). Para cada dimensión, puede aceptar o no valores de "
+"dimensión\n"
+"personalizados. El configurador de producto de la interfaz de venta lo "
+"tendrá en cuenta.\n"
+"Una vez que product.template está configurado, se puede utilizar el botón "
+"'Generador' que rellenará\n"
+"todas las combinaciones de variantes. También se puede optar por rellenar "
+"manualmente sólo algunas\n"
+"combinaciones.\n"
+"Cada variante puede tener un precio adicional que se tendrá en cuenta al "
+"calcular el precio\n"
+"base de venta. Todavía por implementar: el precio extra por valor de "
+"dimensión de variante.\n"
+"Por último, es mejor utilizar este módulo junto con el módulo "
+"product_variant_configurator puesto que\n"
+"ayudará al vendedor a seleccionar la variante apropiada en la línea del "
+"pedido de venta\n"
+"utilizando criterios de dimensión en lugar de tener que buscar en todas las "
+"combinaciones de variantes.\n"
+"    "
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_type
+#: field:product.variant.dimension.option,dimension_id:0
+#: field:product.variant.dimension.value,dimension_id:0
+msgid "Dimension Type"
+msgstr "Tipo de dimensión"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Price"
+msgstr "Precio"

=== added file 'product_multi_variant/i18n/fr.po'
--- product_multi_variant/i18n/fr.po	1970-01-01 00:00:00 +0000
+++ product_multi_variant/i18n/fr.po	2013-02-27 17:36:20 +0000
@@ -0,0 +1,291 @@
+# French translation for openobject-addons
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-addons package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-addons\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-01-19 17:00+0000\n"
+"PO-Revision-Date: 2011-04-19 09:40+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: French <fr@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2012-12-05 05:40+0000\n"
+"X-Generator: Launchpad (build 16335)\n"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_extra:0
+msgid "Sale Price Extra"
+msgstr ""
+
+#. module: product_variant_multi
+#: constraint:ir.model:0
+msgid ""
+"The Object name must start with x_ and not contain any special character !"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Generate ->"
+msgstr "Generer ->"
+
+#. module: product_variant_multi
+#: field:product.product,cost_price_extra:0
+msgid "Purchase Extra Cost"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,is_multi_variants:0
+msgid "Is Multi Variants?"
+msgstr "Est à variante multiple"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,dimension_sequence:0
+msgid "Related Dimension Sequence"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.template,code_generator:0
+msgid ""
+"enter the model for the product code, all parameter between [_o.my_field_] "
+"will be replace by the product field. Example product_code model : "
+"prefix_[_o.variants_]_suffixe ==> result : prefix_2S2T_suffix"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,allow_custom_value:0
+msgid "Allow Custom Value"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,sequence:0
+msgid ""
+"The product 'variants' code will use this to order the dimension values"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Build Code ->"
+msgstr "Générer le code ->"
+
+#. module: product_variant_multi
+#: constraint:ir.actions.act_window:0
+msgid "Invalid model name in the action definition."
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.product:0
+#: field:product.product,dimension_value_ids:0
+msgid "Dimensions"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,dimension_type_ids:0
+#: view:product.variant.dimension.type:0
+msgid "Dimension Types"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Template Sale Price"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,description:0
+msgid "Description"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,code_generator:0
+msgid "Code Generator"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,mandatory_dimension:0
+msgid ""
+"If false, variant products will be created with and without this dimension"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_margin:0
+msgid "Sale Price Margin"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,mandatory_dimension:0
+msgid "Mandatory Dimension"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name:0
+msgid ""
+"[NAME] will be replaced by the name of the dimension and [VALUE] by is "
+"value. Example of Variant Model Name : \"[NAME] - [VALUE]\""
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type_form
+msgid "Types"
+msgstr "Types"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,variant_ids:0
+msgid "Variants"
+msgstr "Variantes"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_variant
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant
+msgid "Product Variants"
+msgstr "Variante de produit"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,value_ids:0
+msgid "Dimension Values"
+msgstr "Valeurs de la dimension"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension_types
+msgid "Dimension types"
+msgstr "Types de la dimension"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,allow_custom_value:0
+msgid "If true, custom values can be entered in the product configurator"
+msgstr ""
+
+#. module: product_variant_multi
+#: constraint:ir.ui.view:0
+msgid "Invalid XML for View Architecture!"
+msgstr "XML de la vue non valide!"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Product Variant"
+msgstr "Variante de produit"
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name_separator:0
+msgid "Variant Model Name Separator"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+#: view:product.variant.dimension.value:0
+msgid "Variant Value"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_value
+#: field:product.variant.dimension.option,name:0
+msgid "Dimension Value"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_template
+#: field:product.variant.dimension.type,product_tmpl_id:0
+#: field:product.variant.dimension.value,product_tmpl_id:0
+msgid "Product Template"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name:0
+msgid "Variant Model Name"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_value_form
+msgid "Values"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.module.module,shortdesc:product_variant_multi.module_meta_information
+msgid "Products with multi-level variants"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,name:0
+msgid "Dimension"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+msgid "Variant Type"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_template
+#: model:ir.ui.menu,name:product_variant_multi.menu_template
+msgid "Product Templates"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension
+msgid "Variant Dimensions"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.option,sequence:0
+#: field:product.variant.dimension.type,sequence:0
+#: field:product.variant.dimension.value,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name_separator:0
+msgid "Add a separator between the elements of the variant name"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.module.module,description:product_variant_multi.module_meta_information
+msgid ""
+"OpenERP is already supporting a product variants at the core level. But\n"
+"without this module, variants are only mono-axial. OpenERP indeed uses the "
+"product.tempate\n"
+"as the model object and the product.variant as the instance variant.\n"
+"Using this module, you can now easily deal with multi-axial variants.\n"
+"A product.template, now has a set of dimensions (like Color, Size, anything "
+"you want).\n"
+"For each dimension, a product.template has a set of dimension values (like "
+"Red, Green\n"
+"for the Color dimension). For each dimension, you can accept or not custom "
+"dimension\n"
+"values. The sale interface product configurator will take it into account.\n"
+"Once the product.template is set up, you can use a 'generator' button that "
+"will populate\n"
+"the space of the variants. You could also choose to populate only some "
+"combinations\n"
+"by hand instead.\n"
+"Each variant can have an extra price that will be taken into account when "
+"computing\n"
+"the base listed price. Yet to be implemented: a price extra per variant "
+"dimension value.\n"
+"Finally, this module is better used along with the "
+"product_variant_configurator which\n"
+"will help the salesman selecting the appropriate variant in the sale order "
+"line\n"
+"using dimension criteria instead of having to crawl the full space of "
+"variants.\n"
+"    "
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_type
+#: field:product.variant.dimension.option,dimension_id:0
+#: field:product.variant.dimension.value,dimension_id:0
+msgid "Dimension Type"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Price"
+msgstr ""

=== added file 'product_multi_variant/i18n/hu.po'
--- product_multi_variant/i18n/hu.po	1970-01-01 00:00:00 +0000
+++ product_multi_variant/i18n/hu.po	2013-02-27 17:36:20 +0000
@@ -0,0 +1,291 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+#	* product_variant_multi
+#
+# Dukai Gábor <gdukai@xxxxxxxxx>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: OpenERP Server 5.0.1\n"
+"Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
+"POT-Creation-Date: 2011-01-19 17:00+0000\n"
+"PO-Revision-Date: 2010-01-26 11:15+0000\n"
+"Last-Translator: Dukai Gábor <Unknown>\n"
+"Language-Team: Magyar <>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2012-12-05 05:40+0000\n"
+"X-Generator: Launchpad (build 16335)\n"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_extra:0
+msgid "Sale Price Extra"
+msgstr ""
+
+#. module: product_variant_multi
+#: constraint:ir.model:0
+msgid ""
+"The Object name must start with x_ and not contain any special character !"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Generate ->"
+msgstr "Létrehozás ->"
+
+#. module: product_variant_multi
+#: field:product.product,cost_price_extra:0
+msgid "Purchase Extra Cost"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,is_multi_variants:0
+msgid "Is Multi Variants?"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,dimension_sequence:0
+msgid "Related Dimension Sequence"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.template,code_generator:0
+msgid ""
+"enter the model for the product code, all parameter between [_o.my_field_] "
+"will be replace by the product field. Example product_code model : "
+"prefix_[_o.variants_]_suffixe ==> result : prefix_2S2T_suffix"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,allow_custom_value:0
+msgid "Allow Custom Value"
+msgstr "Egyedi érték engedélyezett"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,sequence:0
+msgid ""
+"The product 'variants' code will use this to order the dimension values"
+msgstr "Ez alapján fognak a változatok dimenziók szerint sorba rendeződni"
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Build Code ->"
+msgstr ""
+
+#. module: product_variant_multi
+#: constraint:ir.actions.act_window:0
+msgid "Invalid model name in the action definition."
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.product:0
+#: field:product.product,dimension_value_ids:0
+msgid "Dimensions"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,dimension_type_ids:0
+#: view:product.variant.dimension.type:0
+msgid "Dimension Types"
+msgstr "Dimenziók"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Template Sale Price"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,description:0
+msgid "Description"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,code_generator:0
+msgid "Code Generator"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,mandatory_dimension:0
+msgid ""
+"If false, variant products will be created with and without this dimension"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_margin:0
+msgid "Sale Price Margin"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,mandatory_dimension:0
+msgid "Mandatory Dimension"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name:0
+msgid ""
+"[NAME] will be replaced by the name of the dimension and [VALUE] by is "
+"value. Example of Variant Model Name : \"[NAME] - [VALUE]\""
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type_form
+msgid "Types"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,variant_ids:0
+msgid "Variants"
+msgstr "Változatok"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_variant
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant
+msgid "Product Variants"
+msgstr "Termékváltozatok"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,value_ids:0
+msgid "Dimension Values"
+msgstr "Dimenzió értékek"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension_types
+msgid "Dimension types"
+msgstr "Dimenziók"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,allow_custom_value:0
+msgid "If true, custom values can be entered in the product configurator"
+msgstr ""
+
+#. module: product_variant_multi
+#: constraint:ir.ui.view:0
+msgid "Invalid XML for View Architecture!"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Product Variant"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name_separator:0
+msgid "Variant Model Name Separator"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+#: view:product.variant.dimension.value:0
+msgid "Variant Value"
+msgstr "Változat dimenziójának értékei"
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_value
+#: field:product.variant.dimension.option,name:0
+msgid "Dimension Value"
+msgstr "Dimenzió érték"
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_template
+#: field:product.variant.dimension.type,product_tmpl_id:0
+#: field:product.variant.dimension.value,product_tmpl_id:0
+msgid "Product Template"
+msgstr "Terméksablonok"
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name:0
+msgid "Variant Model Name"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_value_form
+msgid "Values"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.module.module,shortdesc:product_variant_multi.module_meta_information
+msgid "Products with multi-level variants"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,name:0
+msgid "Dimension"
+msgstr "Dimenzió"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+msgid "Variant Type"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_template
+#: model:ir.ui.menu,name:product_variant_multi.menu_template
+msgid "Product Templates"
+msgstr "Terméksablonok"
+
+#. module: product_variant_multi
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension
+msgid "Variant Dimensions"
+msgstr "Változatok dimenziói"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.option,sequence:0
+#: field:product.variant.dimension.type,sequence:0
+#: field:product.variant.dimension.value,sequence:0
+msgid "Sequence"
+msgstr "Sorszám"
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name_separator:0
+msgid "Add a separator between the elements of the variant name"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.module.module,description:product_variant_multi.module_meta_information
+msgid ""
+"OpenERP is already supporting a product variants at the core level. But\n"
+"without this module, variants are only mono-axial. OpenERP indeed uses the "
+"product.tempate\n"
+"as the model object and the product.variant as the instance variant.\n"
+"Using this module, you can now easily deal with multi-axial variants.\n"
+"A product.template, now has a set of dimensions (like Color, Size, anything "
+"you want).\n"
+"For each dimension, a product.template has a set of dimension values (like "
+"Red, Green\n"
+"for the Color dimension). For each dimension, you can accept or not custom "
+"dimension\n"
+"values. The sale interface product configurator will take it into account.\n"
+"Once the product.template is set up, you can use a 'generator' button that "
+"will populate\n"
+"the space of the variants. You could also choose to populate only some "
+"combinations\n"
+"by hand instead.\n"
+"Each variant can have an extra price that will be taken into account when "
+"computing\n"
+"the base listed price. Yet to be implemented: a price extra per variant "
+"dimension value.\n"
+"Finally, this module is better used along with the "
+"product_variant_configurator which\n"
+"will help the salesman selecting the appropriate variant in the sale order "
+"line\n"
+"using dimension criteria instead of having to crawl the full space of "
+"variants.\n"
+"    "
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_type
+#: field:product.variant.dimension.option,dimension_id:0
+#: field:product.variant.dimension.value,dimension_id:0
+msgid "Dimension Type"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Price"
+msgstr ""

=== added file 'product_multi_variant/i18n/hu_HU.po'
--- product_multi_variant/i18n/hu_HU.po	1970-01-01 00:00:00 +0000
+++ product_multi_variant/i18n/hu_HU.po	2013-02-27 17:36:20 +0000
@@ -0,0 +1,195 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+#	* product_variant_multi
+#
+# Dukai Gábor <gdukai@xxxxxxxxx>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: OpenERP Server 5.0.1\n"
+"Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
+"POT-Creation-Date: 2009-06-09 10:31:01+0000\n"
+"PO-Revision-Date: 2009-06-22 10:39+0200\n"
+"Last-Translator: Dukai Gábor <gdukai@xxxxxxxxx>\n"
+"Language-Team: Magyar <>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+"X-Generator: Lokalize 0.3\n"
+
+#. module: product_variant_multi
+#: constraint:ir.model:0
+msgid "The Object name must start with x_ and not contain any special character !"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.product,dimension_value_ids:0
+msgid "Dimensions"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,dimension_sequence:0
+msgid "Related Dimension Sequence"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,allow_custom_value:0
+msgid "Allow Custom Value"
+msgstr "Egyedi érték engedélyezett"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,sequence:0
+msgid "The product 'variants' code will use this to order the dimension values"
+msgstr "Ez alapján fognak a változatok dimenziók szerint sorba rendeződni"
+
+#. module: product_variant_multi
+#: constraint:ir.actions.act_window:0
+msgid "Invalid model name in the action definition."
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Generate ->"
+msgstr "Létrehozás ->"
+
+#. module: product_variant_multi
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension_types
+#: field:product.template,dimension_type_ids:0
+msgid "Dimension Types"
+msgstr "Dimenziók"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_extra:0
+msgid "Price Extra"
+msgstr "Plusz összeg"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type_form
+msgid "Types"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,variant_ids:0
+msgid "Variants"
+msgstr "Változatok"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_variant
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant
+msgid "Product Variants"
+msgstr "Termékváltozatok"
+
+#. module: product_variant_multi
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension_values
+#: view:product.template:0
+#: field:product.variant.dimension.type,value_ids:0
+msgid "Dimension Values"
+msgstr "Dimenzió értékek"
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Dimension types"
+msgstr "Dimenziók"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,allow_custom_value:0
+msgid "If true, custom values can be entered in the product configurator"
+msgstr ""
+
+#. module: product_variant_multi
+#: constraint:ir.ui.view:0
+msgid "Invalid XML for View Architecture!"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_margin:0
+msgid "Price Margin"
+msgstr "Plusz árrés"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+#: view:product.variant.dimension.value:0
+msgid "Variant Value"
+msgstr "Változat dimenziójának értékei"
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_value
+#: field:product.variant.dimension.value,name:0
+msgid "Dimension Value"
+msgstr "Dimenzió érték"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,product_tmpl_id:0
+#: field:product.variant.dimension.value,product_tmpl_id:0
+msgid "Product Template"
+msgstr "Terméksablonok"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_value_form
+msgid "Values"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.module.module,shortdesc:product_variant_multi.module_meta_information
+msgid "Products with multi-level variants"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,name:0
+msgid "Dimension"
+msgstr "Dimenzió"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+msgid "Variant Type"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_template
+#: model:ir.ui.menu,name:product_variant_multi.menu_template
+msgid "Product Templates"
+msgstr "Terméksablonok"
+
+#. module: product_variant_multi
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension
+msgid "Variant Dimensions"
+msgstr "Változatok dimenziói"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,sequence:0
+#: field:product.variant.dimension.value,sequence:0
+msgid "Sequence"
+msgstr "Sorszám"
+
+#. module: product_variant_multi
+#: model:ir.module.module,description:product_variant_multi.module_meta_information
+msgid ""
+"OpenERP is already supporting a product variants at the core level. But\n"
+"without this module, variants are only mono-axial. OpenERP indeed uses the product.tempate\n"
+"as the model object and the product.variant as the instance variant.\n"
+"Using this module, you can now easily deal with multi-axial variants.\n"
+"A product.template, now has a set of dimensions (like Color, Size, anything you want).\n"
+"For each dimension, a product.template has a set of dimension values (like Red, Green\n"
+"for the Color dimension). For each dimension, you can accept or not custom dimension\n"
+"values. The sale interface product configurator will take it into account.\n"
+"Once the product.template is set up, you can use a 'generator' button that will populate\n"
+"the space of the variants. You could also choose to populate only some combinations\n"
+"by hand instead.\n"
+"Each variant can have an extra price that will be taken into account when computing\n"
+"the base listed price. Yet to be implemented: a price extra per variant dimension value.\n"
+"Finally, this module is better used along with the product_variant_configurator which\n"
+"will help the salesman selecting the appropriate variant in the sale order line\n"
+"using dimension criteria instead of having to crawl the full space of variants.\n"
+"    "
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_type
+#: field:product.variant.dimension.value,dimension_id:0
+msgid "Dimension Type"
+msgstr ""
+
+

=== added file 'product_multi_variant/i18n/pl.po'
--- product_multi_variant/i18n/pl.po	1970-01-01 00:00:00 +0000
+++ product_multi_variant/i18n/pl.po	2013-02-27 17:36:20 +0000
@@ -0,0 +1,291 @@
+# Polish translation for openobject-addons
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-addons package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-addons\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-01-19 17:00+0000\n"
+"PO-Revision-Date: 2011-03-16 07:18+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Polish <pl@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2012-12-05 05:40+0000\n"
+"X-Generator: Launchpad (build 16335)\n"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_extra:0
+msgid "Sale Price Extra"
+msgstr "Dodaj do ceny sprzedaży"
+
+#. module: product_variant_multi
+#: constraint:ir.model:0
+msgid ""
+"The Object name must start with x_ and not contain any special character !"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Generate ->"
+msgstr "Generuj ->"
+
+#. module: product_variant_multi
+#: field:product.product,cost_price_extra:0
+msgid "Purchase Extra Cost"
+msgstr "Dodaj co ceny zakupu"
+
+#. module: product_variant_multi
+#: field:product.template,is_multi_variants:0
+msgid "Is Multi Variants?"
+msgstr "Czy wielowariantowy?"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,dimension_sequence:0
+msgid "Related Dimension Sequence"
+msgstr "Numeracja wymiaru"
+
+#. module: product_variant_multi
+#: help:product.template,code_generator:0
+msgid ""
+"enter the model for the product code, all parameter between [_o.my_field_] "
+"will be replace by the product field. Example product_code model : "
+"prefix_[_o.variants_]_suffixe ==> result : prefix_2S2T_suffix"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,allow_custom_value:0
+msgid "Allow Custom Value"
+msgstr "Zezwalaj na własne wartości"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,sequence:0
+msgid ""
+"The product 'variants' code will use this to order the dimension values"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Build Code ->"
+msgstr "Buduj kod ->"
+
+#. module: product_variant_multi
+#: constraint:ir.actions.act_window:0
+msgid "Invalid model name in the action definition."
+msgstr "Nieprawidłowa nazwa modelu w definicji działania."
+
+#. module: product_variant_multi
+#: view:product.product:0
+#: field:product.product,dimension_value_ids:0
+msgid "Dimensions"
+msgstr "Wymiary"
+
+#. module: product_variant_multi
+#: field:product.template,dimension_type_ids:0
+#: view:product.variant.dimension.type:0
+msgid "Dimension Types"
+msgstr "Typy wymiarów"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Template Sale Price"
+msgstr "Cena sprzedaży dla szablonu"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,description:0
+msgid "Description"
+msgstr "Opis"
+
+#. module: product_variant_multi
+#: field:product.template,code_generator:0
+msgid "Code Generator"
+msgstr "Generator kodu"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,mandatory_dimension:0
+msgid ""
+"If false, variant products will be created with and without this dimension"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_margin:0
+msgid "Sale Price Margin"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,mandatory_dimension:0
+msgid "Mandatory Dimension"
+msgstr "Wymiar obowiązkowy"
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name:0
+msgid ""
+"[NAME] will be replaced by the name of the dimension and [VALUE] by is "
+"value. Example of Variant Model Name : \"[NAME] - [VALUE]\""
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type_form
+msgid "Types"
+msgstr "Typy"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,variant_ids:0
+msgid "Variants"
+msgstr "Warianty"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_variant
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant
+msgid "Product Variants"
+msgstr "Warianty produktu"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,value_ids:0
+msgid "Dimension Values"
+msgstr "Wartości wymiaru"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension_types
+msgid "Dimension types"
+msgstr "Typy wymiarów"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,allow_custom_value:0
+msgid "If true, custom values can be entered in the product configurator"
+msgstr "Jeśli prawda, to będzie można dopisywać wartości do wymiaru."
+
+#. module: product_variant_multi
+#: constraint:ir.ui.view:0
+msgid "Invalid XML for View Architecture!"
+msgstr "Niewłaściwy XML dla Architektury Widoku!"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Product Variant"
+msgstr "Wariant produktu"
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name_separator:0
+msgid "Variant Model Name Separator"
+msgstr "Separator nazwy wariantu"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+#: view:product.variant.dimension.value:0
+msgid "Variant Value"
+msgstr "Wartość wariantu"
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_value
+#: field:product.variant.dimension.option,name:0
+msgid "Dimension Value"
+msgstr "Wartość wymiaru"
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_template
+#: field:product.variant.dimension.type,product_tmpl_id:0
+#: field:product.variant.dimension.value,product_tmpl_id:0
+msgid "Product Template"
+msgstr "Szablon produktu"
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name:0
+msgid "Variant Model Name"
+msgstr "Nazwa wariantu"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_value_form
+msgid "Values"
+msgstr "Wartości"
+
+#. module: product_variant_multi
+#: model:ir.module.module,shortdesc:product_variant_multi.module_meta_information
+msgid "Products with multi-level variants"
+msgstr "Produkty z wariantami wielopoziomowymi"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,name:0
+msgid "Dimension"
+msgstr "Wymiar"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+msgid "Variant Type"
+msgstr "Typ wariantu"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_template
+#: model:ir.ui.menu,name:product_variant_multi.menu_template
+msgid "Product Templates"
+msgstr "Szablony produktów"
+
+#. module: product_variant_multi
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension
+msgid "Variant Dimensions"
+msgstr "Wymiary wariantu"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.option,sequence:0
+#: field:product.variant.dimension.type,sequence:0
+#: field:product.variant.dimension.value,sequence:0
+msgid "Sequence"
+msgstr "Numeracja"
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name_separator:0
+msgid "Add a separator between the elements of the variant name"
+msgstr "Dodaje separator pomiędzy elementy nazw wariantów"
+
+#. module: product_variant_multi
+#: model:ir.module.module,description:product_variant_multi.module_meta_information
+msgid ""
+"OpenERP is already supporting a product variants at the core level. But\n"
+"without this module, variants are only mono-axial. OpenERP indeed uses the "
+"product.tempate\n"
+"as the model object and the product.variant as the instance variant.\n"
+"Using this module, you can now easily deal with multi-axial variants.\n"
+"A product.template, now has a set of dimensions (like Color, Size, anything "
+"you want).\n"
+"For each dimension, a product.template has a set of dimension values (like "
+"Red, Green\n"
+"for the Color dimension). For each dimension, you can accept or not custom "
+"dimension\n"
+"values. The sale interface product configurator will take it into account.\n"
+"Once the product.template is set up, you can use a 'generator' button that "
+"will populate\n"
+"the space of the variants. You could also choose to populate only some "
+"combinations\n"
+"by hand instead.\n"
+"Each variant can have an extra price that will be taken into account when "
+"computing\n"
+"the base listed price. Yet to be implemented: a price extra per variant "
+"dimension value.\n"
+"Finally, this module is better used along with the "
+"product_variant_configurator which\n"
+"will help the salesman selecting the appropriate variant in the sale order "
+"line\n"
+"using dimension criteria instead of having to crawl the full space of "
+"variants.\n"
+"    "
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_type
+#: field:product.variant.dimension.option,dimension_id:0
+#: field:product.variant.dimension.value,dimension_id:0
+msgid "Dimension Type"
+msgstr "Typ wymiaru"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Price"
+msgstr "Cena"

=== added file 'product_multi_variant/i18n/product_variant_multi.pot'
--- product_multi_variant/i18n/product_variant_multi.pot	1970-01-01 00:00:00 +0000
+++ product_multi_variant/i18n/product_variant_multi.pot	2013-02-27 17:36:20 +0000
@@ -0,0 +1,287 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+#	* product_variant_multi
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: OpenERP Server 5.0.15\n"
+"Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
+"POT-Creation-Date: 2011-01-19 17:00:14+0000\n"
+"PO-Revision-Date: 2011-01-19 17:00:14+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+
+#. module: product_variant_multi
+#: view:product.variant.dimension.type:0
+#: field:product.variant.dimension.value,price_extra:0
+msgid "Sale Price Extra"
+msgstr "Sale Price Extra"
+
+#. module: product_variant_multi
+#: constraint:ir.model:0
+msgid "The Object name must start with x_ and not contain any special character !"
+msgstr "The Object name must start with x_ and not contain any special character !"
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Generate ->"
+msgstr "Generate ->"
+
+#. module: product_variant_multi
+#: field:product.product,cost_price_extra:0
+#: field:product.variant.dimension.value,cost_price_extra:0
+msgid "Purchase Extra Cost"
+msgstr "Purchase Extra Cost"
+
+#. module: product_variant_multi
+#: field:product.template,is_multi_variants:0
+msgid "Is Multi Variants?"
+msgstr "Is Multi Variants?"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,dimension_sequence:0
+msgid "Related Dimension Sequence"
+msgstr "Related Dimension Sequence"
+
+#. module: product_variant_multi
+#: help:product.template,code_generator:0
+msgid "enter the model for the product code, all parameter between [_o.my_field_] will be replace by the product field. Example product_code model : prefix_[_o.variants_]_suffixe ==> result : prefix_2S2T_suffix"
+msgstr "enter the model for the product code, all parameter between [_o.my_field_] will be replace by the product field. Example product_code model : prefix_[_o.variants_]_suffixe ==> result : prefix_2S2T_suffix"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,allow_custom_value:0
+msgid "Allow Custom Value"
+msgstr "Allow Custom Value"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,sequence:0
+msgid "The product 'variants' code will use this to order the dimension values"
+msgstr "The product 'variants' code will use this to order the dimension values"
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Build Code ->"
+msgstr "Build Code ->"
+
+#. module: product_variant_multi
+#: constraint:ir.actions.act_window:0
+msgid "Invalid model name in the action definition."
+msgstr "Invalid model name in the action definition."
+
+#. module: product_variant_multi
+#: field:product.product,dimension_value_ids:0
+msgid "Dimensions"
+msgstr "Dimensions"
+
+#. module: product_variant_multi
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension_types
+#: field:product.template,dimension_type_ids:0
+msgid "Dimension Types"
+msgstr "Dimension Types"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Template Sale Price"
+msgstr "Template Sale Price"
+
+#. module: product_variant_multi
+#: view:product.product:0
+#: field:product.variant.dimension.type,description:0
+msgid "Description"
+msgstr "Description"
+
+#. module: product_variant_multi
+#: field:product.template,code_generator:0
+msgid "Code Generator"
+msgstr "Code Generator"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,mandatory_dimension:0
+msgid "If false, variant products will be created with and without this dimension"
+msgstr "If false, variant products will be created with and without this dimension"
+
+#. module: product_variant_multi
+#: view:product.variant.dimension.type:0
+#: field:product.variant.dimension.value,price_margin:0
+msgid "Sale Price Margin"
+msgstr "Sale Price Margin"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,mandatory_dimension:0
+msgid "Mandatory Dimension"
+msgstr "Mandatory Dimension"
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name:0
+msgid "[NAME] will be replaced by the name of the dimension and [VALUE] by is value. Example of Variant Model Name : \"[NAME] - [VALUE]\""
+msgstr "[NAME] will be replaced by the name of the dimension and [VALUE] by is value. Example of Variant Model Name : \"[NAME] - [VALUE]\""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type_form
+msgid "Types"
+msgstr "Types"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,variant_ids:0
+msgid "Variants"
+msgstr "Variants"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_variant
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant
+msgid "Product Variants"
+msgstr "Product Variants"
+
+#. module: product_variant_multi
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension_values
+#: view:product.template:0
+#: field:product.variant.dimension.type,value_ids:0
+msgid "Dimension Values"
+msgstr "Dimension Values"
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Dimension types"
+msgstr "Dimension types"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,allow_custom_value:0
+msgid "If true, custom values can be entered in the product configurator"
+msgstr "If true, custom values can be entered in the product configurator"
+
+#. module: product_variant_multi
+#: constraint:ir.ui.view:0
+msgid "Invalid XML for View Architecture!"
+msgstr "Invalid XML for View Architecture!"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Product Variant"
+msgstr "Product Variant"
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name_separator:0
+msgid "Variant Model Name Separator"
+msgstr "Variant Model Name Separator"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+#: view:product.variant.dimension.value:0
+msgid "Variant Value"
+msgstr "Variant Value"
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_value
+#: field:product.variant.dimension.value,name:0
+msgid "Dimension Value"
+msgstr "Dimension Value"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,product_tmpl_id:0
+#: field:product.variant.dimension.value,product_tmpl_id:0
+msgid "Product Template"
+msgstr "Product Template"
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name:0
+msgid "Variant Model Name"
+msgstr "Variant Model Name"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_value_form
+msgid "Values"
+msgstr "Values"
+
+#. module: product_variant_multi
+#: model:ir.module.module,shortdesc:product_variant_multi.module_meta_information
+msgid "Products with multi-level variants"
+msgstr "Products with multi-level variants"
+
+#. module: product_variant_multi
+#: view:product.product:0
+#: field:product.variant.dimension.type,name:0
+msgid "Dimension"
+msgstr "Dimension"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+msgid "Variant Type"
+msgstr "Variant Type"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_template
+#: model:ir.ui.menu,name:product_variant_multi.menu_template
+msgid "Product Templates"
+msgstr "Product Templates"
+
+#. module: product_variant_multi
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension
+msgid "Variant Dimensions"
+msgstr "Variant Dimensions"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,sequence:0
+#: field:product.variant.dimension.value,sequence:0
+msgid "Sequence"
+msgstr "Sequence"
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name_separator:0
+msgid "Add a separator between the elements of the variant name"
+msgstr "Add a separator between the elements of the variant name"
+
+#. module: product_variant_multi
+#: model:ir.module.module,description:product_variant_multi.module_meta_information
+msgid "OpenERP is already supporting a product variants at the core level. But\n"
+"without this module, variants are only mono-axial. OpenERP indeed uses the product.tempate\n"
+"as the model object and the product.variant as the instance variant.\n"
+"Using this module, you can now easily deal with multi-axial variants.\n"
+"A product.template, now has a set of dimensions (like Color, Size, anything you want).\n"
+"For each dimension, a product.template has a set of dimension values (like Red, Green\n"
+"for the Color dimension). For each dimension, you can accept or not custom dimension\n"
+"values. The sale interface product configurator will take it into account.\n"
+"Once the product.template is set up, you can use a 'generator' button that will populate\n"
+"the space of the variants. You could also choose to populate only some combinations\n"
+"by hand instead.\n"
+"Each variant can have an extra price that will be taken into account when computing\n"
+"the base listed price. Yet to be implemented: a price extra per variant dimension value.\n"
+"Finally, this module is better used along with the product_variant_configurator which\n"
+"will help the salesman selecting the appropriate variant in the sale order line\n"
+"using dimension criteria instead of having to crawl the full space of variants.\n"
+"    "
+msgstr "OpenERP is already supporting a product variants at the core level. But\n"
+"without this module, variants are only mono-axial. OpenERP indeed uses the product.tempate\n"
+"as the model object and the product.variant as the instance variant.\n"
+"Using this module, you can now easily deal with multi-axial variants.\n"
+"A product.template, now has a set of dimensions (like Color, Size, anything you want).\n"
+"For each dimension, a product.template has a set of dimension values (like Red, Green\n"
+"for the Color dimension). For each dimension, you can accept or not custom dimension\n"
+"values. The sale interface product configurator will take it into account.\n"
+"Once the product.template is set up, you can use a 'generator' button that will populate\n"
+"the space of the variants. You could also choose to populate only some combinations\n"
+"by hand instead.\n"
+"Each variant can have an extra price that will be taken into account when computing\n"
+"the base listed price. Yet to be implemented: a price extra per variant dimension value.\n"
+"Finally, this module is better used along with the product_variant_configurator which\n"
+"will help the salesman selecting the appropriate variant in the sale order line\n"
+"using dimension criteria instead of having to crawl the full space of variants.\n"
+"    "
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_type
+#: field:product.variant.dimension.value,dimension_id:0
+msgid "Dimension Type"
+msgstr "Dimension Type"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Price"
+msgstr "Price"
+

=== added file 'product_multi_variant/i18n/pt.po'
--- product_multi_variant/i18n/pt.po	1970-01-01 00:00:00 +0000
+++ product_multi_variant/i18n/pt.po	2013-02-27 17:36:20 +0000
@@ -0,0 +1,322 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: OpenERP Server 5.0.1\n"
+"Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
+"POT-Creation-Date: 2011-01-19 17:00+0000\n"
+"PO-Revision-Date: 2010-11-09 22:30+0000\n"
+"Last-Translator: António Anacleto (www.prime.cv) "
+"<antonio.anacleto@xxxxxxxx>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2012-12-05 05:40+0000\n"
+"X-Generator: Launchpad (build 16335)\n"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_extra:0
+msgid "Sale Price Extra"
+msgstr ""
+
+#. module: product_variant_multi
+#: constraint:ir.model:0
+msgid ""
+"The Object name must start with x_ and not contain any special character !"
+msgstr ""
+"O nome do Objecto deve começar com x_ e não pode conter nenhum carácter "
+"especial !"
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Generate ->"
+msgstr "Gerar ->"
+
+#. module: product_variant_multi
+#: field:product.product,cost_price_extra:0
+msgid "Purchase Extra Cost"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,is_multi_variants:0
+msgid "Is Multi Variants?"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,dimension_sequence:0
+msgid "Related Dimension Sequence"
+msgstr "Dimensão da Sequência Relacionada"
+
+#. module: product_variant_multi
+#: help:product.template,code_generator:0
+msgid ""
+"enter the model for the product code, all parameter between [_o.my_field_] "
+"will be replace by the product field. Example product_code model : "
+"prefix_[_o.variants_]_suffixe ==> result : prefix_2S2T_suffix"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,allow_custom_value:0
+msgid "Allow Custom Value"
+msgstr "Permite Personalizar Valor"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,sequence:0
+msgid ""
+"The product 'variants' code will use this to order the dimension values"
+msgstr ""
+"O código do produto 'variavéis' vai utilizadar esta ordem de valores de "
+"dimensão"
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Build Code ->"
+msgstr ""
+
+#. module: product_variant_multi
+#: constraint:ir.actions.act_window:0
+msgid "Invalid model name in the action definition."
+msgstr "Nome do modelo inválido na definição da acção."
+
+#. module: product_variant_multi
+#: view:product.product:0
+#: field:product.product,dimension_value_ids:0
+msgid "Dimensions"
+msgstr "Dimensões"
+
+#. module: product_variant_multi
+#: field:product.template,dimension_type_ids:0
+#: view:product.variant.dimension.type:0
+msgid "Dimension Types"
+msgstr "Tipos de Dimensão"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Template Sale Price"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,description:0
+msgid "Description"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,code_generator:0
+msgid "Code Generator"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,mandatory_dimension:0
+msgid ""
+"If false, variant products will be created with and without this dimension"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_margin:0
+msgid "Sale Price Margin"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,mandatory_dimension:0
+msgid "Mandatory Dimension"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name:0
+msgid ""
+"[NAME] will be replaced by the name of the dimension and [VALUE] by is "
+"value. Example of Variant Model Name : \"[NAME] - [VALUE]\""
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type_form
+msgid "Types"
+msgstr "Tipos"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,variant_ids:0
+msgid "Variants"
+msgstr "Variáveis"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_variant
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant
+msgid "Product Variants"
+msgstr "Producto Variáveis"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,value_ids:0
+msgid "Dimension Values"
+msgstr "Valores da Dimensão"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension_types
+msgid "Dimension types"
+msgstr "Tipos de Dimensão"
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,allow_custom_value:0
+msgid "If true, custom values can be entered in the product configurator"
+msgstr ""
+"Se verdadeiro, o valor personalizado pode ser inserido no configurador do "
+"produto"
+
+#. module: product_variant_multi
+#: constraint:ir.ui.view:0
+msgid "Invalid XML for View Architecture!"
+msgstr "XML Inválido para a Arquitectura de Vista!"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Product Variant"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name_separator:0
+msgid "Variant Model Name Separator"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+#: view:product.variant.dimension.value:0
+msgid "Variant Value"
+msgstr "Valor da Variável"
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_value
+#: field:product.variant.dimension.option,name:0
+msgid "Dimension Value"
+msgstr "Valor da Dimensão"
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_template
+#: field:product.variant.dimension.type,product_tmpl_id:0
+#: field:product.variant.dimension.value,product_tmpl_id:0
+msgid "Product Template"
+msgstr "Producto Modelo"
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name:0
+msgid "Variant Model Name"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_value_form
+msgid "Values"
+msgstr "Valores"
+
+#. module: product_variant_multi
+#: model:ir.module.module,shortdesc:product_variant_multi.module_meta_information
+msgid "Products with multi-level variants"
+msgstr "Produtos com variáveis multi-nível"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,name:0
+msgid "Dimension"
+msgstr "Dimensão"
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+msgid "Variant Type"
+msgstr "Tipo de Variável"
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_template
+#: model:ir.ui.menu,name:product_variant_multi.menu_template
+msgid "Product Templates"
+msgstr "Producto Modelos"
+
+#. module: product_variant_multi
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension
+msgid "Variant Dimensions"
+msgstr "Dimensões da Variável"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.option,sequence:0
+#: field:product.variant.dimension.type,sequence:0
+#: field:product.variant.dimension.value,sequence:0
+msgid "Sequence"
+msgstr "Sequência"
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name_separator:0
+msgid "Add a separator between the elements of the variant name"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.module.module,description:product_variant_multi.module_meta_information
+msgid ""
+"OpenERP is already supporting a product variants at the core level. But\n"
+"without this module, variants are only mono-axial. OpenERP indeed uses the "
+"product.tempate\n"
+"as the model object and the product.variant as the instance variant.\n"
+"Using this module, you can now easily deal with multi-axial variants.\n"
+"A product.template, now has a set of dimensions (like Color, Size, anything "
+"you want).\n"
+"For each dimension, a product.template has a set of dimension values (like "
+"Red, Green\n"
+"for the Color dimension). For each dimension, you can accept or not custom "
+"dimension\n"
+"values. The sale interface product configurator will take it into account.\n"
+"Once the product.template is set up, you can use a 'generator' button that "
+"will populate\n"
+"the space of the variants. You could also choose to populate only some "
+"combinations\n"
+"by hand instead.\n"
+"Each variant can have an extra price that will be taken into account when "
+"computing\n"
+"the base listed price. Yet to be implemented: a price extra per variant "
+"dimension value.\n"
+"Finally, this module is better used along with the "
+"product_variant_configurator which\n"
+"will help the salesman selecting the appropriate variant in the sale order "
+"line\n"
+"using dimension criteria instead of having to crawl the full space of "
+"variants.\n"
+"    "
+msgstr ""
+"O OpenERP já se encontra a apoiar uma variáveis de produto à nível central. "
+"Mas \n"
+"sem este módulo, variáveis são apenas mono-axial. O OpenERP de facto utiliza "
+"o product.template\n"
+"como objecto modelo e o product.variants como a variável exemplo.\n"
+"Com a utilização deste módulo, pode lidar facilmente com as variáveis multi-"
+"axial.\n"
+"Um product.template, agora tem um conjunto de dimensões (como Cor, Tamanho, "
+"qualquer coisa que quiser.)\n"
+"Para cada dimensão, um product.template tem um conjunto de valores de "
+"dimensão (como Vermelho, Verde\n"
+"para a dimensão Cor). Para cada dimensão, pode aceitar ou não valores de "
+"dimensão personalisada.\n"
+"O configurador de venda de producto vai tomá-lo em conta.\n"
+"Uma vez que o product.template é criado, pode utilizar o botão 'gerador' que "
+"vai preencher\n"
+"o espaço das variavéis. Pode também escolher preencher algumas combinações\n"
+"de uma vez. \n"
+"Cada variável pode ter um preço extra que vai ser tomado em conta quando "
+"processado\n"
+"a lista de preço base. Ainda para ser implementado: um preço extra por valor "
+"da dimensão da variável.\n"
+"Finalmente, este módulo é melhor utilizado juntamente com o "
+"product_variant_configurator que\n"
+"vai ajudar o vendedor a selecionar a variável apropriada na linha de ordem "
+"de venda\n"
+"com o uso do critério de dimensão em vez de ter que rastrear todos os "
+"espaços das variavéis.\n"
+"    "
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_type
+#: field:product.variant.dimension.option,dimension_id:0
+#: field:product.variant.dimension.value,dimension_id:0
+msgid "Dimension Type"
+msgstr "Tipo de Dimensão"
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Price"
+msgstr ""

=== added file 'product_multi_variant/i18n/sv.po'
--- product_multi_variant/i18n/sv.po	1970-01-01 00:00:00 +0000
+++ product_multi_variant/i18n/sv.po	2013-02-27 17:36:20 +0000
@@ -0,0 +1,290 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+#	* product_variant_multi
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: OpenERP Server 5.0.14\n"
+"Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
+"POT-Creation-Date: 2011-01-19 17:00+0000\n"
+"PO-Revision-Date: 2010-11-23 02:01+0000\n"
+"Last-Translator: Olivier Dony (OpenERP) <Unknown>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2012-12-05 05:40+0000\n"
+"X-Generator: Launchpad (build 16335)\n"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_extra:0
+msgid "Sale Price Extra"
+msgstr ""
+
+#. module: product_variant_multi
+#: constraint:ir.model:0
+msgid ""
+"The Object name must start with x_ and not contain any special character !"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Generate ->"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.product,cost_price_extra:0
+msgid "Purchase Extra Cost"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,is_multi_variants:0
+msgid "Is Multi Variants?"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,dimension_sequence:0
+msgid "Related Dimension Sequence"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.template,code_generator:0
+msgid ""
+"enter the model for the product code, all parameter between [_o.my_field_] "
+"will be replace by the product field. Example product_code model : "
+"prefix_[_o.variants_]_suffixe ==> result : prefix_2S2T_suffix"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,allow_custom_value:0
+msgid "Allow Custom Value"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,sequence:0
+msgid ""
+"The product 'variants' code will use this to order the dimension values"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+msgid "Build Code ->"
+msgstr ""
+
+#. module: product_variant_multi
+#: constraint:ir.actions.act_window:0
+msgid "Invalid model name in the action definition."
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.product:0
+#: field:product.product,dimension_value_ids:0
+msgid "Dimensions"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,dimension_type_ids:0
+#: view:product.variant.dimension.type:0
+msgid "Dimension Types"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Template Sale Price"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,description:0
+msgid "Description"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,code_generator:0
+msgid "Code Generator"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,mandatory_dimension:0
+msgid ""
+"If false, variant products will be created with and without this dimension"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.value,price_margin:0
+msgid "Sale Price Margin"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,mandatory_dimension:0
+msgid "Mandatory Dimension"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name:0
+msgid ""
+"[NAME] will be replaced by the name of the dimension and [VALUE] by is "
+"value. Example of Variant Model Name : \"[NAME] - [VALUE]\""
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type_form
+msgid "Types"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,variant_ids:0
+msgid "Variants"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_variant
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant
+msgid "Product Variants"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: field:product.template,value_ids:0
+msgid "Dimension Values"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_type
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension_types
+msgid "Dimension types"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.variant.dimension.type,allow_custom_value:0
+msgid "If true, custom values can be entered in the product configurator"
+msgstr ""
+
+#. module: product_variant_multi
+#: constraint:ir.ui.view:0
+msgid "Invalid XML for View Architecture!"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Product Variant"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name_separator:0
+msgid "Variant Model Name Separator"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+#: view:product.variant.dimension.value:0
+msgid "Variant Value"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_value
+#: field:product.variant.dimension.option,name:0
+msgid "Dimension Value"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_template
+#: field:product.variant.dimension.type,product_tmpl_id:0
+#: field:product.variant.dimension.value,product_tmpl_id:0
+msgid "Product Template"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.template,variant_model_name:0
+msgid "Variant Model Name"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.action_dimension_value_form
+msgid "Values"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.module.module,shortdesc:product_variant_multi.module_meta_information
+msgid "Products with multi-level variants"
+msgstr "Products with multi-level variants"
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.type,name:0
+msgid "Dimension"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.template:0
+#: view:product.variant.dimension.type:0
+msgid "Variant Type"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.actions.act_window,name:product_variant_multi.product_template
+#: model:ir.ui.menu,name:product_variant_multi.menu_template
+msgid "Product Templates"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.ui.menu,name:product_variant_multi.menu_variant_dimension
+msgid "Variant Dimensions"
+msgstr ""
+
+#. module: product_variant_multi
+#: field:product.variant.dimension.option,sequence:0
+#: field:product.variant.dimension.type,sequence:0
+#: field:product.variant.dimension.value,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: product_variant_multi
+#: help:product.template,variant_model_name_separator:0
+msgid "Add a separator between the elements of the variant name"
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.module.module,description:product_variant_multi.module_meta_information
+msgid ""
+"OpenERP is already supporting a product variants at the core level. But\n"
+"without this module, variants are only mono-axial. OpenERP indeed uses the "
+"product.tempate\n"
+"as the model object and the product.variant as the instance variant.\n"
+"Using this module, you can now easily deal with multi-axial variants.\n"
+"A product.template, now has a set of dimensions (like Color, Size, anything "
+"you want).\n"
+"For each dimension, a product.template has a set of dimension values (like "
+"Red, Green\n"
+"for the Color dimension). For each dimension, you can accept or not custom "
+"dimension\n"
+"values. The sale interface product configurator will take it into account.\n"
+"Once the product.template is set up, you can use a 'generator' button that "
+"will populate\n"
+"the space of the variants. You could also choose to populate only some "
+"combinations\n"
+"by hand instead.\n"
+"Each variant can have an extra price that will be taken into account when "
+"computing\n"
+"the base listed price. Yet to be implemented: a price extra per variant "
+"dimension value.\n"
+"Finally, this module is better used along with the "
+"product_variant_configurator which\n"
+"will help the salesman selecting the appropriate variant in the sale order "
+"line\n"
+"using dimension criteria instead of having to crawl the full space of "
+"variants.\n"
+"    "
+msgstr ""
+
+#. module: product_variant_multi
+#: model:ir.model,name:product_variant_multi.model_product_variant_dimension_type
+#: field:product.variant.dimension.option,dimension_id:0
+#: field:product.variant.dimension.value,dimension_id:0
+msgid "Dimension Type"
+msgstr ""
+
+#. module: product_variant_multi
+#: view:product.product:0
+msgid "Price"
+msgstr ""

=== added file 'product_multi_variant/product_variant.py'
--- product_multi_variant/product_variant.py	1970-01-01 00:00:00 +0000
+++ product_multi_variant/product_variant.py	2013-02-27 17:36:20 +0000
@@ -0,0 +1,503 @@
+# -*- encoding: utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution
+#    Copyright (C) 2004-2008 Tiny SPRL (<http://tiny.be>). All Rights Reserved
+#    Copyright (C) 2010-2011 Akretion (www.akretion.com). All Rights Reserved
+#    @author Sebatien Beau <sebastien.beau@xxxxxxxxxxxx>
+#    @author Raphaël Valyi <raphael.valyi@xxxxxxxxxxxx>
+#    @author Alexis de Lattre <alexis.delattre@xxxxxxxxxxxx>
+#    update to use a single "Generate/Update" button & price computation code
+#
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU General Public License as published by
+#    the Free Software Foundation, either version 3 of the License, or
+#    (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
+from openerp import tools
+from openerp.osv import fields, osv
+
+# Lib to eval python code with security
+from openerp.tools.safe_eval import safe_eval
+from openerp.tools.translate import _
+
+import openerp.addons.decimal_precision as dp
+
+import logging
+_logger = logging.getLogger(__name__)
+
+#
+# Dimensions Definition
+#
+class product_variant_dimension_type(osv.osv):
+    _name = "product.variant.dimension.type"
+    _description = "Dimension Type"
+
+    _columns = {
+        'description': fields.char('Description', size=64, translate=True),
+        'name' : fields.char('Dimension', size=64, required=True),
+        'sequence' : fields.integer('Sequence', help="The product 'variants' code will use this to order the dimension values"),
+        'option_ids' : fields.one2many('product.variant.dimension.option', 'dimension_id', 'Dimension Options'),
+        'product_tmpl_id': fields.many2many('product.template', 'product_template_dimension_rel', 'dimension_id', 'template_id', 'Product Template'),
+        'allow_custom_value': fields.boolean('Allow Custom Value', help="If true, custom values can be entered in the product configurator"),
+        'mandatory_dimension': fields.boolean('Mandatory Dimension', help="If false, variant products will be created with and without this dimension"),
+    }
+
+    _defaults = {
+        'mandatory_dimension': lambda * a: 1,
+    }
+
+    _order = "sequence, name"
+
+    def name_search(self, cr, user, name='', args=None, operator='ilike', context=None, limit=None):
+        if not context.get('product_tmpl_id', False):
+            args = None
+        return super(product_variant_dimension_type, self).name_search(cr, user, '', args, 'ilike', None, None)
+
+product_variant_dimension_type()
+
+
+class product_variant_dimension_option(osv.osv):
+    _name = "product.variant.dimension.option"
+    _description = "Dimension Option"
+
+    def _get_dimension_values(self, cr, uid, ids, context=None):
+        return self.pool.get('product.variant.dimension.value').search(cr, uid, [('dimension_id', 'in', ids)], context=context)
+
+    _columns = {
+        'name' : fields.char('Name', size=64, required=True),
+        'code' : fields.char('Code', size=64),
+        'sequence' : fields.integer('Sequence'),
+        'dimension_id' : fields.many2one('product.variant.dimension.type', 'Dimension Type', ondelete='cascade'),
+    }
+
+    #_order = "dimension_id, sequence, to_number(name, '')"
+    _order = "dimension_id, sequence, name"
+
+product_variant_dimension_option()
+
+
+class product_variant_dimension_value(osv.osv):
+    _name = "product.variant.dimension.value"
+    _description = "Dimension Value"
+
+    def unlink(self, cr, uid, ids, context=None):
+        for value in self.browse(cr, uid, ids, context=context):
+            if value.product_ids:
+                product_list = '\n    - ' + '\n    - '.join([product.name for product in value.product_ids])
+                raise osv.except_osv(_('Dimension value can not be removed'), _("The value %s is used by the products : %s \n Please remove these products before removing the value." % (value.option_id.name, product_list)))
+        return super(product_variant_dimension_value, self).unlink(cr, uid, ids, context)
+
+    def _get_values_from_types(self, cr, uid, ids, context=None):
+        return self.pool.get('product.variant.dimension.value').search(cr, uid, [('dimension_id', 'in', ids)], context=context)
+
+    def _get_values_from_options(self, cr, uid, ids, context=None):
+        return self.pool.get('product.variant.dimension.value').search(cr, uid, [('option_id', 'in', ids)], context=context)
+
+    _columns = {
+        'option_id' : fields.many2one('product.variant.dimension.option', 'Option', required=True),
+        'name': fields.related('option_id', 'name', type='char', relation='product.variant.dimension.option', string="Dimension value", readonly=True),
+        'sequence' : fields.integer('Sequence'),
+        'price_extra' : fields.float('Sale Price Extra', digits_compute=dp.get_precision('Sale Price')),
+        'price_margin' : fields.float('Sale Price Margin', digits_compute=dp.get_precision('Sale Price')),
+        'cost_price_extra' : fields.float('Cost Price Extra', digits_compute=dp.get_precision('Purchase Price')),
+        'dimension_id' : fields.related('option_id', 'dimension_id', type="many2one", relation="product.variant.dimension.type", string="Dimension Type", readonly=True, store={
+            'product.variant.dimension.value': (lambda self, cr, uid, ids, c={}: ids, ['option_id'], 10),
+            'product.variant.dimension.option': (_get_values_from_options, ['dimension_id'], 20),
+                }),
+        'product_tmpl_id': fields.many2one('product.template', 'Product Template', ondelete='cascade'),
+        'dimension_sequence': fields.related('dimension_id', 'sequence', type='integer', relation='product.variant.dimension.type', string="Related Dimension Sequence", #used for ordering purposes in the "variants"
+             store={
+                'product.variant.dimension.type': (_get_values_from_types, ['sequence'], 10),
+            }),
+        'product_ids': fields.many2many('product.product', 'product_product_dimension_rel', 'dimension_id', 'product_id', 'Variant', readonly=True),
+        'active' : fields.boolean('Active?', help="If false, this value will be not use anymore for generating variant"),
+    }
+
+    _defaults = {
+        'active': lambda * a: 1,
+    }
+
+    _sql_constraints = [ ('opt_dim_tmpl_uniq', 'UNIQUE(option_id, dimension_id, product_tmpl_id)',
+                _('The combination option and dimension type already exists for this product template !')), ]
+
+    _order = "dimension_sequence, dimension_id, sequence, option_id"
+
+product_variant_dimension_value()
+
+
+class product_template(osv.osv):
+    _inherit = "product.template"
+    
+    _order ='name'
+
+    _columns = {
+        'name': fields.char('Name', size=128, translate=True, select=True),
+        'dimension_type_ids':fields.many2many('product.variant.dimension.type', 'product_template_dimension_rel', 'template_id', 'dimension_id', 'Dimension Types'),
+        'value_ids': fields.one2many('product.variant.dimension.value', 'product_tmpl_id', 'Dimension Values'),
+        'variant_ids':fields.one2many('product.product', 'product_tmpl_id', 'Variants'),
+        'variant_model_name':fields.char('Variant Model Name', size=64, required=True, help='[_o.dimension_id.name_] will be replaced by the name of the dimension and [_o.option_id.code_] by the code of the option. Example of Variant Model Name : "[_o.dimension_id.name_] - [_o.option_id.code_]"'),
+        'variant_model_name_separator':fields.char('Variant Model Name Separator', size=64, help='Add a separator between the elements of the variant name'),
+        'code_generator' : fields.char('Code Generator', size=256, help='enter the model for the product code, all parameter between [_o.my_field_] will be replace by the product field. Example product_code model : prefix_[_o.variants_]_suffixe ==> result : prefix_2S2T_suffix'),
+        'is_multi_variants' : fields.boolean('Is Multi Variants?'),
+        'variant_track_production' : fields.boolean('Track Production Lots on variants ?'),
+        'variant_track_incoming' : fields.boolean('Track Incoming Lots on variants ?'),
+        'variant_track_outgoing' : fields.boolean('Track Outgoing Lots on variants ?'),
+        'do_not_update_variant' : fields.boolean("Don't Update Variant"),
+        'do_not_generate_new_variant' : fields.boolean("Don't Generate New Variant"),
+    }
+
+    _defaults = {
+        'variant_model_name': lambda * a: '[_o.dimension_id.name_] - [_o.option_id.name_]',
+        'variant_model_name_separator': lambda * a: ' - ',
+        'is_multi_variants' : lambda * a: False,
+        'code_generator' : "[_'-'.join([x.option_id.name for x in o.dimension_value_ids] or ['CONF'])_]",
+    }
+
+    def unlink(self, cr, uid, ids, context=None):
+        if context and context.get('unlink_from_product_product', False):
+            for template in self.browse(cr, uid, ids, context):
+                if not template.is_multi_variants:
+                    super(product_template, self).unlink(cr, uid, [template.id], context)
+        return True
+
+    def add_all_option(self, cr, uid, ids, context=None):
+        #Reactive all unactive values
+        value_obj = self.pool.get('product.variant.dimension.value')
+        for template in self.browse(cr, uid, ids, context=context):
+            values_ids = value_obj.search(cr, uid, [['product_tmpl_id', '=', template.id], '|', ['active', '=', False], ['active', '=', True]], context=context)
+            value_obj.write(cr, uid, values_ids, {'active':True}, context=context)
+            existing_option_ids = [value.option_id.id for value in value_obj.browse(cr, uid, values_ids, context=context)]
+            vals = {'value_ids' : []}
+            for dim in template.dimension_type_ids:
+                for option in dim.option_ids:
+                    if not option.id in existing_option_ids:
+                        vals['value_ids'] += [[0, 0, {'option_id': option.id}]]
+            self.write(cr, uid, [template.id], vals, context=context)
+        return True
+
+    def get_products_from_product_template(self, cr, uid, ids, context=None):
+        product_tmpl = self.read(cr, uid, ids, ['variant_ids'], context=context)
+        return [id for vals in product_tmpl for id in vals['variant_ids']]
+
+    def copy(self, cr, uid, id, default=None, context=None):
+        if default is None:
+            default = {}
+        default = default.copy()
+        default.update({'variant_ids':False, })
+        return super(product_template, self).copy(cr, uid, id, default, context)
+
+    def copy_translations(self, cr, uid, old_id, new_id, context=None):
+        if context is None:
+            context = {}
+        # avoid recursion through already copied records in case of circular relationship
+        seen_map = context.setdefault('__copy_translations_seen', {})
+        if old_id in seen_map.setdefault(self._name, []):
+            return
+        seen_map[self._name].append(old_id)
+        return super(product_template, self).copy_translations(cr, uid, old_id, new_id, context=context)
+
+    def _create_variant_list(self, cr, ids, uid, vals, context=None):
+
+        def cartesian_product(args):
+            if len(args) == 1: return [x and [x] or [] for x in args[0]]
+            return [(i and [i] or []) + j for j in cartesian_product(args[1:]) for i in args[0]]
+
+        return cartesian_product(vals)
+
+    def button_generate_variants(self, cr, uid, ids, context=None):
+        variants_obj = self.pool.get('product.product')
+
+        for product_temp in self.browse(cr, uid, ids, context):
+            #for temp_type in product_temp.dimension_type_ids:
+            #    temp_val_list.append([temp_type_value.id for temp_type_value in temp_type.value_ids] + (not temp_type.mandatory_dimension and [None] or []))
+                #TODO c'est quoi ça??
+                # if last dimension_type has no dimension_value, we ignore it
+            #    if not temp_val_list[-1]:
+            #        temp_val_list.pop()
+            res = {}
+            temp_val_list = []
+            for value in product_temp.value_ids:
+                if res.get(value.dimension_id, False):
+                    res[value.dimension_id] += [value.id]
+                else:
+                    res[value.dimension_id] = [value.id]
+            for dim in res:
+                temp_val_list += [res[dim] + (not dim.mandatory_dimension and [None] or [])]
+
+            existing_product_ids = variants_obj.search(cr, uid, [('product_tmpl_id', '=', product_temp.id)])
+            created_product_ids = []
+            if temp_val_list and not product_temp.do_not_generate_new_variant:
+                list_of_variants = self._create_variant_list(cr, uid, ids, temp_val_list, context)
+                existing_product_dim_value = variants_obj.read(cr, uid, existing_product_ids, ['dimension_value_ids'])
+                list_of_variants_existing = [x['dimension_value_ids'] for x in existing_product_dim_value]
+                for x in list_of_variants_existing:
+                    x.sort()
+                for x in list_of_variants:
+                    x.sort()
+                list_of_variants_to_create = [x for x in list_of_variants if not x in list_of_variants_existing]
+
+                _logger.debug("variant existing : %s, variant to create : %s", len(list_of_variants_existing), len(list_of_variants_to_create))
+                count = 0
+                for variant in list_of_variants_to_create:
+                    count += 1
+
+                    vals = {}
+                    vals['track_production'] = product_temp.variant_track_production
+                    vals['track_incoming'] = product_temp.variant_track_incoming
+                    vals['track_outgoing'] = product_temp.variant_track_outgoing
+                    vals['product_tmpl_id'] = product_temp.id
+                    vals['dimension_value_ids'] = [(6, 0, variant)]
+
+                    cr.execute("SAVEPOINT pre_variant_save")
+                    try:
+                        created_product_ids.append(variants_obj.create(cr, uid, vals, {'generate_from_template' : True}))
+                        if count % 50 == 0:
+                            _logger.debug("product created : %s", count)
+                    except Exception, e:
+                        _logger.error("Error creating product variant: %s", e, exc_info=True)
+                        _logger.debug("Values used to attempt creation of product variant: %s", vals)
+                        cr.execute("ROLLBACK TO SAVEPOINT pre_variant_save")
+                    cr.execute("RELEASE SAVEPOINT pre_variant_save")
+
+                _logger.debug("product created : %s", count)
+
+            if not product_temp.do_not_update_variant:
+                product_ids = existing_product_ids + created_product_ids
+            else:
+                product_ids = created_product_ids
+
+            # FIRST, Generate/Update variant names ('variants' field)
+            _logger.debug("Starting to generate/update variant names...")
+            self.pool.get('product.product').build_variants_name(cr, uid, product_ids, context=context)
+            _logger.debug("End of the generation/update of variant names.")
+            # SECOND, Generate/Update product codes and properties (we may need variants name for that)
+            _logger.debug("Starting to generate/update product codes and properties...")
+            self.pool.get('product.product').build_product_code_and_properties(cr, uid, product_ids, context=context)
+            _logger.debug("End of the generation/update of product codes and properties.")
+            # THIRD, Generate/Update product names (we may need variants name for that)
+            _logger.debug("Starting to generate/update product names...")
+            self.pool.get('product.product').build_product_name(cr, uid, product_ids, context=context)
+            _logger.debug("End of generation/update of product names.")
+            _logger.debug("Starting to updating prices ...")
+            self.pool.get('product.product').update_variant_price(cr, uid, product_ids, context=context)
+            _logger.debug("End of updating prices.")
+        return True
+
+product_template()
+
+
+class product_product(osv.osv):
+    _inherit = "product.product"
+
+    def init(self, cr):
+        #For the first installation if you already have product in your database the name of the existing product will be empty, so we fill it
+        cr.execute("update product_product set name=name_template where name is null;")
+        return True
+
+    def unlink(self, cr, uid, ids, context=None):
+        if not context:
+            context = {}
+        context['unlink_from_product_product'] = True
+        return super(product_product, self).unlink(cr, uid, ids, context)
+
+    def build_product_name(self, cr, uid, ids, context=None):
+        return self.build_product_field(cr, uid, ids, 'name', context=None)
+
+    def build_product_field(self, cr, uid, ids, field, context=None):
+        def get_description_sale(product):
+            return self.parse(cr, uid, product, product.product_tmpl_id.description_sale, context=context)
+
+        def get_name(product):
+            return (product.product_tmpl_id.name or '') + ' ' + (product.variants or '')
+
+        if not context:
+            context = {}
+        context['is_multi_variants'] = True
+        obj_lang = self.pool.get('res.lang')
+        lang_ids = obj_lang.search(cr, uid, [('translatable', '=', True)], context=context)
+        lang_code = [x['code'] for x in obj_lang.read(cr, uid, lang_ids, ['code'], context=context)]
+        for code in lang_code:
+            context['lang'] = code
+            for product in self.browse(cr, uid, ids, context=context):
+                new_field_value = eval("get_" + field + "(product)") # TODO convert to safe_eval
+                cur_field_value = safe_eval("product." + field, {'product': product})
+                if new_field_value != cur_field_value:
+                    self.write(cr, uid, [product.id], {field: new_field_value}, context=context)
+        return True
+
+    def parse(self, cr, uid, o, text, context=None):
+        if not text:
+            return ''
+        vals = text.split('[_')
+        description = ''
+        for val in vals:
+            if '_]' in val:
+                sub_val = val.split('_]')
+                description += (safe_eval(sub_val[0], {'o' :o, 'context':context}) or '') + sub_val[1]
+            else:
+                description += val
+        return description
+
+    def generate_product_code(self, cr, uid, product_obj, code_generator, context=None):
+        '''I wrote this stupid function to be able to inherit it in a custom module !'''
+        return self.parse(cr, uid, product_obj, code_generator, context=context)
+
+    def build_product_code_and_properties(self, cr, uid, ids, context=None):
+        for product in self.browse(cr, uid, ids, context=context):
+            new_default_code = self.generate_product_code(cr, uid, product, product.product_tmpl_id.code_generator, context=context)
+            current_values = {
+                'default_code': product.default_code,
+                'track_production': product.track_production,
+                'track_outgoing': product.track_outgoing,
+                'track_incoming': product.track_incoming,
+            }
+            new_values = {
+                'default_code': new_default_code,
+                'track_production': product.product_tmpl_id.variant_track_production,
+                'track_outgoing': product.product_tmpl_id.variant_track_outgoing,
+                'track_incoming': product.product_tmpl_id.variant_track_incoming,
+            }
+            if new_values != current_values:
+                self.write(cr, uid, [product.id], new_values, context=context)
+        return True
+
+    def product_ids_variant_changed(self, cr, uid, ids, res, context=None):
+        '''it's a hook for product_variant_multi advanced'''
+        return True
+
+    def generate_variant_name(self, cr, uid, product_id, context=None):
+        '''Do the generation of the variant name in a dedicated function, so that we can
+        inherit this function to hack the code generation'''
+        product = self.browse(cr, uid, product_id, context=context)
+        model = product.variant_model_name
+        r = map(lambda dim: [dim.dimension_id.sequence , self.parse(cr, uid, dim, model, context=context)], product.dimension_value_ids)
+        r.sort()
+        r = [x[1] for x in r]
+        new_variant_name = (product.variant_model_name_separator or '').join(r)
+        return new_variant_name
+
+    def build_variants_name(self, cr, uid, ids, context=None):
+        for product in self.browse(cr, uid, ids, context=context):
+            new_variant_name = self.generate_variant_name(cr, uid, product.id, context=context)
+            if new_variant_name != product.variants:
+                self.write(cr, uid, [product.id], {'variants': new_variant_name}, context=context)
+        return True
+
+    def update_variant_price(self, cr, uid, ids, context=None):
+        for product in self.browse(cr, uid, ids, context=context):
+            extra_prices = {
+                'cost_price_extra': 0,
+                'price_extra': 0,
+            }
+            for var_obj in product.dimension_value_ids:
+                extra_prices['cost_price_extra'] += var_obj.cost_price_extra
+                extra_prices['price_extra'] += var_obj.price_extra
+            product.write(extra_prices, context=context)
+        return True
+
+    def _check_dimension_values(self, cr, uid, ids): # TODO: check that all dimension_types of the product_template have a corresponding dimension_value ??
+        for product in self.browse(cr, uid, ids, {}):
+            buffer = []
+            for value in product.dimension_value_ids:
+                buffer.append(value.dimension_id)
+            unique_set = set(buffer)
+            if len(unique_set) != len(buffer):
+                raise osv.except_osv(_('Constraint error :'), _("On product '%s', there are several dimension values for the same dimension type.") % product.name)
+        return True
+
+    def compute_product_dimension_extra_price(self, cr, uid, product_id, product_price_extra=False, dim_price_margin=False, dim_price_extra=False, context=None):
+        if context is None:
+            context = {}
+        dimension_extra = 0.0
+        product = self.browse(cr, uid, product_id, context=context)
+        for dim in product.dimension_value_ids:
+            if product_price_extra and dim_price_margin and dim_price_extra:
+                dimension_extra += safe_eval('product.' + product_price_extra, {'product': product}) * safe_eval('dim.' + dim_price_margin, {'dim': dim}) + safe_eval('dim.' + dim_price_extra, {'dim': dim})
+            elif not product_price_extra and not dim_price_margin and dim_price_extra:
+                dimension_extra += safe_eval('dim.' + dim_price_extra, {'dim': dim})
+            elif product_price_extra and dim_price_margin and not dim_price_extra:
+                dimension_extra += safe_eval('product.' + product_price_extra, {'product': product}) * safe_eval('dim.' + dim_price_margin, {'dim': dim})
+            elif product_price_extra and not dim_price_margin and dim_price_extra:
+                dimension_extra += safe_eval('product.' + product_price_extra, {'product': product}) + safe_eval('dim.' + dim_price_extra, {'dim': dim})
+
+        if 'uom' in context:
+            product_uom_obj = self.pool.get('product.uom')
+            uom = product.uos_id or product.uom_id
+            dimension_extra = product_uom_obj._compute_price(cr, uid,
+                uom.id, dimension_extra, context['uom'])
+        return dimension_extra
+
+    def compute_dimension_extra_price(self, cr, uid, ids, result, product_price_extra=False, dim_price_margin=False, dim_price_extra=False, context=None):
+        if context is None:
+            context = {}
+        for product in self.browse(cr, uid, ids, context=context):
+            dimension_extra = self.compute_product_dimension_extra_price(cr, uid, product.id, product_price_extra=product_price_extra, dim_price_margin=dim_price_margin, dim_price_extra=dim_price_extra, context=context)
+            result[product.id] += dimension_extra
+        return result
+
+    def price_get(self, cr, uid, ids, ptype='list_price', context=None):
+        if context is None:
+            context = {}
+        result = super(product_product, self).price_get(cr, uid, ids, ptype, context=context)
+        if ptype == 'list_price': #TODO check if the price_margin on the dimension is very usefull, maybe we will remove it
+            result = self.compute_dimension_extra_price(cr, uid, ids, result, product_price_extra='price_extra', dim_price_margin='price_margin', dim_price_extra='price_extra', context=context)
+        elif ptype == 'standard_price':
+            result = self.compute_dimension_extra_price(cr, uid, ids, result, product_price_extra='cost_price_extra', dim_price_extra='cost_price_extra', context=context)
+        return result
+
+    def _product_lst_price(self, cr, uid, ids, name, arg, context=None):
+        if context is None:
+            context = {}
+        result = super(product_product, self)._product_lst_price(cr, uid, ids, name, arg, context=context)
+        result = self.compute_dimension_extra_price(cr, uid, ids, result, product_price_extra='price_extra', dim_price_margin='price_margin', dim_price_extra='price_extra', context=context)
+        return result
+
+    def copy(self, cr, uid, id, default=None, context=None):
+        if default is None:
+            default = {}
+        default = default.copy()
+        default.update({'variant_ids':False})
+        return super(product_product, self).copy(cr, uid, id, default, context)
+
+    def _product_compute_weight_volume(self, cr, uid, ids, fields, arg, context=None):
+        result = {}
+        for product in self.browse(cr, uid, ids, context=context):
+            result[product.id] = {}
+            result[product.id]['total_weight'] = product.weight + product.additional_weight
+            result[product.id]['total_weight_net'] = product.weight_net + product.additional_weight_net
+            result[product.id]['total_volume'] = product.volume + product.additional_volume
+        return result
+
+    _columns = {
+        'name': fields.char('Name', size=128, translate=True, select=True),
+        'variants': fields.char('Variants', size=328),
+        'dimension_value_ids': fields.many2many('product.variant.dimension.value', 'product_product_dimension_rel', 'product_id', 'dimension_id', 'Dimensions', domain="[('product_tmpl_id','=',product_tmpl_id)]"),
+        'cost_price_extra' : fields.float('Purchase Extra Cost', digits_compute=dp.get_precision('Purchase Price')),
+        'lst_price' : fields.function(_product_lst_price, method=True, type='float', string='List Price', digits_compute=dp.get_precision('Sale Price')),
+        #the way the weight are implemented are not clean at all, we should redesign the module product form the addons in order to get something correclty.
+        #indeed some field of the template have to be overwrited like weight, name, weight_net, volume.
+        #in order to have a consitent api we should use the same field for getting the weight, now we have to use "weight" or "total_weight" not clean at all with external syncronization
+        'total_weight': fields.function(_product_compute_weight_volume, method=True, type='float', string='Gross weight', help="The gross weight in Kg.", multi='weight_volume'),
+        'total_weight_net': fields.function(_product_compute_weight_volume, method=True, type='float', string='Net weight', help="The net weight in Kg.", multi='weight_volume'),
+        'total_volume':  fields.function(_product_compute_weight_volume, method=True, type='float', string='Volume', help="The volume in m3.", multi='weight_volume'),
+        'additional_weight': fields.float('Additional Gross weight', help="The additional gross weight in Kg."),
+        'additional_weight_net': fields.float('Additional Net weight', help="The additional net weight in Kg."),
+        'additional_volume': fields.float('Additional Volume', help="The additional volume in Kg."),
+    }
+
+    _constraints = [
+        (_check_dimension_values, 'Error msg in raise', ['dimension_value_ids']),
+    ]
+
+product_product()

=== added file 'product_multi_variant/product_view.xml'
--- product_multi_variant/product_view.xml	1970-01-01 00:00:00 +0000
+++ product_multi_variant/product_view.xml	2013-02-27 17:36:20 +0000
@@ -0,0 +1,360 @@
+<?xml version="1.0" ?>
+<openerp>
+    <data>
+
+<!--
+  "Product variant multi" module for OpenERP
+  The licence is in the file __openerp__.py
+  @author Alexis de Lattre <alexis.delattre@xxxxxxxxxxxx>
+  @author Sebastien Beau <sebastien.beau@xxxxxxxxxxxx>
+-->
+
+
+        <record id="product_variant" model="ir.actions.act_window">
+            <field name="name">Product Variants</field>
+            <field name="res_model">product.product</field>
+            <field name="view_type">form</field>
+            <field name="view_mode">tree,form</field>
+        </record>
+
+        <record id="product_template" model="ir.actions.act_window">
+            <field name="name">Product Templates</field>
+            <field name="res_model">product.template</field>
+            <field name="view_type">form</field>
+           	<field name="domain">[('is_multi_variants','=',True)]</field>			
+            <field name="view_mode">tree,form</field>
+        </record>
+
+        <menuitem action="product_template" id="menu_template" parent="stock.menu_stock_product" />
+
+        <menuitem action="product_variant" id="menu_variant" parent="stock.menu_stock_product" />
+
+        <menuitem name="Variant dimensions" id="menu_variant_dimension" parent="stock.menu_product_in_config_stock" />
+
+        <!-- Views from Dimension option -->
+        <record id="product_variant_multi_dimension_option_tree" model="ir.ui.view">
+            <field name="name">product.variant.multi.dimension.option.tree</field>
+            <field name="model">product.variant.dimension.option</field>
+            <field name="type">tree</field>
+            <field name="arch" type="xml">
+                <tree string="Dimension Options">
+                    <field name="dimension_id" invisible="not context.get('dimension_value_main_view', False)" />
+                    <field name="name" />
+                    <field name="sequence" />
+                    <field name="code" />
+                </tree>
+            </field>
+        </record>
+
+        <record id="product_variant_multi_dimension_option_form" model="ir.ui.view">
+            <field name="name">product.variant.multi.dimension.option.form</field>
+            <field name="model">product.variant.dimension.option</field>
+            <field name="type">form</field>
+            <field name="arch" type="xml">
+                <form string="Dimension Options">
+                    <field name="dimension_id" select="1" invisible="not context.get('dimension_option_main_view', False)" />
+                    <newline />
+                    <field name="sequence" />
+                    <field name="name" select="1" />
+                    <field name="code" />
+                </form>
+            </field>
+        </record>
+
+        <!-- Default action for Dimension option -->
+		<record id="action_dimension_option" model="ir.actions.act_window">
+			<field name="name">Dimension Options</field>
+			<field name="res_model">product.variant.dimension.option</field>
+            <field name="view_type">form</field>
+			<field name="view_mode">tree,form</field>
+            <field name="context">{'dimension_option_main_view': True}</field>
+		</record>
+
+        <!-- Menu entry for Dimension values -->
+		<menuitem id="menu_variant_dimension_option" icon="STOCK_JUSTIFY_FILL" parent="menu_variant_dimension" action="action_dimension_option" />
+
+
+
+        <!-- Views from Dimension values -->
+        <record id="product_variant_multi_dimension_value_tree" model="ir.ui.view">
+            <field name="name">product.variant.multi.dimension.value.tree</field>
+            <field name="model">product.variant.dimension.value</field>
+            <field name="type">tree</field>
+            <field name="arch" type="xml">
+                <tree string="Dimension values" editable="top">
+                    <field name="product_tmpl_id" select="1" invisible="not context.get('dimension_value_main_view', False)" />
+                    <field name="active" />
+                    <field name="dimension_id" />
+                    <field name="option_id" />
+                    <field name="sequence" />
+                    <field name="cost_price_extra" />
+                    <field name="price_extra" />
+                </tree>
+            </field>
+        </record>
+
+        <record id="product_variant_multi_dimension_value_form" model="ir.ui.view">
+            <field name="name">product.variant.multi.dimension.value.form</field>
+            <field name="model">product.variant.dimension.value</field>
+            <field name="type">form</field>
+            <field name="arch" type="xml">
+                <form string="Dimension values">
+                    <field name="product_tmpl_id" select="1" invisible="not context.get('dimension_value_main_view', False)" />
+                    <field name="active" />
+                    <field name="dimension_id" />
+                    <newline />
+                    <field name="option_id" select="1" />
+                    <field name="sequence" />
+                    <field name="cost_price_extra" select="2" />
+                    <field name="price_extra" select="2" />
+                    <field name="price_margin" select="2" />
+                </form>
+            </field>
+        </record>
+
+        <!-- Default action for Dimension values -->
+		<record id="action_dimension_value" model="ir.actions.act_window">
+			<field name="name">Dimension values</field>
+			<field name="res_model">product.variant.dimension.value</field>
+            <field name="view_type">form</field>
+			<field name="view_mode">tree,form</field>
+            <field name="context">{'dimension_value_main_view': True}</field>
+		</record>
+
+        <!-- Views for Dimension types -->
+		<record id="product_variant_multi_dimension_type_tree" model="ir.ui.view">
+			<field name="name">product.variant.multi.dimension.type.tree</field>
+			<field name="model">product.variant.dimension.type</field>
+			<field name="type">tree</field>
+			<field name="arch" type="xml">
+				<tree string="Dimension Types">
+					<field name="name" />
+                    <field name="description" />
+				</tree>
+			</field>
+		</record>
+
+		<record id="product_variant_multi_dimension_type_form" model="ir.ui.view">
+			<field name="name">product.variant.multi.dimension.type.form</field>
+			<field name="model">product.variant.dimension.type</field>
+			<field name="type">form</field>
+			<field name="arch" type="xml">
+				<form string="Dimension Types">
+					<field name="name" select="1" />
+                    <field name="description" select="2" />
+					<field name="sequence" />
+					<field name="allow_custom_value" select="2" />
+					<field name="mandatory_dimension" select="2" />
+					<field name="option_ids" nolabel="1" colspan="4" >
+                        <tree editable="bottom" string="Dimension Options">
+                            <field name="name" />
+                            <field name="code" />
+                            <field name="sequence" invisible="1"/>
+                        </tree>
+                    </field>
+				</form>
+			</field>
+		</record>
+
+
+        <!-- Default action for Dimension types -->
+		<record id="action_dimension_type" model="ir.actions.act_window">
+			<field name="name">Dimension types</field>
+			<field name="res_model">product.variant.dimension.type</field>
+            <field name="view_type">form</field>
+			<field name="view_mode">tree,form</field>
+            <field name="context">{'dimension_type_main_view': True}</field>
+		</record>
+
+        <!-- Menu entry for dimension types -->
+		<menuitem id="menu_variant_dimension_types" icon="STOCK_JUSTIFY_FILL" parent="menu_variant_dimension" action="action_dimension_type" />
+
+
+
+
+<!-- TODO remove useless view of product.template in the module product or fusion this view with the existing view in product, it's depend how the inheritage on this view will be managed by the other module-->
+
+                                    <!--TODO add a wizard to add the option-->
+                                    <!--<button name="add_some_option" string="Add " type="object" colspan="2"/>-->
+
+        <record id="product_search_form_view_template" model="ir.ui.view">
+            <field name="name">product.search.form.template</field>
+            <field name="model">product.template</field>
+            <field name="type">search</field>
+            <field name="arch" type="xml">
+                <search string="Product Template">
+                   <field name="name"/>
+                </search>
+            </field>
+        </record>
+
+
+        <record id="product_variant_multi_product_template_form_view" model="ir.ui.view">
+            <field name="name">product.variant.multi.product.template.form</field>
+            <field name="model">product.template</field>
+            <field name="type">form</field>
+            <field name="inherit_id" ref="product.product_template_form_view" />
+            <field name="arch" type="xml">
+                <data>
+
+                    <xpath expr="/form/notebook" position="inside">
+                        <page string="Variants">
+                        		<field name="is_multi_variants"/> 
+                         		<label string="Is multi variants?"/>
+                                <group colspan="1" col="4" attrs="{'invisible':[('is_multi_variants','=',False)]}">
+                                    <field name="dimension_type_ids" nolabel="1" colspan="4" />
+                                    <button name="add_all_option" string="Add All Option" type="object" colspan="2"/>
+                                    <field name="value_ids" nolabel="1" colspan="4" />
+                                </group>
+                                <group  colspan="1" col="4" attrs="{'invisible':[('is_multi_variants','=',False)]}">
+                                    <field name="variant_model_name" colspan="4"/>
+                                    <field name="variant_model_name_separator" colspan="4"/>
+                                    <field name="code_generator" colspan="4"/>
+							        <field name="variant_track_production" colspan="4"/>
+							        <field name="variant_track_incoming" colspan="4"/>
+							        <field name="variant_track_outgoing" colspan="4"/>
+                                    <field name="do_not_generate_new_variant" colspan="4"/>
+                                    <field name="do_not_update_variant" colspan="4"/>
+							        <button name="button_generate_variants" string="Generate / Update variants ->" type="object" colspan="4"/>
+                                </group>
+                                <field name="variant_ids" string="Variants" nolabel="1"  colspan="1">
+                                    <tree string="Variants">
+                                        <field name="code" />
+                                        <field name="name" />
+                                        <field name="variants" string="Dimension Values" />
+                                    </tree>
+                                </field>
+                        </page>
+                    </xpath>
+                </data>
+            </field>
+        </record>
+        
+        <!-- TODO remove useless view of product.product in the module product or move this correct view in product, it's depend how the heritage on this view will be managed by the other module -->
+
+        <record id="product_search_form_view_variants" model="ir.ui.view">
+            <field name="name">product.search.form.variants</field>
+            <field name="model">product.product</field>
+            <field name="type">search</field>
+            <field name="inherit_id" ref="product.product_search_form_view"/>
+            <field name="arch" type="xml">
+                <field name="categ_id" position="after">
+                    <field name="product_tmpl_id"/>
+                    <field name="variants"/>
+                </field>
+            </field>
+        </record>
+
+        <record id="product_variant_form_view" model="ir.ui.view">
+            <field name="name">product.variant.form</field>
+            <field name="model">product.product</field>
+            <field name="type">form</field>
+            <field name="arch" type="xml">
+                <form string="Product Variant">
+                    <field name="name" select="1" required="1"/>
+                    <field name="product_tmpl_id" select="1"/>
+                    <field name="variants" select="1"/>
+                    <field name="default_code" select="1"/>
+                    <field name="active" select="1"/>
+                    <newline />
+                    <notebook colspan="4">
+                        <page string="Dimensions">
+                            <separator string="Dimension Values" colspan="4"/>
+                            <field name="dimension_value_ids" context="{'product_tmpl_id':product_tmpl_id}" nolabel="1" colspan="4"/>
+                        </page>
+                        <page string="Price">
+                            <field name="list_price" string="Template Sale Price" readonly="1"/>
+                            <field name="price_margin" select="1"/>
+                            <field name="price_extra" select="1"/>
+                            <field name="cost_price_extra"/>
+                        </page>
+                        <page string="Lots">
+                            <field name="track_production" />
+                            <field name="track_incoming" />
+                            <field name="track_outgoing" />
+                        </page>
+                    </notebook>
+                </form>
+            </field>
+        </record>
+      
+        <record id="product_variant_tree_view" model="ir.ui.view">
+            <field name="name">product.variant.tree</field>
+            <field name="model">product.product</field>
+            <field name="type">tree</field>
+            <field name="arch" type="xml">
+                <tree string="Product Variant">
+                    <field name="default_code"/>
+                    <field name="name"/>
+                    <field name="product_tmpl_id"/>
+                    <field name="variants"/>
+                    <field name="price_extra"/>
+                    <field name="cost_price_extra"/>
+                </tree>
+            </field>
+        </record>
+    
+        <record id="action_variant_tree" model="ir.actions.act_window.view">
+            <field name="sequence" eval="10" />
+            <field name="view_mode">tree</field>
+            <field name="act_window_id" ref="product_variant" />
+            <field name="view_id" ref="product_variant_tree_view" />
+        </record>
+
+        <record id="action_variant_form" model="ir.actions.act_window.view">
+            <field name="sequence" eval="20" />
+            <field name="view_mode">form</field>
+            <field name="act_window_id" ref="product_variant" />
+            <field name="view_id" ref="product_variant_form_view" />
+        </record>
+
+        <record id="product_normal_variant_form_view" model="ir.ui.view">
+            <field name="name">product.normal.variant.form</field>
+            <field name="model">product.product</field>
+            <field name="type">form</field>
+            <field name="inherit_id" ref="product.product_normal_form_view" />
+            <field name="arch" type="xml">
+                <data>
+                    <field name="name" position="attributes">
+                        <attribute name="required">1</attribute>
+                    </field>
+                    <field name="standard_price" position="replace">
+                        <group name='cost_prices' colspan="2" col="4">
+                            <field name="standard_price" attrs="{'readonly':[('cost_method','=','average')]}"/>
+                            <field name="cost_price_extra" groups="product.group_product_variant"/>
+                            
+                        </group>
+                    </field>
+                   <notebook>
+	                   <page string="Extras">
+	                   	
+		                   	<group colspan="2" col="6" name="weight" >
+	                            <field name="is_multi_variants" invisible="1"/>
+	                            <group colspan="2" col="2">
+	                                <separator string="Template Weights" colspan="2"/>
+	                                <field digits="(14, 3)" name="volume" attrs="{'readonly':[('type','=','service')]}"/>
+	                                <field digits="(14, 3)" name="weight" attrs="{'readonly':[('type','=','service')]}"/>
+	                                <field digits="(14, 3)" name="weight_net" attrs="{'readonly':[('type','=','service')]}"/>
+	                            </group>
+	                            <group colspan="2" col="2" attrs="{'invisible':[('is_multi_variants','=',False)]}">
+	                                <separator string="Variant Weights" colspan="2"/>
+	                                <field digits="(14, 3)" name="additional_volume" attrs="{'readonly':[('type','=','service')]}"/>
+	                                <field digits="(14, 3)" name="additional_weight" attrs="{'readonly':[('type','=','service')]}"/>
+	                                <field digits="(14, 3)" name="additional_weight_net" attrs="{'readonly':[('type','=','service')]}"/>
+	                            </group>
+	                            <group colspan="2" col="2" attrs="{'invisible':[('is_multi_variants','=',False)]}">
+	                                <separator string="Total Weights" colspan="2"/>
+	                                <field digits="(14, 3)" name="total_volume"/>
+	                                <field digits="(14, 3)" name="total_weight"/>
+	                                <field digits="(14, 3)" name="total_weight_net"/>
+	                            </group>
+	                        </group>
+                            
+	                   </page>
+                   </notebook>
+                </data>
+            </field>
+        </record>   
+    
+    </data>
+</openerp>

=== added directory 'product_multi_variant/security'
=== added file 'product_multi_variant/security/ir.model.access.csv'
--- product_multi_variant/security/ir.model.access.csv	1970-01-01 00:00:00 +0000
+++ product_multi_variant/security/ir.model.access.csv	2013-02-27 17:36:20 +0000
@@ -0,0 +1,10 @@
+"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
+"access_product_variant_dimension_type_user","Read access on product.variant.dimension.type for employees","model_product_variant_dimension_type","base.group_user",1,0,0,0
+"access_product_variant_dimension_value_user","Read access on product.variant.dimension.value for employees","model_product_variant_dimension_value","base.group_user",1,0,0,0
+"access_product_variant_dimension_option_user","Read access on product.variant.dimension.option for employees","model_product_variant_dimension_option","base.group_user",1,0,0,0
+"access_product_variant_dimension_type_sale_manager","Full rights on product.variant.dimension.type for sale manager","model_product_variant_dimension_type","base.group_sale_manager",1,1,1,1
+"access_product_variant_dimension_value_sale_manager","Full rights on product.variant.dimension.value for sale manager","model_product_variant_dimension_value","base.group_sale_manager",1,1,1,1
+"access_product_variant_dimension_option_sale_manager","Full rights on product.variant.dimension.option for sale manager","model_product_variant_dimension_option","base.group_sale_manager",1,1,1,1
+"access_product_variant_dimension_type_stock_manager","Full rights on product.variant.dimension.type for stock manager","model_product_variant_dimension_type","stock.group_stock_manager",1,1,1,1
+"access_product_variant_dimension_value_stock_manager","Full rights on product.variant.dimension.value for stock manager","model_product_variant_dimension_value","stock.group_stock_manager",1,1,1,1
+"access_product_variant_dimension_option_stock_manager","Full rights on product.variant.dimension.option for stock manager","model_product_variant_dimension_option","stock.group_stock_manager",1,1,1,1


Follow ups