[tryton-debian-vcs] tryton-modules-production branch upstream updated. upstream/4.0.1-1-gd7de2eb

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Tue Dec 6 16:01:49 UTC 2016


The following commit has been merged in the upstream branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-production.git;a=commitdiff;h=upstream/4.0.1-1-gd7de2eb

commit d7de2eb9400d5632fb3f4a4d3bd83cce1e59e005
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Mon Dec 5 09:34:34 2016 +0100

    Adding upstream version 4.2.0.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/CHANGELOG b/CHANGELOG
index eced8c6..ad27040 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,7 @@
-Version 4.0.1 - 2016-05-11
+Version 4.2.0 - 2016-11-28
 * Bug fixes (see mercurial logs for details)
+* Add Lead Time of Production
+* Add Start Dates on Production
 
 Version 4.0.0 - 2016-05-02
 * Bug fixes (see mercurial logs for details)
diff --git a/INSTALL b/INSTALL
index b4d270d..3653ed0 100644
--- a/INSTALL
+++ b/INSTALL
@@ -25,7 +25,7 @@ directory on your system.
 For advanced options, please refer to the easy_install and/or the distutils
 documentation:
 
-  http://peak.telecommunity.com/DevCenter/EasyInstall
+  http://setuptools.readthedocs.io/en/latest/easy_install.html
   http://docs.python.org/inst/inst.html
 
 To use without installation, extract the archive into ``trytond/modules`` with
diff --git a/PKG-INFO b/PKG-INFO
index 5641843..0463131 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond_production
-Version: 4.0.1
+Version: 4.2.0
 Summary: Tryton module for production
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/4.0/
+Download-URL: http://downloads.tryton.org/4.2/
 Description: trytond_production
         ==================
         
@@ -63,6 +63,7 @@ Classifier: Natural Language :: French
 Classifier: Natural Language :: German
 Classifier: Natural Language :: Hungarian
 Classifier: Natural Language :: Italian
+Classifier: Natural Language :: Polish
 Classifier: Natural Language :: Portuguese (Brazilian)
 Classifier: Natural Language :: Russian
 Classifier: Natural Language :: Slovenian
diff --git a/__init__.py b/__init__.py
index 0540b43..50e92f8 100644
--- a/__init__.py
+++ b/__init__.py
@@ -22,6 +22,7 @@ def register():
         AssignFailed,
         Product,
         ProductBom,
+        ProductionLeadTime,
         Location,
         Move,
         module='production', type_='model')
diff --git a/bom.py b/bom.py
index 9719a89..0568418 100644
--- a/bom.py
+++ b/bom.py
@@ -89,8 +89,8 @@ class BOMInput(ModelSQL, ModelView):
     @fields.depends('product', 'uom')
     def on_change_product(self):
         if self.product:
-            uoms = self.product.default_uom.category.uoms
-            if (not self.uom or self.uom not in uoms):
+            category = self.product.default_uom.category
+            if not self.uom or self.uom.category != category:
                 self.uom = self.product.default_uom
                 self.unit_digits = self.product.default_uom.digits
         else:
diff --git a/bom.xml b/bom.xml
index 5ec740e..32469e9 100644
--- a/bom.xml
+++ b/bom.xml
@@ -139,5 +139,31 @@ this repository contains the full copyright notices and license terms. -->
             <field name="action" ref="wizard_bom_tree_open"/>
         </record>
 
+        <record model="ir.action.act_window" id="act_product_in_bom">
+            <field name="name">BOMs</field>
+            <field name="res_model">production.bom</field>
+        </record>
+        <record model="ir.action.act_window.domain"
+            id="act_product_in_bom_output_domain_input">
+            <field name="name">As Inputs</field>
+            <field name="sequence" eval="10"/>
+            <field name="domain" pyson="1"
+                eval="[('inputs.product', 'in', Eval('active_ids'))]"/>
+            <field name="act_window" ref="act_product_in_bom"/>
+        </record>
+        <record model="ir.action.act_window.domain"
+            id="act_product_in_bom_output_domain_output">
+            <field name="name">As Outputs</field>
+            <field name="sequence" eval="20"/>
+            <field name="domain" pyson="1"
+                eval="[('outputs.product', 'in', Eval('active_ids'))]"/>
+            <field name="act_window" ref="act_product_in_bom"/>
+        </record>
+        <record model="ir.action.keyword" id="act_product_in_bom_keyword1">
+            <field name="keyword">form_relate</field>
+            <field name="model">product.product,-1</field>
+            <field name="action" ref="act_product_in_bom"/>
+        </record>
+
     </data>
 </tryton>
diff --git a/configuration.xml b/configuration.xml
index 172dae5..d708697 100644
--- a/configuration.xml
+++ b/configuration.xml
@@ -26,11 +26,12 @@ this repository contains the full copyright notices and license terms. -->
             id="menu_production_configuration"
             sequence="0" icon="tryton-list"/>
 
+    </data>
+    <data noupdate="1">
         <record model="ir.property" id="property_production_sequence">
             <field name="field"
                 search="[('model.model', '=', 'production.configuration'), ('name', '=', 'production_sequence')]"/>
             <field name="value" eval="'ir.sequence,' + str(ref('sequence_production'))"/>
         </record>
-
     </data>
 </tryton>
diff --git a/locale/bg_BG.po b/locale/bg.po
similarity index 90%
rename from locale/bg_BG.po
rename to locale/bg.po
index 7c1eb8d..4979b44 100644
--- a/locale/bg_BG.po
+++ b/locale/bg.po
@@ -42,6 +42,10 @@ msgctxt "field:product.product,boms:"
 msgid "BOMs"
 msgstr "Спецификации"
 
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
+msgstr ""
+
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
 msgstr "Спецификация"
@@ -103,6 +107,10 @@ msgctxt "field:production,effective_date:"
 msgid "Effective Date"
 msgstr "Ефективна дата"
 
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr ""
+
 msgctxt "field:production,id:"
 msgid "ID"
 msgstr "ID"
@@ -115,9 +123,10 @@ msgctxt "field:production,location:"
 msgid "Location"
 msgstr "Местонахождение"
 
+#, fuzzy
 msgctxt "field:production,number:"
 msgid "Number"
-msgstr ""
+msgstr "Номер"
 
 msgctxt "field:production,outputs:"
 msgid "Outputs"
@@ -127,6 +136,10 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr "Планирана дата"
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr ""
+
 msgctxt "field:production,product:"
 msgid "Product"
 msgstr "Продукт"
@@ -408,6 +421,55 @@ msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
 msgstr "Записано от"
 
+#, fuzzy
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr "Спецификация"
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr "Създадено на"
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr "Създадено от"
+
+#, fuzzy
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr "Продукт"
+
+#, fuzzy
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr "Условие за плащане"
+
+#, fuzzy
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr "Последователност"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr "Променено на"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr "Променено от"
+
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
 msgstr "Производство"
@@ -429,6 +491,11 @@ msgid "BOMs"
 msgstr "Спецификации"
 
 #, fuzzy
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr "Спецификации"
+
+#, fuzzy
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
 msgstr "Производства"
@@ -450,6 +517,16 @@ msgid "BOM Tree"
 msgstr "Дърво от Спецификация"
 
 msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr ""
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
+msgstr ""
+
+msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
 msgstr ""
@@ -557,6 +634,10 @@ msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
 msgstr "Настройки Производство"
 
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
+msgstr ""
+
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
 msgstr "Производство"
@@ -597,58 +678,19 @@ msgctxt "selection:production,state:"
 msgid "Waiting"
 msgstr "Очакване"
 
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr "Продукт - Спецификация"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr "Продукт - Спецификации"
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr "Невъзможност за назначение"
+#, fuzzy
+msgctxt "view:product.product:"
+msgid "Production"
+msgstr "Управление на производство"
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr "Не може да назначи тези продукти:"
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr "Спецификация Входящи "
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr "Спецификация Изходящи"
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr "Дърво на спецификацията"
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr "Дърво на спецификацията"
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr "Дърво на спецификацията"
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr "Спецификация"
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr "Спецификации"
-
 msgctxt "view:production.bom:"
 msgid "Lines"
 msgstr "Редове"
 
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr "Настройки на производство"
-
 msgctxt "view:production:"
 msgid "Assign"
 msgstr "Назначаване"
@@ -674,14 +716,6 @@ msgid "Other Info"
 msgstr "Друга информация"
 
 msgctxt "view:production:"
-msgid "Production"
-msgstr "Производство"
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr "Производства"
-
-msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr ""
 
diff --git a/locale/ca_ES.po b/locale/ca.po
similarity index 86%
rename from locale/ca_ES.po
rename to locale/ca.po
index 75121ce..42632e4 100644
--- a/locale/ca_ES.po
+++ b/locale/ca.po
@@ -46,17 +46,21 @@ msgctxt "field:product.product,boms:"
 msgid "BOMs"
 msgstr "Llistes de materials"
 
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
+msgstr "Temps d'espera"
+
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
 msgstr "Llista de materials"
 
 msgctxt "field:product.product-production.bom,create_date:"
 msgid "Create Date"
-msgstr "Data creació"
+msgstr "Data de creació"
 
 msgctxt "field:product.product-production.bom,create_uid:"
 msgid "Create User"
-msgstr "Usuari creació"
+msgstr "Usuari de creació"
 
 msgctxt "field:product.product-production.bom,id:"
 msgid "ID"
@@ -76,11 +80,11 @@ msgstr "Seqüència"
 
 msgctxt "field:product.product-production.bom,write_date:"
 msgid "Write Date"
-msgstr "Data modificació"
+msgstr "Data de modificació"
 
 msgctxt "field:product.product-production.bom,write_uid:"
 msgid "Write User"
-msgstr "Usuari modificació"
+msgstr "Usuari de modificació"
 
 msgctxt "field:production,bom:"
 msgid "BOM"
@@ -96,16 +100,20 @@ msgstr "Cost"
 
 msgctxt "field:production,create_date:"
 msgid "Create Date"
-msgstr "Data creació"
+msgstr "Data de creació"
 
 msgctxt "field:production,create_uid:"
 msgid "Create User"
-msgstr "Usuari creació"
+msgstr "Usuari de creació"
 
 msgctxt "field:production,effective_date:"
 msgid "Effective Date"
 msgstr "Data efectiva"
 
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr "Data d'inici efectiva"
+
 msgctxt "field:production,id:"
 msgid "ID"
 msgstr "ID"
@@ -130,6 +138,10 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr "Data estimada"
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr "Data d'inici planificada"
+
 msgctxt "field:production,product:"
 msgid "Product"
 msgstr "Producte"
@@ -168,11 +180,11 @@ msgstr "Magatzem"
 
 msgctxt "field:production,write_date:"
 msgid "Write Date"
-msgstr "Data modificació"
+msgstr "Data de modificació"
 
 msgctxt "field:production,write_uid:"
 msgid "Write User"
-msgstr "Usuari modificació"
+msgstr "Usuari de modificació"
 
 msgctxt "field:production.assign.failed,id:"
 msgid "ID"
@@ -188,11 +200,11 @@ msgstr "Actiu"
 
 msgctxt "field:production.bom,create_date:"
 msgid "Create Date"
-msgstr "Data creació"
+msgstr "Data de creació"
 
 msgctxt "field:production.bom,create_uid:"
 msgid "Create User"
-msgstr "Usuari creació"
+msgstr "Usuari de creació"
 
 msgctxt "field:production.bom,id:"
 msgid "ID"
@@ -220,11 +232,11 @@ msgstr "Nom"
 
 msgctxt "field:production.bom,write_date:"
 msgid "Write Date"
-msgstr "Data modificació"
+msgstr "Data de modificació"
 
 msgctxt "field:production.bom,write_uid:"
 msgid "Write User"
-msgstr "Usuari modificació"
+msgstr "Usuari de modificació"
 
 msgctxt "field:production.bom.input,bom:"
 msgid "BOM"
@@ -232,11 +244,11 @@ msgstr "Llistes de materials"
 
 msgctxt "field:production.bom.input,create_date:"
 msgid "Create Date"
-msgstr "Data creació"
+msgstr "Data de creació"
 
 msgctxt "field:production.bom.input,create_uid:"
 msgid "Create User"
-msgstr "Usuari creació"
+msgstr "Usuari de creació"
 
 msgctxt "field:production.bom.input,id:"
 msgid "ID"
@@ -268,11 +280,11 @@ msgstr "Categoria d'UdM"
 
 msgctxt "field:production.bom.input,write_date:"
 msgid "Write Date"
-msgstr "Data modificació"
+msgstr "Data de modificació"
 
 msgctxt "field:production.bom.input,write_uid:"
 msgid "Write User"
-msgstr "Usuari modificació"
+msgstr "Usuari de modificació"
 
 msgctxt "field:production.bom.output,bom:"
 msgid "BOM"
@@ -280,11 +292,11 @@ msgstr "Llista de materials"
 
 msgctxt "field:production.bom.output,create_date:"
 msgid "Create Date"
-msgstr "Data creació"
+msgstr "Data de creació"
 
 msgctxt "field:production.bom.output,create_uid:"
 msgid "Create User"
-msgstr "Usuari creació"
+msgstr "Usuari de creació"
 
 msgctxt "field:production.bom.output,id:"
 msgid "ID"
@@ -316,11 +328,11 @@ msgstr "Categoria d'UdM"
 
 msgctxt "field:production.bom.output,write_date:"
 msgid "Write Date"
-msgstr "Data modificació"
+msgstr "Data de modificació"
 
 msgctxt "field:production.bom.output,write_uid:"
 msgid "Write User"
-msgstr "Usuari modificació"
+msgstr "Usuari de modificació"
 
 msgctxt "field:production.bom.tree,childs:"
 msgid "Childs"
@@ -384,11 +396,11 @@ msgstr "ID"
 
 msgctxt "field:production.configuration,create_date:"
 msgid "Create Date"
-msgstr "Data creació"
+msgstr "Data de creació"
 
 msgctxt "field:production.configuration,create_uid:"
 msgid "Create User"
-msgstr "Usuari creació"
+msgstr "Usuari de creació"
 
 msgctxt "field:production.configuration,id:"
 msgid "ID"
@@ -404,11 +416,51 @@ msgstr "Nom"
 
 msgctxt "field:production.configuration,write_date:"
 msgid "Write Date"
-msgstr "Data modificació"
+msgstr "Data de modificació"
 
 msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
-msgstr "Usuari modificació"
+msgstr "Usuari de modificació"
+
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr "Llista de materials"
+
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr "Data de creació"
+
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr "Usuari de creació"
+
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr "Temps d'espera"
+
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr "Producte"
+
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr "Nom"
+
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr "Seqüència"
+
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr "Data de modificació"
+
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr "Usuari de modificació"
 
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
@@ -430,6 +482,10 @@ msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
 msgstr "Llistes de materials"
 
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr "Llistes de materials"
+
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
 msgstr "Produccions"
@@ -451,6 +507,16 @@ msgid "BOM Tree"
 msgstr "Arbre de la llista de materials"
 
 msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr "Com entrades"
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
+msgstr "Com sortides"
+
+msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
 msgstr "Tot"
@@ -552,6 +618,10 @@ msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
 msgstr "Configuració de la producció"
 
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
+msgstr "Temps d'espera de la producció"
+
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
 msgstr "Producció"
@@ -592,58 +662,18 @@ msgctxt "selection:production,state:"
 msgid "Waiting"
 msgstr "En espera"
 
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr "Producte - Llista de materials"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr "Producte - Llistes de materials"
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr "No es pot reservar"
+msgctxt "view:product.product:"
+msgid "Production"
+msgstr "Producció"
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr "No es poden reservar aquests productes:"
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr "Entrades de la llista de materials"
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr "Sortides de la llista de materials"
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr "Arbre de la llista de materials"
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr "Arbre de la llista de materials"
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr "Arbre de la llista de materials"
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr "Llistes de materials"
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr "Llistes de materials"
-
 msgctxt "view:production.bom:"
 msgid "Lines"
 msgstr "Línies"
 
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr "Configuració de la producció"
-
 msgctxt "view:production:"
 msgid "Assign"
 msgstr "Reserva"
@@ -669,14 +699,6 @@ msgid "Other Info"
 msgstr "Informació addicional"
 
 msgctxt "view:production:"
-msgid "Production"
-msgstr "Producció"
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr "Produccions"
-
-msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr "Restaura amb la LdM"
 
diff --git a/locale/cs_CZ.po b/locale/cs.po
similarity index 90%
rename from locale/cs_CZ.po
rename to locale/cs.po
index 438cc8c..c5ca7a0 100644
--- a/locale/cs_CZ.po
+++ b/locale/cs.po
@@ -42,6 +42,10 @@ msgctxt "field:product.product,boms:"
 msgid "BOMs"
 msgstr ""
 
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
+msgstr ""
+
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
 msgstr ""
@@ -62,9 +66,10 @@ msgctxt "field:product.product-production.bom,product:"
 msgid "Product"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Namu"
 
 msgctxt "field:product.product-production.bom,sequence:"
 msgid "Sequence"
@@ -102,6 +107,10 @@ msgctxt "field:production,effective_date:"
 msgid "Effective Date"
 msgstr ""
 
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr ""
+
 msgctxt "field:production,id:"
 msgid "ID"
 msgstr ""
@@ -126,6 +135,10 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr ""
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr ""
+
 msgctxt "field:production,product:"
 msgid "Product"
 msgstr ""
@@ -134,9 +147,10 @@ msgctxt "field:production,quantity:"
 msgid "Quantity"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Namu"
 
 msgctxt "field:production,reference:"
 msgid "Reference"
@@ -198,9 +212,10 @@ msgctxt "field:production.bom,inputs:"
 msgid "Inputs"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom,name:"
 msgid "Name"
-msgstr ""
+msgstr "Namu"
 
 msgctxt "field:production.bom,output_products:"
 msgid "Output Products"
@@ -210,9 +225,10 @@ msgctxt "field:production.bom,outputs:"
 msgid "Outputs"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Namu"
 
 msgctxt "field:production.bom,write_date:"
 msgid "Write Date"
@@ -246,9 +262,10 @@ msgctxt "field:production.bom.input,quantity:"
 msgid "Quantity"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.input,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Namu"
 
 msgctxt "field:production.bom.input,unit_digits:"
 msgid "Unit Digits"
@@ -294,9 +311,10 @@ msgctxt "field:production.bom.output,quantity:"
 msgid "Quantity"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.output,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Namu"
 
 msgctxt "field:production.bom.output,unit_digits:"
 msgid "Unit Digits"
@@ -394,9 +412,10 @@ msgctxt "field:production.configuration,production_sequence:"
 msgid "Production Sequence"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.configuration,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Namu"
 
 msgctxt "field:production.configuration,write_date:"
 msgid "Write Date"
@@ -406,6 +425,47 @@ msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
 msgstr ""
 
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr ""
+
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr ""
+
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr ""
+
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr ""
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr ""
+
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr "Namu"
+
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr ""
+
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr ""
+
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr ""
+
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
 msgstr ""
@@ -426,6 +486,10 @@ msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
 msgstr ""
 
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr ""
+
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
 msgstr ""
@@ -447,6 +511,16 @@ msgid "BOM Tree"
 msgstr ""
 
 msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr ""
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
+msgstr ""
+
+msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
 msgstr ""
@@ -548,6 +622,10 @@ msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
 msgstr ""
 
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
+msgstr ""
+
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
 msgstr ""
@@ -588,58 +666,18 @@ msgctxt "selection:production,state:"
 msgid "Waiting"
 msgstr ""
 
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr ""
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr ""
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
+msgctxt "view:product.product:"
+msgid "Production"
 msgstr ""
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr ""
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr ""
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr ""
-
 msgctxt "view:production.bom:"
 msgid "Lines"
 msgstr ""
 
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr ""
-
 msgctxt "view:production:"
 msgid "Assign"
 msgstr ""
@@ -665,14 +703,6 @@ msgid "Other Info"
 msgstr ""
 
 msgctxt "view:production:"
-msgid "Production"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr ""
-
-msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr ""
 
diff --git a/locale/de_DE.po b/locale/de.po
similarity index 90%
rename from locale/de_DE.po
rename to locale/de.po
index 649bf15..143c150 100644
--- a/locale/de_DE.po
+++ b/locale/de.po
@@ -45,6 +45,10 @@ msgctxt "field:product.product,boms:"
 msgid "BOMs"
 msgstr "Stücklisten"
 
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
+msgstr "Beschaffungszeiten"
+
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
 msgstr "Stückliste"
@@ -105,6 +109,10 @@ msgctxt "field:production,effective_date:"
 msgid "Effective Date"
 msgstr "Effektives Datum"
 
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr "Effektives Startdatum"
+
 msgctxt "field:production,id:"
 msgid "ID"
 msgstr "ID"
@@ -129,6 +137,10 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr "Geplantes Datum"
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr "Geplantes Startdatum"
+
 msgctxt "field:production,product:"
 msgid "Product"
 msgstr "Variante"
@@ -409,6 +421,46 @@ msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
 msgstr "Letzte Änderung durch"
 
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr "Stückliste"
+
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr "Erstellungsdatum"
+
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr "Erstellt durch"
+
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr "Beschaffungszeit"
+
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr "Variante"
+
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr "Name"
+
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr "Reihenfolge"
+
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr "Zuletzt geändert"
+
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr "Letzte Änderung durch"
+
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
 msgstr "Produktion"
@@ -429,6 +481,10 @@ msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
 msgstr "Stücklisten"
 
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr "Stücklisten"
+
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
 msgstr "Produktionen"
@@ -450,6 +506,16 @@ msgid "BOM Tree"
 msgstr "Stücklistenbaum"
 
 msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr "Als Eingänge"
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
+msgstr "Als Ausgänge"
+
+msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
 msgstr "Alle"
@@ -551,6 +617,10 @@ msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
 msgstr "Einstellungen Produktion"
 
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
+msgstr "Produktion Beschaffungszeit"
+
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
 msgstr "Produktion"
@@ -591,58 +661,18 @@ msgctxt "selection:production,state:"
 msgid "Waiting"
 msgstr "Wartend"
 
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr "Variante - Stückliste"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr "Variante - Stückliste"
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr "Fehlmenge Zuweisung"
+msgctxt "view:product.product:"
+msgid "Production"
+msgstr "Produktion"
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr "Folgende Varianten können nicht zugewiesen werden:"
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr "Stückliste Eingänge"
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr "Stückliste Ausgänge"
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr "Stücklistenbaum"
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr "Stücklistenbaum"
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr "Stücklistenbaum"
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr "Stückliste"
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr "Stücklisten"
-
 msgctxt "view:production.bom:"
 msgid "Lines"
 msgstr "Zeilen"
 
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr "Einstellungen Produktion"
-
 msgctxt "view:production:"
 msgid "Assign"
 msgstr "Zuweisen"
@@ -668,14 +698,6 @@ msgid "Other Info"
 msgstr "Sonstiges"
 
 msgctxt "view:production:"
-msgid "Production"
-msgstr "Produktion"
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr "Produktionen"
-
-msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr "Auf Stückliste zurücksetzen"
 
diff --git a/locale/es_ES.po b/locale/es.po
similarity index 85%
rename from locale/es_ES.po
rename to locale/es.po
index e803bf9..578b2f0 100644
--- a/locale/es_ES.po
+++ b/locale/es.po
@@ -46,17 +46,21 @@ msgctxt "field:product.product,boms:"
 msgid "BOMs"
 msgstr "LdM"
 
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
+msgstr "Tiempo de espera"
+
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
 msgstr "LdM"
 
 msgctxt "field:product.product-production.bom,create_date:"
 msgid "Create Date"
-msgstr "Fecha creación"
+msgstr "Fecha de creación"
 
 msgctxt "field:product.product-production.bom,create_uid:"
 msgid "Create User"
-msgstr "Usuario creación"
+msgstr "Usuario de creación"
 
 msgctxt "field:product.product-production.bom,id:"
 msgid "ID"
@@ -76,11 +80,11 @@ msgstr "Secuencia"
 
 msgctxt "field:product.product-production.bom,write_date:"
 msgid "Write Date"
-msgstr "Fecha modificación"
+msgstr "Fecha de modificación"
 
 msgctxt "field:product.product-production.bom,write_uid:"
 msgid "Write User"
-msgstr "Usuario modificación"
+msgstr "Usuario de modificación"
 
 msgctxt "field:production,bom:"
 msgid "BOM"
@@ -96,16 +100,20 @@ msgstr "Coste"
 
 msgctxt "field:production,create_date:"
 msgid "Create Date"
-msgstr "Fecha creación"
+msgstr "Fecha de creación"
 
 msgctxt "field:production,create_uid:"
 msgid "Create User"
-msgstr "Usuario creación"
+msgstr "Usuario de creación"
 
 msgctxt "field:production,effective_date:"
 msgid "Effective Date"
 msgstr "Fecha efectiva"
 
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr "Fecha inicio efectiva"
+
 msgctxt "field:production,id:"
 msgid "ID"
 msgstr "ID"
@@ -130,6 +138,10 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr "Fecha estimada"
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr "Fecha inicio estimada"
+
 msgctxt "field:production,product:"
 msgid "Product"
 msgstr "Producto"
@@ -168,11 +180,11 @@ msgstr "Almacén"
 
 msgctxt "field:production,write_date:"
 msgid "Write Date"
-msgstr "Fecha modificación"
+msgstr "Fecha de modificación"
 
 msgctxt "field:production,write_uid:"
 msgid "Write User"
-msgstr "Usuario modificación"
+msgstr "Usuario de modificación"
 
 msgctxt "field:production.assign.failed,id:"
 msgid "ID"
@@ -188,11 +200,11 @@ msgstr "Activo"
 
 msgctxt "field:production.bom,create_date:"
 msgid "Create Date"
-msgstr "Fecha creación"
+msgstr "Fecha de creación"
 
 msgctxt "field:production.bom,create_uid:"
 msgid "Create User"
-msgstr "Usuario creación"
+msgstr "Usuario de creación"
 
 msgctxt "field:production.bom,id:"
 msgid "ID"
@@ -220,11 +232,11 @@ msgstr "Nombre"
 
 msgctxt "field:production.bom,write_date:"
 msgid "Write Date"
-msgstr "Fecha modificación"
+msgstr "Fecha de modificación"
 
 msgctxt "field:production.bom,write_uid:"
 msgid "Write User"
-msgstr "Usuario modificación"
+msgstr "Usuario de modificación"
 
 msgctxt "field:production.bom.input,bom:"
 msgid "BOM"
@@ -232,11 +244,11 @@ msgstr "LdM"
 
 msgctxt "field:production.bom.input,create_date:"
 msgid "Create Date"
-msgstr "Fecha creación"
+msgstr "Fecha de creación"
 
 msgctxt "field:production.bom.input,create_uid:"
 msgid "Create User"
-msgstr "Usuario creación"
+msgstr "Usuario de creación"
 
 msgctxt "field:production.bom.input,id:"
 msgid "ID"
@@ -268,11 +280,11 @@ msgstr "Categoría de UdM"
 
 msgctxt "field:production.bom.input,write_date:"
 msgid "Write Date"
-msgstr "Fecha modificación"
+msgstr "Fecha de modificación"
 
 msgctxt "field:production.bom.input,write_uid:"
 msgid "Write User"
-msgstr "Usuario modificación"
+msgstr "Usuario de modificación"
 
 msgctxt "field:production.bom.output,bom:"
 msgid "BOM"
@@ -280,11 +292,11 @@ msgstr "LdM"
 
 msgctxt "field:production.bom.output,create_date:"
 msgid "Create Date"
-msgstr "Fecha creación"
+msgstr "Fecha de creación"
 
 msgctxt "field:production.bom.output,create_uid:"
 msgid "Create User"
-msgstr "Usuario creación"
+msgstr "Usuario de creación"
 
 msgctxt "field:production.bom.output,id:"
 msgid "ID"
@@ -316,11 +328,11 @@ msgstr "Categoría de UdM"
 
 msgctxt "field:production.bom.output,write_date:"
 msgid "Write Date"
-msgstr "Fecha modificación"
+msgstr "Fecha de modificación"
 
 msgctxt "field:production.bom.output,write_uid:"
 msgid "Write User"
-msgstr "Usuario modificación"
+msgstr "Usuario de modificación"
 
 msgctxt "field:production.bom.tree,childs:"
 msgid "Childs"
@@ -384,11 +396,11 @@ msgstr "ID"
 
 msgctxt "field:production.configuration,create_date:"
 msgid "Create Date"
-msgstr "Fecha creación"
+msgstr "Fecha de creación"
 
 msgctxt "field:production.configuration,create_uid:"
 msgid "Create User"
-msgstr "Usuario creación"
+msgstr "Usuario de creación"
 
 msgctxt "field:production.configuration,id:"
 msgid "ID"
@@ -404,11 +416,51 @@ msgstr "Nombre"
 
 msgctxt "field:production.configuration,write_date:"
 msgid "Write Date"
-msgstr "Fecha modificación"
+msgstr "Fecha de modificación"
 
 msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
-msgstr "Usuario modificación"
+msgstr "Usuario de modificación"
+
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr "Lista de material"
+
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr "Fecha de creación"
+
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr "Usuario de creación"
+
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr "Tiempo de espera"
+
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr "Producto"
+
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr "Nombre"
+
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr "Secuencia"
+
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr "Fecha de modificación"
+
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr "Usuario de modificación"
 
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
@@ -430,6 +482,10 @@ msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
 msgstr "Listas de material"
 
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr "Listas de Materiales"
+
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
 msgstr "Producciones"
@@ -451,6 +507,16 @@ msgid "BOM Tree"
 msgstr "Árbol LdM"
 
 msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr "Como entradas"
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
+msgstr "Como salidas"
+
+msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
 msgstr "Todo"
@@ -552,6 +618,10 @@ msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
 msgstr "Configuración de la producción"
 
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
+msgstr "Tiempo de espera de la producción"
+
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
 msgstr "Producción"
@@ -592,58 +662,18 @@ msgctxt "selection:production,state:"
 msgid "Waiting"
 msgstr "En espera"
 
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr "Producto - LdM"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr "Producto - LdMs"
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr "No se puede reservar"
+msgctxt "view:product.product:"
+msgid "Production"
+msgstr "Producción"
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr "No se pueden reservar estos productos:"
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr "Entradas lista de material"
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr "Salidas lista de material"
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr "Árbol lista de material"
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr "Árbol LdM"
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr "Árbol LdM"
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr "Lista de material"
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr "Listas de material"
-
 msgctxt "view:production.bom:"
 msgid "Lines"
 msgstr "Líneas"
 
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr "Configuración de la producción"
-
 msgctxt "view:production:"
 msgid "Assign"
 msgstr "Reservar"
@@ -669,14 +699,6 @@ msgid "Other Info"
 msgstr "Información adicional"
 
 msgctxt "view:production:"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr "Restaurar con la LdM"
 
diff --git a/locale/nl_NL.po b/locale/es_419.po
similarity index 84%
copy from locale/nl_NL.po
copy to locale/es_419.po
index ab72d73..66860f1 100644
--- a/locale/nl_NL.po
+++ b/locale/es_419.po
@@ -38,13 +38,19 @@ msgid ""
 "not match the cost of the production (%(costs)s)."
 msgstr ""
 
+#, fuzzy
 msgctxt "field:product.product,boms:"
 msgid "BOMs"
+msgstr "BOMs"
+
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
 msgctxt "field:product.product-production.bom,create_date:"
 msgid "Create Date"
@@ -58,20 +64,17 @@ msgctxt "field:product.product-production.bom,id:"
 msgid "ID"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:product.product-production.bom,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:product.product-production.bom,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:product.product-production.bom,sequence:"
 msgid "Sequence"
-msgstr "Reeks"
+msgstr ""
 
 msgctxt "field:product.product-production.bom,write_date:"
 msgid "Write Date"
@@ -81,14 +84,14 @@ msgctxt "field:product.product-production.bom,write_uid:"
 msgid "Write User"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,bom:"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
-#, fuzzy
 msgctxt "field:production,company:"
 msgid "Company"
-msgstr "Bedrijf"
+msgstr ""
 
 msgctxt "field:production,cost:"
 msgid "Cost"
@@ -102,10 +105,13 @@ msgctxt "field:production,create_uid:"
 msgid "Create User"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production,effective_date:"
 msgid "Effective Date"
-msgstr "Effectieve datum"
+msgstr ""
+
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr ""
 
 msgctxt "field:production,id:"
 msgid "ID"
@@ -131,35 +137,33 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr ""
 
-#, fuzzy
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr ""
+
 msgctxt "field:production,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production,quantity:"
 msgid "Quantity"
-msgstr "Hoeveelheid"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production,reference:"
 msgid "Reference"
-msgstr "Referentie"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production,state:"
 msgid "State"
-msgstr "Status"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production,unit_digits:"
 msgid "Unit Digits"
-msgstr "Decimalen eenheid"
+msgstr ""
 
 msgctxt "field:production,uom:"
 msgid "Uom"
@@ -169,10 +173,9 @@ msgctxt "field:production,uom_category:"
 msgid "Uom Category"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production,warehouse:"
 msgid "Warehouse"
-msgstr "Magazijn"
+msgstr ""
 
 msgctxt "field:production,write_date:"
 msgid "Write Date"
@@ -186,15 +189,13 @@ msgctxt "field:production.assign.failed,id:"
 msgid "ID"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.assign.failed,moves:"
 msgid "Moves"
-msgstr "Boekingen"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom,active:"
 msgid "Active"
-msgstr "Actief"
+msgstr ""
 
 msgctxt "field:production.bom,create_date:"
 msgid "Create Date"
@@ -212,10 +213,9 @@ msgctxt "field:production.bom,inputs:"
 msgid "Inputs"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom,name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr ""
 
 msgctxt "field:production.bom,output_products:"
 msgid "Output Products"
@@ -225,10 +225,9 @@ msgctxt "field:production.bom,outputs:"
 msgid "Outputs"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr ""
 
 msgctxt "field:production.bom,write_date:"
 msgid "Write Date"
@@ -238,9 +237,10 @@ msgctxt "field:production.bom,write_uid:"
 msgid "Write User"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.input,bom:"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
 msgctxt "field:production.bom.input,create_date:"
 msgid "Create Date"
@@ -254,25 +254,21 @@ msgctxt "field:production.bom.input,id:"
 msgid "ID"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.input,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.input,quantity:"
 msgid "Quantity"
-msgstr "Hoeveelheid"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.input,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.input,unit_digits:"
 msgid "Unit Digits"
-msgstr "Decimalen eenheid"
+msgstr ""
 
 msgctxt "field:production.bom.input,uom:"
 msgid "Uom"
@@ -290,9 +286,10 @@ msgctxt "field:production.bom.input,write_uid:"
 msgid "Write User"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.output,bom:"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
 msgctxt "field:production.bom.output,create_date:"
 msgid "Create Date"
@@ -306,25 +303,21 @@ msgctxt "field:production.bom.output,id:"
 msgid "ID"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.output,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.output,quantity:"
 msgid "Quantity"
-msgstr "Hoeveelheid"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.output,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.output,unit_digits:"
 msgid "Unit Digits"
-msgstr "Decimalen eenheid"
+msgstr ""
 
 msgctxt "field:production.bom.output,uom:"
 msgid "Uom"
@@ -350,61 +343,55 @@ msgctxt "field:production.bom.tree,id:"
 msgid "ID"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.tree,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.tree,quantity:"
 msgid "Quantity"
-msgstr "Hoeveelheid"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.tree,unit_digits:"
 msgid "Unit Digits"
-msgstr "Decimalen eenheid"
+msgstr ""
 
 msgctxt "field:production.bom.tree,uom:"
 msgid "Uom"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,bom:"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
-#, fuzzy
 msgctxt "field:production.bom.tree.open.start,category:"
 msgid "Category"
-msgstr "Categorie"
+msgstr ""
 
 msgctxt "field:production.bom.tree.open.start,id:"
 msgid "ID"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.tree.open.start,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.tree.open.start,quantity:"
 msgid "Quantity"
-msgstr "Hoeveelheid"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.tree.open.start,unit_digits:"
 msgid "Unit Digits"
-msgstr "Decimalen eenheid"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.tree.open.start,uom:"
 msgid "Unit"
-msgstr "Eenheid"
+msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.tree,bom_tree:"
 msgid "BOM Tree"
-msgstr ""
+msgstr "BOM Tree"
 
 msgctxt "field:production.bom.tree.open.tree,id:"
 msgid "ID"
@@ -426,10 +413,9 @@ msgctxt "field:production.configuration,production_sequence:"
 msgid "Production Sequence"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.configuration,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr ""
 
 msgctxt "field:production.configuration,write_date:"
 msgid "Write Date"
@@ -439,9 +425,51 @@ msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
 msgstr ""
 
+#, fuzzy
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr "BOM"
+
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr ""
+
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr ""
+
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr ""
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr ""
+
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr ""
+
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr ""
+
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr ""
+
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr ""
+
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr ""
+
+#, fuzzy
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
 msgctxt "field:stock.move,production_input:"
 msgid "Production Input"
@@ -453,108 +481,122 @@ msgstr ""
 
 msgctxt "model:ir.action,name:act_bom_form"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
 msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
-msgstr ""
+msgstr "BOMs"
+
+#, fuzzy
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr "BOMs"
 
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
-msgstr ""
+msgstr "Productions"
 
 msgctxt "model:ir.action,name:act_production_configuration_form"
 msgid "Production Configuration"
-msgstr ""
+msgstr "Production Configuration"
 
 msgctxt "model:ir.action,name:act_production_list"
 msgid "Productions"
-msgstr ""
+msgstr "Productions"
 
 msgctxt "model:ir.action,name:wizard_assign"
 msgid "Assign Production"
-msgstr ""
+msgstr "Assign Production"
 
 msgctxt "model:ir.action,name:wizard_bom_tree_open"
 msgid "BOM Tree"
+msgstr "BOM Tree"
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr ""
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
 msgstr ""
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
-msgstr ""
+msgstr "All"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_assigned"
 msgid "Assigned"
-msgstr ""
+msgstr "Assigned"
 
-#, fuzzy
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_draft"
 msgid "Draft"
-msgstr "Concept"
+msgstr "Draft"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_requests"
 msgid "Requests"
-msgstr ""
+msgstr "Requests"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_running"
 msgid "Running"
-msgstr ""
+msgstr "Running"
 
-#, fuzzy
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_waiting"
 msgid "Waiting"
-msgstr "In afwachting"
+msgstr "Waiting"
 
 msgctxt "model:ir.sequence,name:sequence_production"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
 msgctxt "model:ir.sequence.type,name:sequence_type_production"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
 msgctxt "model:ir.ui.menu,name:menu_bom_list"
 msgid "BOMs"
-msgstr ""
+msgstr "BOMs"
 
-#, fuzzy
 msgctxt "model:ir.ui.menu,name:menu_configuration"
 msgid "Configuration"
-msgstr "Instellingen"
+msgstr "Configuration"
 
 msgctxt "model:ir.ui.menu,name:menu_production"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
 msgctxt "model:ir.ui.menu,name:menu_production_calendar"
 msgid "Productions"
-msgstr ""
+msgstr "Productions"
 
 msgctxt "model:ir.ui.menu,name:menu_production_configuration"
 msgid "Production Configuration"
-msgstr ""
+msgstr "Production Configuration"
 
 msgctxt "model:ir.ui.menu,name:menu_production_list"
 msgid "Productions"
-msgstr ""
+msgstr "Productions"
 
 msgctxt "model:product.product-production.bom,name:"
 msgid "Product - BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:production,name:"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
+#, fuzzy
 msgctxt "model:production.assign.failed,name:"
 msgid "Assign Production"
-msgstr ""
+msgstr "Assign Production"
 
 msgctxt "model:production.bom,name:"
 msgid "Bill of Material"
@@ -568,9 +610,10 @@ msgctxt "model:production.bom.output,name:"
 msgid "Bill of Material Output"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:production.bom.tree,name:"
 msgid "BOM Tree"
-msgstr ""
+msgstr "BOM Tree"
 
 msgctxt "model:production.bom.tree.open.start,name:"
 msgid "Open BOM Tree"
@@ -580,142 +623,97 @@ msgctxt "model:production.bom.tree.open.tree,name:"
 msgid "Open BOM Tree"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
+msgstr "Production Configuration"
+
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
 msgstr ""
 
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
 msgctxt "model:res.group,name:group_production_admin"
 msgid "Production Administration"
-msgstr ""
+msgstr "Production Administration"
 
 msgctxt "model:stock.location,name:location_production"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Assigned"
-msgstr ""
+msgstr "Assigned"
 
-#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Canceled"
-msgstr "Geannuleerd"
+msgstr ""
 
-#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Done"
-msgstr "Klaar"
+msgstr ""
 
 #, fuzzy
 msgctxt "selection:production,state:"
 msgid "Draft"
-msgstr "Concept"
+msgstr "Draft"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Request"
-msgstr ""
+msgstr "Requests"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Running"
-msgstr ""
+msgstr "Running"
 
 #, fuzzy
 msgctxt "selection:production,state:"
 msgid "Waiting"
-msgstr "In afwachting"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr ""
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr ""
+msgstr "Waiting"
 
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr ""
+#, fuzzy
+msgctxt "view:product.product:"
+msgid "Production"
+msgstr "Production"
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr ""
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr ""
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr ""
-
-#, fuzzy
 msgctxt "view:production.bom:"
 msgid "Lines"
-msgstr "Regels"
-
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
 msgstr ""
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Assign"
-msgstr ""
+msgstr "Assigned"
 
-#, fuzzy
 msgctxt "view:production:"
 msgid "Cancel"
-msgstr "Annuleren"
+msgstr ""
 
-#, fuzzy
 msgctxt "view:production:"
 msgid "Done"
-msgstr "Klaar"
+msgstr ""
 
 #, fuzzy
 msgctxt "view:production:"
 msgid "Draft"
-msgstr "Concept"
+msgstr "Draft"
 
-#, fuzzy
 msgctxt "view:production:"
 msgid "Lines"
-msgstr "Regels"
-
-#, fuzzy
-msgctxt "view:production:"
-msgid "Other Info"
-msgstr "Aanvullende informatie"
-
-msgctxt "view:production:"
-msgid "Production"
 msgstr ""
 
 msgctxt "view:production:"
-msgid "Productions"
+msgid "Other Info"
 msgstr ""
 
 msgctxt "view:production:"
@@ -730,29 +728,25 @@ msgctxt "view:production:"
 msgid "Wait"
 msgstr ""
 
-#, fuzzy
 msgctxt "wizard_button:production.assign,failed,end:"
 msgid "OK"
-msgstr "Oké"
+msgstr ""
 
 msgctxt "wizard_button:production.assign,failed,force:"
 msgid "Force Assign"
 msgstr ""
 
-#, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,start,end:"
 msgid "Cancel"
-msgstr "Annuleren"
+msgstr ""
 
-#, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,start,tree:"
 msgid "OK"
-msgstr "Oké"
+msgstr ""
 
-#, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,tree,end:"
 msgid "Close"
-msgstr "Sluiten"
+msgstr ""
 
 msgctxt "wizard_button:production.bom.tree.open,tree,start:"
 msgid "Change"
diff --git a/locale/es_AR.po b/locale/es_AR.po
deleted file mode 100644
index 87f1a70..0000000
--- a/locale/es_AR.po
+++ /dev/null
@@ -1,713 +0,0 @@
-# 
-msgid ""
-msgstr "Content-Type: text/plain; charset=utf-8\n"
-
-msgctxt "error:product.product:"
-msgid ""
-"You are trying to create a recursive BOM with product \"%s\" which is not "
-"allowed."
-msgstr ""
-"Está intentando crear una LdM recursiva con el producto «%s» que no está "
-"permitido."
-
-msgctxt "error:production.bom.input:"
-msgid "Product must be unique per BOM."
-msgstr "El producto debe ser único por LdM."
-
-msgctxt "error:production.bom.input:"
-msgid "You can not create recursive BOMs."
-msgstr "No puede crear una lista de materiales recursiva."
-
-msgctxt "error:production.bom.input:"
-msgid "product_bom_uniq"
-msgstr "El producto debe ser único en la LdM"
-
-msgctxt "error:production.bom.output:"
-msgid "Product must be unique per BOM."
-msgstr "El producto debe ser único por LdM."
-
-msgctxt "error:production.bom.output:"
-msgid "You can not create recursive BOMs."
-msgstr "No puede crear una lista de materiales recursiva."
-
-msgctxt "error:production.bom.output:"
-msgid "product_bom_uniq"
-msgstr "El producto debe ser único en la LdM"
-
-msgctxt "error:production:"
-msgid ""
-"The costs of the outputs (%(outputs)s) of production \"%(production)s\" do "
-"not match the cost of the production (%(costs)s)."
-msgstr ""
-"El costo de las salidas (%(outputs)s) de la producción «%(production)s» no "
-"coincide con el costo de producción (%(costs)s)."
-
-msgctxt "field:product.product,boms:"
-msgid "BOMs"
-msgstr "LdMs"
-
-msgctxt "field:product.product-production.bom,bom:"
-msgid "BOM"
-msgstr "LdM"
-
-msgctxt "field:product.product-production.bom,create_date:"
-msgid "Create Date"
-msgstr "Fecha creación"
-
-msgctxt "field:product.product-production.bom,create_uid:"
-msgid "Create User"
-msgstr "Usuario creación"
-
-msgctxt "field:product.product-production.bom,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:product.product-production.bom,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:product.product-production.bom,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:product.product-production.bom,sequence:"
-msgid "Sequence"
-msgstr "Secuencia"
-
-msgctxt "field:product.product-production.bom,write_date:"
-msgid "Write Date"
-msgstr "Fecha modificación"
-
-msgctxt "field:product.product-production.bom,write_uid:"
-msgid "Write User"
-msgstr "Usuario modificación"
-
-msgctxt "field:production,bom:"
-msgid "BOM"
-msgstr "LdM"
-
-msgctxt "field:production,company:"
-msgid "Company"
-msgstr "Empresa"
-
-msgctxt "field:production,cost:"
-msgid "Cost"
-msgstr "Costo"
-
-msgctxt "field:production,create_date:"
-msgid "Create Date"
-msgstr "Fecha creación"
-
-msgctxt "field:production,create_uid:"
-msgid "Create User"
-msgstr "Usuario creación"
-
-msgctxt "field:production,effective_date:"
-msgid "Effective Date"
-msgstr "Fecha efectiva"
-
-msgctxt "field:production,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production,inputs:"
-msgid "Inputs"
-msgstr "Entradas"
-
-msgctxt "field:production,location:"
-msgid "Location"
-msgstr "Ubicación"
-
-msgctxt "field:production,number:"
-msgid "Number"
-msgstr "Número"
-
-msgctxt "field:production,outputs:"
-msgid "Outputs"
-msgstr "Salidas"
-
-msgctxt "field:production,planned_date:"
-msgid "Planned Date"
-msgstr "Fecha estimada"
-
-msgctxt "field:production,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production,reference:"
-msgid "Reference"
-msgstr "Referencia"
-
-msgctxt "field:production,state:"
-msgid "State"
-msgstr "Estado"
-
-msgctxt "field:production,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de unidad"
-
-msgctxt "field:production,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production,uom_category:"
-msgid "Uom Category"
-msgstr "Categoría UdM"
-
-msgctxt "field:production,warehouse:"
-msgid "Warehouse"
-msgstr "Almacén"
-
-msgctxt "field:production,write_date:"
-msgid "Write Date"
-msgstr "Fecha modificación"
-
-msgctxt "field:production,write_uid:"
-msgid "Write User"
-msgstr "Usuario modificación"
-
-msgctxt "field:production.assign.failed,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.assign.failed,moves:"
-msgid "Moves"
-msgstr "Movimientos"
-
-msgctxt "field:production.bom,active:"
-msgid "Active"
-msgstr "Activo"
-
-msgctxt "field:production.bom,create_date:"
-msgid "Create Date"
-msgstr "Fecha creación"
-
-msgctxt "field:production.bom,create_uid:"
-msgid "Create User"
-msgstr "Usuario creación"
-
-msgctxt "field:production.bom,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom,inputs:"
-msgid "Inputs"
-msgstr "Entradas"
-
-msgctxt "field:production.bom,name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom,output_products:"
-msgid "Output Products"
-msgstr "Salida de productos"
-
-msgctxt "field:production.bom,outputs:"
-msgid "Outputs"
-msgstr "Salidas"
-
-msgctxt "field:production.bom,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom,write_date:"
-msgid "Write Date"
-msgstr "Fecha modificación"
-
-msgctxt "field:production.bom,write_uid:"
-msgid "Write User"
-msgstr "Usuario modificación"
-
-msgctxt "field:production.bom.input,bom:"
-msgid "BOM"
-msgstr "LdM"
-
-msgctxt "field:production.bom.input,create_date:"
-msgid "Create Date"
-msgstr "Fecha creación"
-
-msgctxt "field:production.bom.input,create_uid:"
-msgid "Create User"
-msgstr "Usuario creación"
-
-msgctxt "field:production.bom.input,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.input,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.input,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.input,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom.input,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de unidad"
-
-msgctxt "field:production.bom.input,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production.bom.input,uom_category:"
-msgid "Uom Category"
-msgstr "Categoría UdM"
-
-msgctxt "field:production.bom.input,write_date:"
-msgid "Write Date"
-msgstr "Fecha modificación"
-
-msgctxt "field:production.bom.input,write_uid:"
-msgid "Write User"
-msgstr "Usuario modificación"
-
-msgctxt "field:production.bom.output,bom:"
-msgid "BOM"
-msgstr "LdM"
-
-msgctxt "field:production.bom.output,create_date:"
-msgid "Create Date"
-msgstr "Fecha creación"
-
-msgctxt "field:production.bom.output,create_uid:"
-msgid "Create User"
-msgstr "Usuario creación"
-
-msgctxt "field:production.bom.output,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.output,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.output,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.output,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom.output,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de unidad"
-
-msgctxt "field:production.bom.output,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production.bom.output,uom_category:"
-msgid "Uom Category"
-msgstr "Categoría UdM"
-
-msgctxt "field:production.bom.output,write_date:"
-msgid "Write Date"
-msgstr "Fecha modificación"
-
-msgctxt "field:production.bom.output,write_uid:"
-msgid "Write User"
-msgstr "Usuario modificación"
-
-msgctxt "field:production.bom.tree,childs:"
-msgid "Childs"
-msgstr "Hijos"
-
-msgctxt "field:production.bom.tree,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.tree,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.tree,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.tree,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de unidad"
-
-msgctxt "field:production.bom.tree,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production.bom.tree.open.start,bom:"
-msgid "BOM"
-msgstr "LdM"
-
-msgctxt "field:production.bom.tree.open.start,category:"
-msgid "Category"
-msgstr "Categoría"
-
-msgctxt "field:production.bom.tree.open.start,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.tree.open.start,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.tree.open.start,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.tree.open.start,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de unidad"
-
-msgctxt "field:production.bom.tree.open.start,uom:"
-msgid "Unit"
-msgstr "Unidad"
-
-msgctxt "field:production.bom.tree.open.tree,bom_tree:"
-msgid "BOM Tree"
-msgstr "Árbol LdM"
-
-msgctxt "field:production.bom.tree.open.tree,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.configuration,create_date:"
-msgid "Create Date"
-msgstr "Fecha creación"
-
-msgctxt "field:production.configuration,create_uid:"
-msgid "Create User"
-msgstr "Usuario creación"
-
-msgctxt "field:production.configuration,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.configuration,production_sequence:"
-msgid "Production Sequence"
-msgstr "Secuencia de producción"
-
-msgctxt "field:production.configuration,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.configuration,write_date:"
-msgid "Write Date"
-msgstr "Fecha modificación"
-
-msgctxt "field:production.configuration,write_uid:"
-msgid "Write User"
-msgstr "Usuario modificación"
-
-msgctxt "field:stock.location,production_location:"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "field:stock.move,production_input:"
-msgid "Production Input"
-msgstr "Entrada a producción"
-
-msgctxt "field:stock.move,production_output:"
-msgid "Production Output"
-msgstr "Salida de producción"
-
-msgctxt "model:ir.action,name:act_bom_form"
-msgid "BOM"
-msgstr "Lista de material"
-
-msgctxt "model:ir.action,name:act_bom_list"
-msgid "BOMs"
-msgstr "Lista de materiales"
-
-msgctxt "model:ir.action,name:act_production_calendar"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:ir.action,name:act_production_configuration_form"
-msgid "Production Configuration"
-msgstr "Configuración de producción"
-
-msgctxt "model:ir.action,name:act_production_list"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:ir.action,name:wizard_assign"
-msgid "Assign Production"
-msgstr "Asignar producción"
-
-msgctxt "model:ir.action,name:wizard_bom_tree_open"
-msgid "BOM Tree"
-msgstr "Árbol LdM"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_all"
-msgid "All"
-msgstr "Todo"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_assigned"
-msgid "Assigned"
-msgstr "Asignado"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_draft"
-msgid "Draft"
-msgstr "Borrador"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_requests"
-msgid "Requests"
-msgstr "Solicitudes"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_running"
-msgid "Running"
-msgstr "En ejecución"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_waiting"
-msgid "Waiting"
-msgstr "En espera"
-
-msgctxt "model:ir.sequence,name:sequence_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:ir.sequence.type,name:sequence_type_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:ir.ui.menu,name:menu_bom_list"
-msgid "BOMs"
-msgstr "Lista de materiales"
-
-msgctxt "model:ir.ui.menu,name:menu_configuration"
-msgid "Configuration"
-msgstr "Configuración"
-
-msgctxt "model:ir.ui.menu,name:menu_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:ir.ui.menu,name:menu_production_calendar"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:ir.ui.menu,name:menu_production_configuration"
-msgid "Production Configuration"
-msgstr "Producción"
-
-msgctxt "model:ir.ui.menu,name:menu_production_list"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:product.product-production.bom,name:"
-msgid "Product - BOM"
-msgstr "Producto - LdM"
-
-msgctxt "model:production,name:"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:production.assign.failed,name:"
-msgid "Assign Production"
-msgstr "Asignar producción"
-
-msgctxt "model:production.bom,name:"
-msgid "Bill of Material"
-msgstr "Lista de Materiales"
-
-msgctxt "model:production.bom.input,name:"
-msgid "Bill of Material Input"
-msgstr "Entrada Lista de Materiales"
-
-msgctxt "model:production.bom.output,name:"
-msgid "Bill of Material Output"
-msgstr "Salida Lista de Materiales"
-
-msgctxt "model:production.bom.tree,name:"
-msgid "BOM Tree"
-msgstr "Árbol LdM"
-
-msgctxt "model:production.bom.tree.open.start,name:"
-msgid "Open BOM Tree"
-msgstr "Abrir árbol de LdM"
-
-msgctxt "model:production.bom.tree.open.tree,name:"
-msgid "Open BOM Tree"
-msgstr "Abrir árbol de LdM"
-
-msgctxt "model:production.configuration,name:"
-msgid "Production Configuration"
-msgstr "Configuración de producción"
-
-msgctxt "model:res.group,name:group_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:res.group,name:group_production_admin"
-msgid "Production Administration"
-msgstr "Administración de producción"
-
-msgctxt "model:stock.location,name:location_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "selection:production,state:"
-msgid "Assigned"
-msgstr "Asignado"
-
-msgctxt "selection:production,state:"
-msgid "Canceled"
-msgstr "Cancelado"
-
-msgctxt "selection:production,state:"
-msgid "Done"
-msgstr "Realizado"
-
-msgctxt "selection:production,state:"
-msgid "Draft"
-msgstr "Borrador"
-
-msgctxt "selection:production,state:"
-msgid "Request"
-msgstr "Solicitud"
-
-msgctxt "selection:production,state:"
-msgid "Running"
-msgstr "En ejecución"
-
-msgctxt "selection:production,state:"
-msgid "Waiting"
-msgstr "En espera"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr "Producto - LdM"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr "Producto - Lista de materiales"
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr "No se puede asignar"
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to assign those products:"
-msgstr "No se puede asignar estos productos:"
-
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr "Entradas lista de material"
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr "Salidas lista de material"
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr "Árbol lista de materiales"
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr "Árbol lista de materiales"
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr "Árbol lista de materiales"
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr "Lista de material"
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr "Lista de materiales"
-
-msgctxt "view:production.bom:"
-msgid "Lines"
-msgstr "Líneas"
-
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr "Configuración de producción"
-
-msgctxt "view:production:"
-msgid "Assign"
-msgstr "Asignar"
-
-msgctxt "view:production:"
-msgid "Cancel"
-msgstr "Cancelar"
-
-msgctxt "view:production:"
-msgid "Done"
-msgstr "Realizado"
-
-msgctxt "view:production:"
-msgid "Draft"
-msgstr "Borrador"
-
-msgctxt "view:production:"
-msgid "Lines"
-msgstr "Líneas"
-
-msgctxt "view:production:"
-msgid "Other Info"
-msgstr "Información adicional"
-
-msgctxt "view:production:"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "view:production:"
-msgid "Reset to BOM"
-msgstr "Restablecer a LdM"
-
-msgctxt "view:production:"
-msgid "Run"
-msgstr "Ejecutar"
-
-msgctxt "view:production:"
-msgid "Wait"
-msgstr "Espera"
-
-msgctxt "wizard_button:production.assign,failed,end:"
-msgid "OK"
-msgstr "Aceptar"
-
-msgctxt "wizard_button:production.assign,failed,force:"
-msgid "Force Assign"
-msgstr "Forzar asignación"
-
-msgctxt "wizard_button:production.bom.tree.open,start,end:"
-msgid "Cancel"
-msgstr "Cancelar"
-
-msgctxt "wizard_button:production.bom.tree.open,start,tree:"
-msgid "OK"
-msgstr "Aceptar"
-
-msgctxt "wizard_button:production.bom.tree.open,tree,end:"
-msgid "Close"
-msgstr "Cerrar"
-
-msgctxt "wizard_button:production.bom.tree.open,tree,start:"
-msgid "Change"
-msgstr "Cambiar"
diff --git a/locale/es_CO.po b/locale/es_CO.po
deleted file mode 100644
index b85c183..0000000
--- a/locale/es_CO.po
+++ /dev/null
@@ -1,713 +0,0 @@
-# 
-msgid ""
-msgstr "Content-Type: text/plain; charset=utf-8\n"
-
-msgctxt "error:product.product:"
-msgid ""
-"You are trying to create a recursive BOM with product \"%s\" which is not "
-"allowed."
-msgstr ""
-"Esta intentando crear una LDM recursiva con el producto \"%s\" lo cual no "
-"esta permitido."
-
-msgctxt "error:production.bom.input:"
-msgid "Product must be unique per BOM."
-msgstr "El producto debe ser único en la LDM!"
-
-msgctxt "error:production.bom.input:"
-msgid "You can not create recursive BOMs."
-msgstr "No puede crear LDMs recursivas."
-
-msgctxt "error:production.bom.input:"
-msgid "product_bom_uniq"
-msgstr "El producto debe ser único en la LDM."
-
-msgctxt "error:production.bom.output:"
-msgid "Product must be unique per BOM."
-msgstr "El producto debe ser único en la LDM!"
-
-msgctxt "error:production.bom.output:"
-msgid "You can not create recursive BOMs."
-msgstr "No puede crear LDMs recursivas!"
-
-msgctxt "error:production.bom.output:"
-msgid "product_bom_uniq"
-msgstr "El producto debe ser único en la LDM."
-
-msgctxt "error:production:"
-msgid ""
-"The costs of the outputs (%(outputs)s) of production \"%(production)s\" do "
-"not match the cost of the production (%(costs)s)."
-msgstr ""
-"El costo de las salidas (%(output)s) de la producción \"%(production)s\" no "
-"coincide con el costo de producción (%(costs)s)."
-
-msgctxt "field:product.product,boms:"
-msgid "BOMs"
-msgstr "LDM"
-
-msgctxt "field:product.product-production.bom,bom:"
-msgid "BOM"
-msgstr "LDM"
-
-msgctxt "field:product.product-production.bom,create_date:"
-msgid "Create Date"
-msgstr "Fecha de Creación"
-
-msgctxt "field:product.product-production.bom,create_uid:"
-msgid "Create User"
-msgstr "Creado por Usuario"
-
-msgctxt "field:product.product-production.bom,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:product.product-production.bom,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:product.product-production.bom,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:product.product-production.bom,sequence:"
-msgid "Sequence"
-msgstr "Secuencia"
-
-msgctxt "field:product.product-production.bom,write_date:"
-msgid "Write Date"
-msgstr "Fecha de Modificación"
-
-msgctxt "field:product.product-production.bom,write_uid:"
-msgid "Write User"
-msgstr "Modificado por Usuario"
-
-msgctxt "field:production,bom:"
-msgid "BOM"
-msgstr "LDM"
-
-msgctxt "field:production,company:"
-msgid "Company"
-msgstr "Compañia"
-
-msgctxt "field:production,cost:"
-msgid "Cost"
-msgstr "Costo"
-
-msgctxt "field:production,create_date:"
-msgid "Create Date"
-msgstr "Fecha de Creación"
-
-msgctxt "field:production,create_uid:"
-msgid "Create User"
-msgstr "Creado por Usuario"
-
-msgctxt "field:production,effective_date:"
-msgid "Effective Date"
-msgstr "Fecha Efectiva"
-
-msgctxt "field:production,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production,inputs:"
-msgid "Inputs"
-msgstr "Entradas"
-
-msgctxt "field:production,location:"
-msgid "Location"
-msgstr "Bodega"
-
-msgctxt "field:production,number:"
-msgid "Number"
-msgstr "Número"
-
-msgctxt "field:production,outputs:"
-msgid "Outputs"
-msgstr "Salidas"
-
-msgctxt "field:production,planned_date:"
-msgid "Planned Date"
-msgstr "Fecha Planeada"
-
-msgctxt "field:production,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production,reference:"
-msgid "Reference"
-msgstr "Referencia"
-
-msgctxt "field:production,state:"
-msgid "State"
-msgstr "Estado"
-
-msgctxt "field:production,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de Unidad"
-
-msgctxt "field:production,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production,uom_category:"
-msgid "Uom Category"
-msgstr "Categoría UdM"
-
-msgctxt "field:production,warehouse:"
-msgid "Warehouse"
-msgstr "Depósito"
-
-msgctxt "field:production,write_date:"
-msgid "Write Date"
-msgstr "Fecha de Modificación"
-
-msgctxt "field:production,write_uid:"
-msgid "Write User"
-msgstr "Modificado por Usuario"
-
-msgctxt "field:production.assign.failed,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.assign.failed,moves:"
-msgid "Moves"
-msgstr "Movimientos"
-
-msgctxt "field:production.bom,active:"
-msgid "Active"
-msgstr "Activo"
-
-msgctxt "field:production.bom,create_date:"
-msgid "Create Date"
-msgstr "Fecha de Creación"
-
-msgctxt "field:production.bom,create_uid:"
-msgid "Create User"
-msgstr "Creado por Usuario"
-
-msgctxt "field:production.bom,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom,inputs:"
-msgid "Inputs"
-msgstr "Entradas"
-
-msgctxt "field:production.bom,name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom,output_products:"
-msgid "Output Products"
-msgstr "Salida de Productos"
-
-msgctxt "field:production.bom,outputs:"
-msgid "Outputs"
-msgstr "Salidas"
-
-msgctxt "field:production.bom,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom,write_date:"
-msgid "Write Date"
-msgstr "Fecha de Modificación"
-
-msgctxt "field:production.bom,write_uid:"
-msgid "Write User"
-msgstr "Modificado por Usuario"
-
-msgctxt "field:production.bom.input,bom:"
-msgid "BOM"
-msgstr "LDM"
-
-msgctxt "field:production.bom.input,create_date:"
-msgid "Create Date"
-msgstr "Fecha de Creación"
-
-msgctxt "field:production.bom.input,create_uid:"
-msgid "Create User"
-msgstr "Creado por Usuario"
-
-msgctxt "field:production.bom.input,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.input,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.input,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.input,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom.input,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de Unidad"
-
-msgctxt "field:production.bom.input,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production.bom.input,uom_category:"
-msgid "Uom Category"
-msgstr "Categoría UdM"
-
-msgctxt "field:production.bom.input,write_date:"
-msgid "Write Date"
-msgstr "Fecha de Modificación"
-
-msgctxt "field:production.bom.input,write_uid:"
-msgid "Write User"
-msgstr "Modificado por Usuario"
-
-msgctxt "field:production.bom.output,bom:"
-msgid "BOM"
-msgstr "LDM"
-
-msgctxt "field:production.bom.output,create_date:"
-msgid "Create Date"
-msgstr "Fecha de Creación"
-
-msgctxt "field:production.bom.output,create_uid:"
-msgid "Create User"
-msgstr "Creado por Usuario"
-
-msgctxt "field:production.bom.output,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.output,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.output,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.output,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom.output,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de Unidad"
-
-msgctxt "field:production.bom.output,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production.bom.output,uom_category:"
-msgid "Uom Category"
-msgstr "Categoría UdM"
-
-msgctxt "field:production.bom.output,write_date:"
-msgid "Write Date"
-msgstr "Fecha de Modificación"
-
-msgctxt "field:production.bom.output,write_uid:"
-msgid "Write User"
-msgstr "Modificado por Usuario"
-
-msgctxt "field:production.bom.tree,childs:"
-msgid "Childs"
-msgstr "Hijos"
-
-msgctxt "field:production.bom.tree,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.tree,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.tree,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.tree,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de Unidad"
-
-msgctxt "field:production.bom.tree,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production.bom.tree.open.start,bom:"
-msgid "BOM"
-msgstr "LDM"
-
-msgctxt "field:production.bom.tree.open.start,category:"
-msgid "Category"
-msgstr "Categoría"
-
-msgctxt "field:production.bom.tree.open.start,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.tree.open.start,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.tree.open.start,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.tree.open.start,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de Unidad"
-
-msgctxt "field:production.bom.tree.open.start,uom:"
-msgid "Unit"
-msgstr "Unidad"
-
-msgctxt "field:production.bom.tree.open.tree,bom_tree:"
-msgid "BOM Tree"
-msgstr "Árbol LDM"
-
-msgctxt "field:production.bom.tree.open.tree,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.configuration,create_date:"
-msgid "Create Date"
-msgstr "Fecha de Creación"
-
-msgctxt "field:production.configuration,create_uid:"
-msgid "Create User"
-msgstr "Creado por Usuario"
-
-msgctxt "field:production.configuration,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.configuration,production_sequence:"
-msgid "Production Sequence"
-msgstr "Secuencia Producción"
-
-msgctxt "field:production.configuration,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.configuration,write_date:"
-msgid "Write Date"
-msgstr "Fecha de Modificación"
-
-msgctxt "field:production.configuration,write_uid:"
-msgid "Write User"
-msgstr "Modificado por Usuario"
-
-msgctxt "field:stock.location,production_location:"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "field:stock.move,production_input:"
-msgid "Production Input"
-msgstr "Entrada a Producción"
-
-msgctxt "field:stock.move,production_output:"
-msgid "Production Output"
-msgstr "Salida de Producción"
-
-msgctxt "model:ir.action,name:act_bom_form"
-msgid "BOM"
-msgstr "LDM"
-
-msgctxt "model:ir.action,name:act_bom_list"
-msgid "BOMs"
-msgstr "LDMs"
-
-msgctxt "model:ir.action,name:act_production_calendar"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:ir.action,name:act_production_configuration_form"
-msgid "Production Configuration"
-msgstr "Configuración de Producción"
-
-msgctxt "model:ir.action,name:act_production_list"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:ir.action,name:wizard_assign"
-msgid "Assign Production"
-msgstr "Asignar Producción"
-
-msgctxt "model:ir.action,name:wizard_bom_tree_open"
-msgid "BOM Tree"
-msgstr "Árbol LDM"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_all"
-msgid "All"
-msgstr "Todo"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_assigned"
-msgid "Assigned"
-msgstr "Asignado"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_draft"
-msgid "Draft"
-msgstr "Borrador"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_requests"
-msgid "Requests"
-msgstr "Solicitudes"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_running"
-msgid "Running"
-msgstr "En Ejecución"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_waiting"
-msgid "Waiting"
-msgstr "En Espera"
-
-msgctxt "model:ir.sequence,name:sequence_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:ir.sequence.type,name:sequence_type_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:ir.ui.menu,name:menu_bom_list"
-msgid "BOMs"
-msgstr "Listas de Materiales"
-
-msgctxt "model:ir.ui.menu,name:menu_configuration"
-msgid "Configuration"
-msgstr "Configuración"
-
-msgctxt "model:ir.ui.menu,name:menu_production"
-msgid "Production"
-msgstr "Gestión de Producción"
-
-msgctxt "model:ir.ui.menu,name:menu_production_calendar"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:ir.ui.menu,name:menu_production_configuration"
-msgid "Production Configuration"
-msgstr "Configuración de Producción"
-
-msgctxt "model:ir.ui.menu,name:menu_production_list"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:product.product-production.bom,name:"
-msgid "Product - BOM"
-msgstr "Producto - LDM"
-
-msgctxt "model:production,name:"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:production.assign.failed,name:"
-msgid "Assign Production"
-msgstr "Asignar Producción"
-
-msgctxt "model:production.bom,name:"
-msgid "Bill of Material"
-msgstr "Lista de Materiales"
-
-msgctxt "model:production.bom.input,name:"
-msgid "Bill of Material Input"
-msgstr "Entrada de Lista de Materiales"
-
-msgctxt "model:production.bom.output,name:"
-msgid "Bill of Material Output"
-msgstr "Salida de Lista de Materiales"
-
-msgctxt "model:production.bom.tree,name:"
-msgid "BOM Tree"
-msgstr "Árbol LDM"
-
-msgctxt "model:production.bom.tree.open.start,name:"
-msgid "Open BOM Tree"
-msgstr "Abrir Arbol de LDM"
-
-msgctxt "model:production.bom.tree.open.tree,name:"
-msgid "Open BOM Tree"
-msgstr "Abrir Arbol de LDM"
-
-msgctxt "model:production.configuration,name:"
-msgid "Production Configuration"
-msgstr "Configuración de Producción"
-
-msgctxt "model:res.group,name:group_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:res.group,name:group_production_admin"
-msgid "Production Administration"
-msgstr "Administración de Producción"
-
-msgctxt "model:stock.location,name:location_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "selection:production,state:"
-msgid "Assigned"
-msgstr "Asignado"
-
-msgctxt "selection:production,state:"
-msgid "Canceled"
-msgstr "Anulada"
-
-msgctxt "selection:production,state:"
-msgid "Done"
-msgstr "Hecho"
-
-msgctxt "selection:production,state:"
-msgid "Draft"
-msgstr "Borrador"
-
-msgctxt "selection:production,state:"
-msgid "Request"
-msgstr "Solicitado"
-
-msgctxt "selection:production,state:"
-msgid "Running"
-msgstr "En ejecución"
-
-msgctxt "selection:production,state:"
-msgid "Waiting"
-msgstr "En Espera"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr "Producto - LDM"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr "Producto - LDMs"
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr "No se puede asignar"
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to assign those products:"
-msgstr "No se pueden asignar estos productos:"
-
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr "Entradas LDM"
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr "Salidas LDM"
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr "Árbol LDM"
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr "Árbol LDM"
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr "Árbol LDM"
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr "LDM"
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr "LDM"
-
-msgctxt "view:production.bom:"
-msgid "Lines"
-msgstr "Líneas"
-
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr "Configuración de Producción"
-
-msgctxt "view:production:"
-msgid "Assign"
-msgstr "Asignar"
-
-msgctxt "view:production:"
-msgid "Cancel"
-msgstr "Cancelar"
-
-msgctxt "view:production:"
-msgid "Done"
-msgstr "Hecho"
-
-msgctxt "view:production:"
-msgid "Draft"
-msgstr "Borrador"
-
-msgctxt "view:production:"
-msgid "Lines"
-msgstr "Líneas"
-
-msgctxt "view:production:"
-msgid "Other Info"
-msgstr "Info Adicional"
-
-msgctxt "view:production:"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "view:production:"
-msgid "Reset to BOM"
-msgstr "Restablecer a LDM"
-
-msgctxt "view:production:"
-msgid "Run"
-msgstr "Ejecutar"
-
-msgctxt "view:production:"
-msgid "Wait"
-msgstr "Espera"
-
-msgctxt "wizard_button:production.assign,failed,end:"
-msgid "OK"
-msgstr "Aceptar"
-
-msgctxt "wizard_button:production.assign,failed,force:"
-msgid "Force Assign"
-msgstr "Forzar Asignación"
-
-msgctxt "wizard_button:production.bom.tree.open,start,end:"
-msgid "Cancel"
-msgstr "Cancelar"
-
-msgctxt "wizard_button:production.bom.tree.open,start,tree:"
-msgid "OK"
-msgstr "Aceptar"
-
-msgctxt "wizard_button:production.bom.tree.open,tree,end:"
-msgid "Close"
-msgstr "Cerrar"
-
-msgctxt "wizard_button:production.bom.tree.open,tree,start:"
-msgid "Change"
-msgstr "Cambiar"
diff --git a/locale/es_EC.po b/locale/es_EC.po
deleted file mode 100644
index e8af271..0000000
--- a/locale/es_EC.po
+++ /dev/null
@@ -1,713 +0,0 @@
-# 
-msgid ""
-msgstr "Content-Type: text/plain; charset=utf-8\n"
-
-msgctxt "error:product.product:"
-msgid ""
-"You are trying to create a recursive BOM with product \"%s\" which is not "
-"allowed."
-msgstr ""
-"Está intentando crear una LDM recursiva con el producto \"%s\" lo cual no "
-"está permitido."
-
-msgctxt "error:production.bom.input:"
-msgid "Product must be unique per BOM."
-msgstr "El producto debe ser único por LDM."
-
-msgctxt "error:production.bom.input:"
-msgid "You can not create recursive BOMs."
-msgstr "No puede crear LDMs recursivas."
-
-msgctxt "error:production.bom.input:"
-msgid "product_bom_uniq"
-msgstr "El producto debe ser único en la LDM."
-
-msgctxt "error:production.bom.output:"
-msgid "Product must be unique per BOM."
-msgstr "El producto debe ser único por LDM."
-
-msgctxt "error:production.bom.output:"
-msgid "You can not create recursive BOMs."
-msgstr "No puede crear LDMs recursivas."
-
-msgctxt "error:production.bom.output:"
-msgid "product_bom_uniq"
-msgstr "El producto debe ser único en la LDM."
-
-msgctxt "error:production:"
-msgid ""
-"The costs of the outputs (%(outputs)s) of production \"%(production)s\" do "
-"not match the cost of the production (%(costs)s)."
-msgstr ""
-"Los costos de las salidas (%(output)s) de la producción \"%(production)s\" "
-"no coinciden con el costo de producción (%(costs)s)."
-
-msgctxt "field:product.product,boms:"
-msgid "BOMs"
-msgstr "LDMs"
-
-msgctxt "field:product.product-production.bom,bom:"
-msgid "BOM"
-msgstr "LDM"
-
-msgctxt "field:product.product-production.bom,create_date:"
-msgid "Create Date"
-msgstr "Fecha de creación"
-
-msgctxt "field:product.product-production.bom,create_uid:"
-msgid "Create User"
-msgstr "Creado por usuario"
-
-msgctxt "field:product.product-production.bom,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:product.product-production.bom,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:product.product-production.bom,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:product.product-production.bom,sequence:"
-msgid "Sequence"
-msgstr "Secuencia"
-
-msgctxt "field:product.product-production.bom,write_date:"
-msgid "Write Date"
-msgstr "Fecha de modificación"
-
-msgctxt "field:product.product-production.bom,write_uid:"
-msgid "Write User"
-msgstr "Modificado por usuario"
-
-msgctxt "field:production,bom:"
-msgid "BOM"
-msgstr "LDM"
-
-msgctxt "field:production,company:"
-msgid "Company"
-msgstr "Empresa"
-
-msgctxt "field:production,cost:"
-msgid "Cost"
-msgstr "Costo"
-
-msgctxt "field:production,create_date:"
-msgid "Create Date"
-msgstr "Fecha de creación"
-
-msgctxt "field:production,create_uid:"
-msgid "Create User"
-msgstr "Creado por usuario"
-
-msgctxt "field:production,effective_date:"
-msgid "Effective Date"
-msgstr "Fecha efectiva"
-
-msgctxt "field:production,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production,inputs:"
-msgid "Inputs"
-msgstr "Entradas"
-
-msgctxt "field:production,location:"
-msgid "Location"
-msgstr "Ubicación"
-
-msgctxt "field:production,number:"
-msgid "Number"
-msgstr "Número"
-
-msgctxt "field:production,outputs:"
-msgid "Outputs"
-msgstr "Salidas"
-
-msgctxt "field:production,planned_date:"
-msgid "Planned Date"
-msgstr "Fecha planificada"
-
-msgctxt "field:production,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production,reference:"
-msgid "Reference"
-msgstr "Referencia"
-
-msgctxt "field:production,state:"
-msgid "State"
-msgstr "Estado"
-
-msgctxt "field:production,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de unidad"
-
-msgctxt "field:production,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production,uom_category:"
-msgid "Uom Category"
-msgstr "Categoría de UdM"
-
-msgctxt "field:production,warehouse:"
-msgid "Warehouse"
-msgstr "Almacén"
-
-msgctxt "field:production,write_date:"
-msgid "Write Date"
-msgstr "Fecha de modificación"
-
-msgctxt "field:production,write_uid:"
-msgid "Write User"
-msgstr "Modificado por usuario"
-
-msgctxt "field:production.assign.failed,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.assign.failed,moves:"
-msgid "Moves"
-msgstr "Movimientos"
-
-msgctxt "field:production.bom,active:"
-msgid "Active"
-msgstr "Activo"
-
-msgctxt "field:production.bom,create_date:"
-msgid "Create Date"
-msgstr "Fecha de creación"
-
-msgctxt "field:production.bom,create_uid:"
-msgid "Create User"
-msgstr "Creado por usuario"
-
-msgctxt "field:production.bom,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom,inputs:"
-msgid "Inputs"
-msgstr "Entradas"
-
-msgctxt "field:production.bom,name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom,output_products:"
-msgid "Output Products"
-msgstr "Productos de salida"
-
-msgctxt "field:production.bom,outputs:"
-msgid "Outputs"
-msgstr "Salidas"
-
-msgctxt "field:production.bom,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom,write_date:"
-msgid "Write Date"
-msgstr "Fecha de modificación"
-
-msgctxt "field:production.bom,write_uid:"
-msgid "Write User"
-msgstr "Modificado por usuario"
-
-msgctxt "field:production.bom.input,bom:"
-msgid "BOM"
-msgstr "LDM"
-
-msgctxt "field:production.bom.input,create_date:"
-msgid "Create Date"
-msgstr "Fecha de creación"
-
-msgctxt "field:production.bom.input,create_uid:"
-msgid "Create User"
-msgstr "Creado por usuario"
-
-msgctxt "field:production.bom.input,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.input,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.input,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.input,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom.input,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de unidad"
-
-msgctxt "field:production.bom.input,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production.bom.input,uom_category:"
-msgid "Uom Category"
-msgstr "Categoría de UdM"
-
-msgctxt "field:production.bom.input,write_date:"
-msgid "Write Date"
-msgstr "Fecha de modificación"
-
-msgctxt "field:production.bom.input,write_uid:"
-msgid "Write User"
-msgstr "Modificado por usuario"
-
-msgctxt "field:production.bom.output,bom:"
-msgid "BOM"
-msgstr "LDM"
-
-msgctxt "field:production.bom.output,create_date:"
-msgid "Create Date"
-msgstr "Fecha de creación"
-
-msgctxt "field:production.bom.output,create_uid:"
-msgid "Create User"
-msgstr "Creado por usuario"
-
-msgctxt "field:production.bom.output,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.output,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.output,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.output,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom.output,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de unidad"
-
-msgctxt "field:production.bom.output,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production.bom.output,uom_category:"
-msgid "Uom Category"
-msgstr "Categoría de UdM"
-
-msgctxt "field:production.bom.output,write_date:"
-msgid "Write Date"
-msgstr "Fecha de modificación"
-
-msgctxt "field:production.bom.output,write_uid:"
-msgid "Write User"
-msgstr "Modificado por usuario"
-
-msgctxt "field:production.bom.tree,childs:"
-msgid "Childs"
-msgstr "Hijos"
-
-msgctxt "field:production.bom.tree,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.tree,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.tree,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.tree,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de unidad"
-
-msgctxt "field:production.bom.tree,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production.bom.tree.open.start,bom:"
-msgid "BOM"
-msgstr "LDM"
-
-msgctxt "field:production.bom.tree.open.start,category:"
-msgid "Category"
-msgstr "Categoría"
-
-msgctxt "field:production.bom.tree.open.start,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.tree.open.start,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.tree.open.start,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.tree.open.start,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de unidad"
-
-msgctxt "field:production.bom.tree.open.start,uom:"
-msgid "Unit"
-msgstr "Unidad"
-
-msgctxt "field:production.bom.tree.open.tree,bom_tree:"
-msgid "BOM Tree"
-msgstr "Árbol de LDM"
-
-msgctxt "field:production.bom.tree.open.tree,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.configuration,create_date:"
-msgid "Create Date"
-msgstr "Fecha de creación"
-
-msgctxt "field:production.configuration,create_uid:"
-msgid "Create User"
-msgstr "Creado por usuario"
-
-msgctxt "field:production.configuration,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.configuration,production_sequence:"
-msgid "Production Sequence"
-msgstr "Secuencia de producción"
-
-msgctxt "field:production.configuration,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.configuration,write_date:"
-msgid "Write Date"
-msgstr "Fecha de modificación"
-
-msgctxt "field:production.configuration,write_uid:"
-msgid "Write User"
-msgstr "Modificado por usuario"
-
-msgctxt "field:stock.location,production_location:"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "field:stock.move,production_input:"
-msgid "Production Input"
-msgstr "Entrada a producción"
-
-msgctxt "field:stock.move,production_output:"
-msgid "Production Output"
-msgstr "Salida de producción"
-
-msgctxt "model:ir.action,name:act_bom_form"
-msgid "BOM"
-msgstr "LDM"
-
-msgctxt "model:ir.action,name:act_bom_list"
-msgid "BOMs"
-msgstr "LDMs"
-
-msgctxt "model:ir.action,name:act_production_calendar"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:ir.action,name:act_production_configuration_form"
-msgid "Production Configuration"
-msgstr "Configuración de producción"
-
-msgctxt "model:ir.action,name:act_production_list"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:ir.action,name:wizard_assign"
-msgid "Assign Production"
-msgstr "Asignar producción"
-
-msgctxt "model:ir.action,name:wizard_bom_tree_open"
-msgid "BOM Tree"
-msgstr "Árbol de LDM"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_all"
-msgid "All"
-msgstr "Todo"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_assigned"
-msgid "Assigned"
-msgstr "Asignada"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_draft"
-msgid "Draft"
-msgstr "Borrador"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_requests"
-msgid "Requests"
-msgstr "Solicitudes"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_running"
-msgid "Running"
-msgstr "En ejecución"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_waiting"
-msgid "Waiting"
-msgstr "En espera"
-
-msgctxt "model:ir.sequence,name:sequence_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:ir.sequence.type,name:sequence_type_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:ir.ui.menu,name:menu_bom_list"
-msgid "BOMs"
-msgstr "LDMs"
-
-msgctxt "model:ir.ui.menu,name:menu_configuration"
-msgid "Configuration"
-msgstr "Configuración"
-
-msgctxt "model:ir.ui.menu,name:menu_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:ir.ui.menu,name:menu_production_calendar"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:ir.ui.menu,name:menu_production_configuration"
-msgid "Production Configuration"
-msgstr "Configuración de Producción"
-
-msgctxt "model:ir.ui.menu,name:menu_production_list"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:product.product-production.bom,name:"
-msgid "Product - BOM"
-msgstr "Producto - LDM"
-
-msgctxt "model:production,name:"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:production.assign.failed,name:"
-msgid "Assign Production"
-msgstr "Asignar producción"
-
-msgctxt "model:production.bom,name:"
-msgid "Bill of Material"
-msgstr "Lista de materiales"
-
-msgctxt "model:production.bom.input,name:"
-msgid "Bill of Material Input"
-msgstr "Entrada de lista de materiales"
-
-msgctxt "model:production.bom.output,name:"
-msgid "Bill of Material Output"
-msgstr "Salida de lista de materiales"
-
-msgctxt "model:production.bom.tree,name:"
-msgid "BOM Tree"
-msgstr "Árbol de LDM"
-
-msgctxt "model:production.bom.tree.open.start,name:"
-msgid "Open BOM Tree"
-msgstr "Abrir árbol de LDM"
-
-msgctxt "model:production.bom.tree.open.tree,name:"
-msgid "Open BOM Tree"
-msgstr "Abrir árbol de LDM"
-
-msgctxt "model:production.configuration,name:"
-msgid "Production Configuration"
-msgstr "Configuración de producción"
-
-msgctxt "model:res.group,name:group_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:res.group,name:group_production_admin"
-msgid "Production Administration"
-msgstr "Administración de Producción"
-
-msgctxt "model:stock.location,name:location_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "selection:production,state:"
-msgid "Assigned"
-msgstr "Asignada"
-
-msgctxt "selection:production,state:"
-msgid "Canceled"
-msgstr "Cancelada"
-
-msgctxt "selection:production,state:"
-msgid "Done"
-msgstr "Finalizado"
-
-msgctxt "selection:production,state:"
-msgid "Draft"
-msgstr "Borrador"
-
-msgctxt "selection:production,state:"
-msgid "Request"
-msgstr "Solicitada"
-
-msgctxt "selection:production,state:"
-msgid "Running"
-msgstr "En ejecución"
-
-msgctxt "selection:production,state:"
-msgid "Waiting"
-msgstr "En espera"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr "Producto - LDM"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr "Producto - LDMs"
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr "No se puede asignar"
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to assign those products:"
-msgstr "No se pueden asignar estos productos:"
-
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr "Entradas de LDM"
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr "Salidas de LDM"
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr "Árbol de LDM"
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr "Árbol de LDM"
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr "Árbol de LDM"
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr "LDM"
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr "LDMs"
-
-msgctxt "view:production.bom:"
-msgid "Lines"
-msgstr "Líneas"
-
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr "Configuración de producción"
-
-msgctxt "view:production:"
-msgid "Assign"
-msgstr "Asignar"
-
-msgctxt "view:production:"
-msgid "Cancel"
-msgstr "Cancelar"
-
-msgctxt "view:production:"
-msgid "Done"
-msgstr "Finalizar"
-
-msgctxt "view:production:"
-msgid "Draft"
-msgstr "Borrador"
-
-msgctxt "view:production:"
-msgid "Lines"
-msgstr "Líneas"
-
-msgctxt "view:production:"
-msgid "Other Info"
-msgstr "Información adicional"
-
-msgctxt "view:production:"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "view:production:"
-msgid "Reset to BOM"
-msgstr "Restablecer a LDM"
-
-msgctxt "view:production:"
-msgid "Run"
-msgstr "Ejecutar"
-
-msgctxt "view:production:"
-msgid "Wait"
-msgstr "En Espera"
-
-msgctxt "wizard_button:production.assign,failed,end:"
-msgid "OK"
-msgstr "Aceptar"
-
-msgctxt "wizard_button:production.assign,failed,force:"
-msgid "Force Assign"
-msgstr "Forzar asignación"
-
-msgctxt "wizard_button:production.bom.tree.open,start,end:"
-msgid "Cancel"
-msgstr "Cancelar"
-
-msgctxt "wizard_button:production.bom.tree.open,start,tree:"
-msgid "OK"
-msgstr "Aceptar"
-
-msgctxt "wizard_button:production.bom.tree.open,tree,end:"
-msgid "Close"
-msgstr "Cerrar"
-
-msgctxt "wizard_button:production.bom.tree.open,tree,start:"
-msgid "Change"
-msgstr "Cambiar"
diff --git a/locale/es_MX.po b/locale/es_MX.po
deleted file mode 100644
index 72d05fd..0000000
--- a/locale/es_MX.po
+++ /dev/null
@@ -1,727 +0,0 @@
-# 
-msgid ""
-msgstr "Content-Type: text/plain; charset=utf-8\n"
-
-msgctxt "error:product.product:"
-msgid ""
-"You are trying to create a recursive BOM with product \"%s\" which is not "
-"allowed."
-msgstr ""
-"Está intentando crear una lista de materiales recursiva con el producto \"% "
-"s\" lo cual no está permitido."
-
-msgctxt "error:production.bom.input:"
-msgid "Product must be unique per BOM."
-msgstr "El producto debe ser único por LdM."
-
-msgctxt "error:production.bom.input:"
-msgid "You can not create recursive BOMs."
-msgstr "No puede crear una lista de materiales recursiva."
-
-msgctxt "error:production.bom.input:"
-msgid "product_bom_uniq"
-msgstr "El producto debe ser único en la LdM."
-
-msgctxt "error:production.bom.output:"
-msgid "Product must be unique per BOM."
-msgstr "El producto debe ser único por LdM."
-
-msgctxt "error:production.bom.output:"
-msgid "You can not create recursive BOMs."
-msgstr "No puede crear una lista de materiales recursiva."
-
-msgctxt "error:production.bom.output:"
-msgid "product_bom_uniq"
-msgstr "El producto debe ser único en la LdM."
-
-msgctxt "error:production:"
-msgid ""
-"The costs of the outputs (%(outputs)s) of production \"%(production)s\" do "
-"not match the cost of the production (%(costs)s)."
-msgstr ""
-"Los costos de los movimientos de salida (%(outputs)s) de la producción "
-"\"%(production)s\" no coinciden con el costo de la producción (%(costs)s)."
-
-msgctxt "field:product.product,boms:"
-msgid "BOMs"
-msgstr "LdM"
-
-msgctxt "field:product.product-production.bom,bom:"
-msgid "BOM"
-msgstr "LdM"
-
-msgctxt "field:product.product-production.bom,create_date:"
-msgid "Create Date"
-msgstr "Fecha creación"
-
-msgctxt "field:product.product-production.bom,create_uid:"
-msgid "Create User"
-msgstr "Usuario creación"
-
-msgctxt "field:product.product-production.bom,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:product.product-production.bom,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:product.product-production.bom,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:product.product-production.bom,sequence:"
-msgid "Sequence"
-msgstr "Secuencia"
-
-msgctxt "field:product.product-production.bom,write_date:"
-msgid "Write Date"
-msgstr "Fecha modificación"
-
-msgctxt "field:product.product-production.bom,write_uid:"
-msgid "Write User"
-msgstr "Usuario modificación"
-
-msgctxt "field:production,bom:"
-msgid "BOM"
-msgstr "LdM"
-
-msgctxt "field:production,company:"
-msgid "Company"
-msgstr "Empresa"
-
-msgctxt "field:production,cost:"
-msgid "Cost"
-msgstr "Coste"
-
-msgctxt "field:production,create_date:"
-msgid "Create Date"
-msgstr "Fecha creación"
-
-msgctxt "field:production,create_uid:"
-msgid "Create User"
-msgstr "Usuario creación"
-
-msgctxt "field:production,effective_date:"
-msgid "Effective Date"
-msgstr "Fecha efectiva"
-
-msgctxt "field:production,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production,inputs:"
-msgid "Inputs"
-msgstr "Entradas"
-
-msgctxt "field:production,location:"
-msgid "Location"
-msgstr "Ubicación"
-
-msgctxt "field:production,number:"
-msgid "Number"
-msgstr ""
-
-msgctxt "field:production,outputs:"
-msgid "Outputs"
-msgstr "Salidas"
-
-msgctxt "field:production,planned_date:"
-msgid "Planned Date"
-msgstr "Fecha estimada"
-
-msgctxt "field:production,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production,reference:"
-msgid "Reference"
-msgstr "Referencia"
-
-msgctxt "field:production,state:"
-msgid "State"
-msgstr "Estado"
-
-msgctxt "field:production,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de la unidad"
-
-msgctxt "field:production,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production,uom_category:"
-msgid "Uom Category"
-msgstr "Categoría de UdM"
-
-msgctxt "field:production,warehouse:"
-msgid "Warehouse"
-msgstr "Almacén"
-
-msgctxt "field:production,write_date:"
-msgid "Write Date"
-msgstr "Fecha modificación"
-
-msgctxt "field:production,write_uid:"
-msgid "Write User"
-msgstr "Usuario modificación"
-
-msgctxt "field:production.assign.failed,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.assign.failed,moves:"
-msgid "Moves"
-msgstr "Movimientos"
-
-msgctxt "field:production.bom,active:"
-msgid "Active"
-msgstr "Activo"
-
-msgctxt "field:production.bom,create_date:"
-msgid "Create Date"
-msgstr "Fecha creación"
-
-msgctxt "field:production.bom,create_uid:"
-msgid "Create User"
-msgstr "Usuario creación"
-
-msgctxt "field:production.bom,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom,inputs:"
-msgid "Inputs"
-msgstr "Entradas"
-
-msgctxt "field:production.bom,name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom,output_products:"
-msgid "Output Products"
-msgstr "Productos salida"
-
-msgctxt "field:production.bom,outputs:"
-msgid "Outputs"
-msgstr "Salidas"
-
-msgctxt "field:production.bom,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom,write_date:"
-msgid "Write Date"
-msgstr "Fecha modificación"
-
-msgctxt "field:production.bom,write_uid:"
-msgid "Write User"
-msgstr "Usuario modificación"
-
-msgctxt "field:production.bom.input,bom:"
-msgid "BOM"
-msgstr "LdM"
-
-msgctxt "field:production.bom.input,create_date:"
-msgid "Create Date"
-msgstr "Fecha creación"
-
-msgctxt "field:production.bom.input,create_uid:"
-msgid "Create User"
-msgstr "Usuario creación"
-
-msgctxt "field:production.bom.input,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.input,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.input,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.input,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom.input,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de la unidad"
-
-msgctxt "field:production.bom.input,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production.bom.input,uom_category:"
-msgid "Uom Category"
-msgstr "Categoría de UdM"
-
-msgctxt "field:production.bom.input,write_date:"
-msgid "Write Date"
-msgstr "Fecha modificación"
-
-msgctxt "field:production.bom.input,write_uid:"
-msgid "Write User"
-msgstr "Usuario modificación"
-
-msgctxt "field:production.bom.output,bom:"
-msgid "BOM"
-msgstr "LdM"
-
-msgctxt "field:production.bom.output,create_date:"
-msgid "Create Date"
-msgstr "Fecha creación"
-
-msgctxt "field:production.bom.output,create_uid:"
-msgid "Create User"
-msgstr "Usuario creación"
-
-msgctxt "field:production.bom.output,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.output,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.output,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.output,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.bom.output,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de la unidad"
-
-msgctxt "field:production.bom.output,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production.bom.output,uom_category:"
-msgid "Uom Category"
-msgstr "Categoría de UdM"
-
-msgctxt "field:production.bom.output,write_date:"
-msgid "Write Date"
-msgstr "Fecha modificación"
-
-msgctxt "field:production.bom.output,write_uid:"
-msgid "Write User"
-msgstr "Usuario modificación"
-
-msgctxt "field:production.bom.tree,childs:"
-msgid "Childs"
-msgstr "Hijos"
-
-msgctxt "field:production.bom.tree,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.tree,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.tree,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.tree,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de la unidad"
-
-msgctxt "field:production.bom.tree,uom:"
-msgid "Uom"
-msgstr "UdM"
-
-msgctxt "field:production.bom.tree.open.start,bom:"
-msgid "BOM"
-msgstr "LdM"
-
-msgctxt "field:production.bom.tree.open.start,category:"
-msgid "Category"
-msgstr "Categoría"
-
-msgctxt "field:production.bom.tree.open.start,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.bom.tree.open.start,product:"
-msgid "Product"
-msgstr "Producto"
-
-msgctxt "field:production.bom.tree.open.start,quantity:"
-msgid "Quantity"
-msgstr "Cantidad"
-
-msgctxt "field:production.bom.tree.open.start,unit_digits:"
-msgid "Unit Digits"
-msgstr "Decimales de la unidad"
-
-msgctxt "field:production.bom.tree.open.start,uom:"
-msgid "Unit"
-msgstr "Unidad"
-
-msgctxt "field:production.bom.tree.open.tree,bom_tree:"
-msgid "BOM Tree"
-msgstr "Árbol LdM"
-
-msgctxt "field:production.bom.tree.open.tree,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.configuration,create_date:"
-msgid "Create Date"
-msgstr "Fecha creación"
-
-msgctxt "field:production.configuration,create_uid:"
-msgid "Create User"
-msgstr "Usuario creación"
-
-msgctxt "field:production.configuration,id:"
-msgid "ID"
-msgstr "ID"
-
-msgctxt "field:production.configuration,production_sequence:"
-msgid "Production Sequence"
-msgstr "Secuencia de producción"
-
-msgctxt "field:production.configuration,rec_name:"
-msgid "Name"
-msgstr "Nombre"
-
-msgctxt "field:production.configuration,write_date:"
-msgid "Write Date"
-msgstr "Fecha modificación"
-
-msgctxt "field:production.configuration,write_uid:"
-msgid "Write User"
-msgstr "Usuario modificación"
-
-msgctxt "field:stock.location,production_location:"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "field:stock.move,production_input:"
-msgid "Production Input"
-msgstr "Entrada producción"
-
-msgctxt "field:stock.move,production_output:"
-msgid "Production Output"
-msgstr "Salida producción"
-
-msgctxt "model:ir.action,name:act_bom_form"
-msgid "BOM"
-msgstr "Lista de material"
-
-msgctxt "model:ir.action,name:act_bom_list"
-msgid "BOMs"
-msgstr "Listas de material"
-
-msgctxt "model:ir.action,name:act_production_calendar"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:ir.action,name:act_production_configuration_form"
-msgid "Production Configuration"
-msgstr "Configuración de la producción"
-
-msgctxt "model:ir.action,name:act_production_list"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:ir.action,name:wizard_assign"
-msgid "Assign Production"
-msgstr "Reservar producción"
-
-msgctxt "model:ir.action,name:wizard_bom_tree_open"
-msgid "BOM Tree"
-msgstr "Árbol LdM"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_all"
-msgid "All"
-msgstr "Todo"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_assigned"
-msgid "Assigned"
-msgstr "Reservada"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_draft"
-msgid "Draft"
-msgstr "Borrador"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_requests"
-msgid "Requests"
-msgstr "Solicitudes"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_running"
-msgid "Running"
-msgstr "En ejecución"
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_waiting"
-msgid "Waiting"
-msgstr "En espera"
-
-msgctxt "model:ir.sequence,name:sequence_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:ir.sequence.type,name:sequence_type_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:ir.ui.menu,name:menu_bom_list"
-msgid "BOMs"
-msgstr "Listas de material"
-
-msgctxt "model:ir.ui.menu,name:menu_configuration"
-msgid "Configuration"
-msgstr "Configuración"
-
-msgctxt "model:ir.ui.menu,name:menu_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:ir.ui.menu,name:menu_production_calendar"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:ir.ui.menu,name:menu_production_configuration"
-msgid "Production Configuration"
-msgstr "Producción"
-
-msgctxt "model:ir.ui.menu,name:menu_production_list"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "model:product.product-production.bom,name:"
-msgid "Product - BOM"
-msgstr "Producto - LdM"
-
-msgctxt "model:production,name:"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:production.assign.failed,name:"
-msgid "Assign Production"
-msgstr "Reservar producción"
-
-msgctxt "model:production.bom,name:"
-msgid "Bill of Material"
-msgstr "Lista de Material"
-
-msgctxt "model:production.bom.input,name:"
-msgid "Bill of Material Input"
-msgstr "Entrada Lista de Material"
-
-msgctxt "model:production.bom.output,name:"
-msgid "Bill of Material Output"
-msgstr "Salida Lista de Material"
-
-msgctxt "model:production.bom.tree,name:"
-msgid "BOM Tree"
-msgstr "Árbol LdM"
-
-msgctxt "model:production.bom.tree.open.start,name:"
-msgid "Open BOM Tree"
-msgstr "Abrir árbol BOM"
-
-msgctxt "model:production.bom.tree.open.tree,name:"
-msgid "Open BOM Tree"
-msgstr "Abrir árbol BOM"
-
-msgctxt "model:production.configuration,name:"
-msgid "Production Configuration"
-msgstr "Configuración de la producción"
-
-msgctxt "model:res.group,name:group_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "model:res.group,name:group_production_admin"
-msgid "Production Administration"
-msgstr "Administración de producción"
-
-msgctxt "model:stock.location,name:location_production"
-msgid "Production"
-msgstr "Producción"
-
-msgctxt "selection:production,state:"
-msgid "Assigned"
-msgstr "Reservada"
-
-msgctxt "selection:production,state:"
-msgid "Canceled"
-msgstr "Cancelada"
-
-msgctxt "selection:production,state:"
-msgid "Done"
-msgstr "Finalizada"
-
-msgctxt "selection:production,state:"
-msgid "Draft"
-msgstr "Borrador"
-
-msgctxt "selection:production,state:"
-msgid "Request"
-msgstr "Solicitud"
-
-msgctxt "selection:production,state:"
-msgid "Running"
-msgstr "En ejecución"
-
-msgctxt "selection:production,state:"
-msgid "Waiting"
-msgstr "En espera"
-
-#, fuzzy
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr "Producto - LdM"
-
-#, fuzzy
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr "Producto - LdM"
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr ""
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to assign those products:"
-msgstr ""
-
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr ""
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr ""
-
-#, fuzzy
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr "Árbol LdM"
-
-#, fuzzy
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr "Árbol LdM"
-
-#, fuzzy
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr "Árbol LdM"
-
-#, fuzzy
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr "LdM"
-
-#, fuzzy
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr "LdM"
-
-msgctxt "view:production.bom:"
-msgid "Lines"
-msgstr ""
-
-#, fuzzy
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr "Configuración de la producción"
-
-#, fuzzy
-msgctxt "view:production:"
-msgid "Assign"
-msgstr "Reservada"
-
-#, fuzzy
-msgctxt "view:production:"
-msgid "Cancel"
-msgstr "Cancelar"
-
-#, fuzzy
-msgctxt "view:production:"
-msgid "Done"
-msgstr "Finalizada"
-
-#, fuzzy
-msgctxt "view:production:"
-msgid "Draft"
-msgstr "Borrador"
-
-msgctxt "view:production:"
-msgid "Lines"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Other Info"
-msgstr ""
-
-#, fuzzy
-msgctxt "view:production:"
-msgid "Production"
-msgstr "Producción"
-
-#, fuzzy
-msgctxt "view:production:"
-msgid "Productions"
-msgstr "Producciones"
-
-msgctxt "view:production:"
-msgid "Reset to BOM"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Run"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Wait"
-msgstr ""
-
-msgctxt "wizard_button:production.assign,failed,end:"
-msgid "OK"
-msgstr "Aceptar"
-
-msgctxt "wizard_button:production.assign,failed,force:"
-msgid "Force Assign"
-msgstr "Forzar reserva"
-
-msgctxt "wizard_button:production.bom.tree.open,start,end:"
-msgid "Cancel"
-msgstr "Cancelar"
-
-msgctxt "wizard_button:production.bom.tree.open,start,tree:"
-msgid "OK"
-msgstr "Aceptar"
-
-msgctxt "wizard_button:production.bom.tree.open,tree,end:"
-msgid "Close"
-msgstr "Cerrar"
-
-msgctxt "wizard_button:production.bom.tree.open,tree,start:"
-msgid "Change"
-msgstr "Cambiar"
diff --git a/locale/fr_FR.po b/locale/fr.po
similarity index 90%
rename from locale/fr_FR.po
rename to locale/fr.po
index d2adf2b..edf47f4 100644
--- a/locale/fr_FR.po
+++ b/locale/fr.po
@@ -46,6 +46,10 @@ msgctxt "field:product.product,boms:"
 msgid "BOMs"
 msgstr "Nomenclatures"
 
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
+msgstr "Délai de livraison"
+
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
 msgstr "Nomenclature"
@@ -106,6 +110,10 @@ msgctxt "field:production,effective_date:"
 msgid "Effective Date"
 msgstr "Date effective"
 
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr "Date de début effective"
+
 msgctxt "field:production,id:"
 msgid "ID"
 msgstr "ID"
@@ -130,6 +138,10 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr "Date planifiée"
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr "Date de début planifiée"
+
 msgctxt "field:production,product:"
 msgid "Product"
 msgstr "Produit"
@@ -410,6 +422,46 @@ msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
 msgstr "Mis à jour par"
 
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr "Nomenclature"
+
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr "Date de création"
+
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr "Créé par"
+
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr "Délai de production"
+
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr "Produit"
+
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr "Nom"
+
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr "Séquence"
+
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr "Date de mise à jour"
+
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr "Mis à jour par"
+
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
 msgstr "Production"
@@ -430,6 +482,10 @@ msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
 msgstr "Nomenclatures"
 
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr "Nomenclatures"
+
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
 msgstr "Productions"
@@ -451,6 +507,16 @@ msgid "BOM Tree"
 msgstr "Arbre de nomenclatures"
 
 msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr "Comme entrées"
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
+msgstr "Comme sorties"
+
+msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
 msgstr "Toutes"
@@ -552,6 +618,10 @@ msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
 msgstr "Configuration de la production"
 
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
+msgstr "Délai de production"
+
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
 msgstr "Production"
@@ -592,58 +662,18 @@ msgctxt "selection:production,state:"
 msgid "Waiting"
 msgstr "En attente"
 
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr "Produit - Nomenclature"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr "Produit - Nomenclatures"
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr "Impossible d'assigner"
+msgctxt "view:product.product:"
+msgid "Production"
+msgstr "Production"
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr "Impossible d'assigner ces produits :"
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr "Entrées de nomenclature"
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr "Sorties de nomenclature"
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr "Arbre de nomenclatures"
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr "Arbre de nomenclatures"
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr "Arbre de nomenclatures"
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr "Nomenclature"
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr "Nomenclatures"
-
 msgctxt "view:production.bom:"
 msgid "Lines"
 msgstr "Lignes"
 
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr "Configuration de la production"
-
 msgctxt "view:production:"
 msgid "Assign"
 msgstr "Assigner"
@@ -669,14 +699,6 @@ msgid "Other Info"
 msgstr "Autre information"
 
 msgctxt "view:production:"
-msgid "Production"
-msgstr "Production"
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr "Productions"
-
-msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr "Réinitialiser à la nomenclature"
 
diff --git a/locale/hu_HU.po b/locale/hu_HU.po
index 438cc8c..a1fd0d0 100644
--- a/locale/hu_HU.po
+++ b/locale/hu_HU.po
@@ -42,81 +42,104 @@ msgctxt "field:product.product,boms:"
 msgid "BOMs"
 msgstr ""
 
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
+msgstr ""
+
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Létrehozás détuma"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Által létrehozva "
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,product:"
 msgid "Product"
-msgstr ""
+msgstr "Termék"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Név"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,sequence:"
 msgid "Sequence"
-msgstr ""
+msgstr "Számkör"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "utolsó módosítás dátuma"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "Által módosítva"
 
 msgctxt "field:production,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,company:"
 msgid "Company"
-msgstr ""
+msgstr "Társaság"
 
+#, fuzzy
 msgctxt "field:production,cost:"
 msgid "Cost"
-msgstr ""
+msgstr "Költség"
 
+#, fuzzy
 msgctxt "field:production,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Létrehozás détuma"
 
+#, fuzzy
 msgctxt "field:production,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Által létrehozva "
 
 msgctxt "field:production,effective_date:"
 msgid "Effective Date"
 msgstr ""
 
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr ""
+
+#, fuzzy
 msgctxt "field:production,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
 msgctxt "field:production,inputs:"
 msgid "Inputs"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,location:"
 msgid "Location"
-msgstr ""
+msgstr "Raktár hely"
 
+#, fuzzy
 msgctxt "field:production,number:"
 msgid "Number"
-msgstr ""
+msgstr "Szám"
 
 msgctxt "field:production,outputs:"
 msgid "Outputs"
@@ -126,81 +149,102 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr ""
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr ""
+
+#, fuzzy
 msgctxt "field:production,product:"
 msgid "Product"
-msgstr ""
+msgstr "Termék"
 
+#, fuzzy
 msgctxt "field:production,quantity:"
 msgid "Quantity"
-msgstr ""
+msgstr "Mennyiség"
 
+#, fuzzy
 msgctxt "field:production,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Név"
 
 msgctxt "field:production,reference:"
 msgid "Reference"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,state:"
 msgid "State"
-msgstr ""
+msgstr "Állapot"
 
+#, fuzzy
 msgctxt "field:production,unit_digits:"
 msgid "Unit Digits"
-msgstr ""
+msgstr "Tizedes vessző utáni számjegy"
 
+#, fuzzy
 msgctxt "field:production,uom:"
 msgid "Uom"
-msgstr ""
+msgstr "Egység"
 
+#, fuzzy
 msgctxt "field:production,uom_category:"
 msgid "Uom Category"
-msgstr ""
+msgstr "Egység kategória"
 
+#, fuzzy
 msgctxt "field:production,warehouse:"
 msgid "Warehouse"
-msgstr ""
+msgstr "Raktár"
 
+#, fuzzy
 msgctxt "field:production,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "utolsó módosítás dátuma"
 
+#, fuzzy
 msgctxt "field:production,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "Által módosítva"
 
+#, fuzzy
 msgctxt "field:production.assign.failed,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
+#, fuzzy
 msgctxt "field:production.assign.failed,moves:"
 msgid "Moves"
-msgstr ""
+msgstr "Raktár mozgás"
 
+#, fuzzy
 msgctxt "field:production.bom,active:"
 msgid "Active"
-msgstr ""
+msgstr "Aktív"
 
+#, fuzzy
 msgctxt "field:production.bom,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Létrehozás détuma"
 
+#, fuzzy
 msgctxt "field:production.bom,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Által létrehozva "
 
+#, fuzzy
 msgctxt "field:production.bom,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
 msgctxt "field:production.bom,inputs:"
 msgid "Inputs"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom,name:"
 msgid "Name"
-msgstr ""
+msgstr "Név"
 
 msgctxt "field:production.bom,output_products:"
 msgid "Output Products"
@@ -210,205 +254,298 @@ msgctxt "field:production.bom,outputs:"
 msgid "Outputs"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Név"
 
+#, fuzzy
 msgctxt "field:production.bom,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "utolsó módosítás dátuma"
 
+#, fuzzy
 msgctxt "field:production.bom,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "Által módosítva"
 
 msgctxt "field:production.bom.input,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.input,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Létrehozás détuma"
 
+#, fuzzy
 msgctxt "field:production.bom.input,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Által létrehozva "
 
+#, fuzzy
 msgctxt "field:production.bom.input,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
+#, fuzzy
 msgctxt "field:production.bom.input,product:"
 msgid "Product"
-msgstr ""
+msgstr "Termék"
 
+#, fuzzy
 msgctxt "field:production.bom.input,quantity:"
 msgid "Quantity"
-msgstr ""
+msgstr "Mennyiség"
 
+#, fuzzy
 msgctxt "field:production.bom.input,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Név"
 
+#, fuzzy
 msgctxt "field:production.bom.input,unit_digits:"
 msgid "Unit Digits"
-msgstr ""
+msgstr "Tizedes vessző utáni számjegy"
 
+#, fuzzy
 msgctxt "field:production.bom.input,uom:"
 msgid "Uom"
-msgstr ""
+msgstr "Egység"
 
+#, fuzzy
 msgctxt "field:production.bom.input,uom_category:"
 msgid "Uom Category"
-msgstr ""
+msgstr "Egység kategória"
 
+#, fuzzy
 msgctxt "field:production.bom.input,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "utolsó módosítás dátuma"
 
+#, fuzzy
 msgctxt "field:production.bom.input,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "Által módosítva"
 
 msgctxt "field:production.bom.output,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.output,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Létrehozás détuma"
 
+#, fuzzy
 msgctxt "field:production.bom.output,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Által létrehozva "
 
+#, fuzzy
 msgctxt "field:production.bom.output,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
+#, fuzzy
 msgctxt "field:production.bom.output,product:"
 msgid "Product"
-msgstr ""
+msgstr "Termék"
 
+#, fuzzy
 msgctxt "field:production.bom.output,quantity:"
 msgid "Quantity"
-msgstr ""
+msgstr "Mennyiség"
 
+#, fuzzy
 msgctxt "field:production.bom.output,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Név"
 
+#, fuzzy
 msgctxt "field:production.bom.output,unit_digits:"
 msgid "Unit Digits"
-msgstr ""
+msgstr "Tizedes vessző utáni számjegy"
 
+#, fuzzy
 msgctxt "field:production.bom.output,uom:"
 msgid "Uom"
-msgstr ""
+msgstr "Egység"
 
+#, fuzzy
 msgctxt "field:production.bom.output,uom_category:"
 msgid "Uom Category"
-msgstr ""
+msgstr "Egység kategória"
 
+#, fuzzy
 msgctxt "field:production.bom.output,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "utolsó módosítás dátuma"
 
+#, fuzzy
 msgctxt "field:production.bom.output,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "Által módosítva"
 
+#, fuzzy
 msgctxt "field:production.bom.tree,childs:"
 msgid "Childs"
-msgstr ""
+msgstr "Alárendelt (modul)"
 
+#, fuzzy
 msgctxt "field:production.bom.tree,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
+#, fuzzy
 msgctxt "field:production.bom.tree,product:"
 msgid "Product"
-msgstr ""
+msgstr "Termék"
 
+#, fuzzy
 msgctxt "field:production.bom.tree,quantity:"
 msgid "Quantity"
-msgstr ""
+msgstr "Mennyiség"
 
+#, fuzzy
 msgctxt "field:production.bom.tree,unit_digits:"
 msgid "Unit Digits"
-msgstr ""
+msgstr "Tizedes vessző utáni számjegy"
 
+#, fuzzy
 msgctxt "field:production.bom.tree,uom:"
 msgid "Uom"
-msgstr ""
+msgstr "Egység"
 
 msgctxt "field:production.bom.tree.open.start,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,category:"
 msgid "Category"
-msgstr ""
+msgstr "Kategória"
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,product:"
 msgid "Product"
-msgstr ""
+msgstr "Termék"
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,quantity:"
 msgid "Quantity"
-msgstr ""
+msgstr "Mennyiség"
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,unit_digits:"
 msgid "Unit Digits"
-msgstr ""
+msgstr "Tizedes vessző utáni számjegy"
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,uom:"
 msgid "Unit"
-msgstr ""
+msgstr "Egység"
 
 msgctxt "field:production.bom.tree.open.tree,bom_tree:"
 msgid "BOM Tree"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.tree,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
+#, fuzzy
 msgctxt "field:production.configuration,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Létrehozás détuma"
 
+#, fuzzy
 msgctxt "field:production.configuration,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Által létrehozva "
 
+#, fuzzy
 msgctxt "field:production.configuration,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
 msgctxt "field:production.configuration,production_sequence:"
 msgid "Production Sequence"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.configuration,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Név"
 
+#, fuzzy
 msgctxt "field:production.configuration,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "utolsó módosítás dátuma"
 
+#, fuzzy
 msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
+msgstr "Által módosítva"
+
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
 msgstr ""
 
+#, fuzzy
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr "Létrehozás détuma"
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr "Által létrehozva "
+
+#, fuzzy
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr "Termék"
+
+#, fuzzy
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr "Név"
+
+#, fuzzy
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr "Számkör"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr "utolsó módosítás dátuma"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr "Által módosítva"
+
+#, fuzzy
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
-msgstr ""
+msgstr "Termelés"
 
 msgctxt "field:stock.move,production_input:"
 msgid "Production Input"
@@ -426,17 +563,23 @@ msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
 msgstr ""
 
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr ""
+
+#, fuzzy
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
-msgstr ""
+msgstr "Termelés"
 
 msgctxt "model:ir.action,name:act_production_configuration_form"
 msgid "Production Configuration"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:ir.action,name:act_production_list"
 msgid "Productions"
-msgstr ""
+msgstr "Termelés"
 
 msgctxt "model:ir.action,name:wizard_assign"
 msgid "Assign Production"
@@ -447,9 +590,20 @@ msgid "BOM Tree"
 msgstr ""
 
 msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr ""
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
+msgstr ""
+
+#, fuzzy
+msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
-msgstr ""
+msgstr "Összes"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_assigned"
@@ -476,45 +630,52 @@ msgctxt ""
 msgid "Waiting"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:ir.sequence,name:sequence_production"
 msgid "Production"
-msgstr ""
+msgstr "Termelés"
 
+#, fuzzy
 msgctxt "model:ir.sequence.type,name:sequence_type_production"
 msgid "Production"
-msgstr ""
+msgstr "Termelés"
 
 msgctxt "model:ir.ui.menu,name:menu_bom_list"
 msgid "BOMs"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:ir.ui.menu,name:menu_configuration"
 msgid "Configuration"
-msgstr ""
+msgstr "Beállítások"
 
+#, fuzzy
 msgctxt "model:ir.ui.menu,name:menu_production"
 msgid "Production"
-msgstr ""
+msgstr "Termelés"
 
+#, fuzzy
 msgctxt "model:ir.ui.menu,name:menu_production_calendar"
 msgid "Productions"
-msgstr ""
+msgstr "Termelés"
 
 msgctxt "model:ir.ui.menu,name:menu_production_configuration"
 msgid "Production Configuration"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:ir.ui.menu,name:menu_production_list"
 msgid "Productions"
-msgstr ""
+msgstr "Termelés"
 
 msgctxt "model:product.product-production.bom,name:"
 msgid "Product - BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:production,name:"
 msgid "Production"
-msgstr ""
+msgstr "Termelés"
 
 msgctxt "model:production.assign.failed,name:"
 msgid "Assign Production"
@@ -548,29 +709,37 @@ msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
 msgstr ""
 
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
+msgstr ""
+
+#, fuzzy
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
-msgstr ""
+msgstr "Termelés"
 
 msgctxt "model:res.group,name:group_production_admin"
 msgid "Production Administration"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:stock.location,name:location_production"
 msgid "Production"
-msgstr ""
+msgstr "Termelés"
 
 msgctxt "selection:production,state:"
 msgid "Assigned"
 msgstr ""
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Canceled"
-msgstr ""
+msgstr "Mégse"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Done"
-msgstr ""
+msgstr "Kész"
 
 msgctxt "selection:production,state:"
 msgid "Draft"
@@ -588,91 +757,48 @@ msgctxt "selection:production,state:"
 msgid "Waiting"
 msgstr ""
 
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr ""
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr ""
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr ""
+#, fuzzy
+msgctxt "view:product.product:"
+msgid "Production"
+msgstr "Termelés"
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr ""
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr ""
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr ""
-
+#, fuzzy
 msgctxt "view:production.bom:"
 msgid "Lines"
-msgstr ""
-
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr ""
+msgstr "Sor"
 
 msgctxt "view:production:"
 msgid "Assign"
 msgstr ""
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Cancel"
-msgstr ""
+msgstr "Mégse"
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Done"
-msgstr ""
+msgstr "Kész"
 
 msgctxt "view:production:"
 msgid "Draft"
 msgstr ""
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Lines"
-msgstr ""
+msgstr "Sor"
 
 msgctxt "view:production:"
 msgid "Other Info"
 msgstr ""
 
 msgctxt "view:production:"
-msgid "Production"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr ""
-
-msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr ""
 
@@ -684,25 +810,29 @@ msgctxt "view:production:"
 msgid "Wait"
 msgstr ""
 
+#, fuzzy
 msgctxt "wizard_button:production.assign,failed,end:"
 msgid "OK"
-msgstr ""
+msgstr "OK"
 
 msgctxt "wizard_button:production.assign,failed,force:"
 msgid "Force Assign"
 msgstr ""
 
+#, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,start,end:"
 msgid "Cancel"
-msgstr ""
+msgstr "Mégse"
 
+#, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,start,tree:"
 msgid "OK"
-msgstr ""
+msgstr "OK"
 
+#, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,tree,end:"
 msgid "Close"
-msgstr ""
+msgstr "Bezár"
 
 msgctxt "wizard_button:production.bom.tree.open,tree,start:"
 msgid "Change"
diff --git a/locale/it_IT.po b/locale/it_IT.po
index 438cc8c..663fa1e 100644
--- a/locale/it_IT.po
+++ b/locale/it_IT.po
@@ -42,81 +42,104 @@ msgctxt "field:product.product,boms:"
 msgid "BOMs"
 msgstr ""
 
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
+msgstr ""
+
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Data di creazione"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Utente creazione"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,id:"
 msgid "ID"
-msgstr ""
+msgstr "Movimento contabile"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,product:"
 msgid "Product"
-msgstr ""
+msgstr "Prodotto"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Nome"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,sequence:"
 msgid "Sequence"
-msgstr ""
+msgstr "Sequenza"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "Utente scrittura"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "modificato da"
 
 msgctxt "field:production,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,company:"
 msgid "Company"
-msgstr ""
+msgstr "Azienda"
 
 msgctxt "field:production,cost:"
 msgid "Cost"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Data di creazione"
 
+#, fuzzy
 msgctxt "field:production,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Utente creazione"
 
+#, fuzzy
 msgctxt "field:production,effective_date:"
 msgid "Effective Date"
+msgstr "Data Registrazione"
+
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,id:"
 msgid "ID"
-msgstr ""
+msgstr "Movimento contabile"
 
 msgctxt "field:production,inputs:"
 msgid "Inputs"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,location:"
 msgid "Location"
-msgstr ""
+msgstr "Luogo"
 
+#, fuzzy
 msgctxt "field:production,number:"
 msgid "Number"
-msgstr ""
+msgstr "Numero"
 
 msgctxt "field:production,outputs:"
 msgid "Outputs"
@@ -126,29 +149,39 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr ""
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr ""
+
+#, fuzzy
 msgctxt "field:production,product:"
 msgid "Product"
-msgstr ""
+msgstr "Prodotto"
 
+#, fuzzy
 msgctxt "field:production,quantity:"
 msgid "Quantity"
-msgstr ""
+msgstr "Quantità"
 
+#, fuzzy
 msgctxt "field:production,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Nome"
 
+#, fuzzy
 msgctxt "field:production,reference:"
 msgid "Reference"
-msgstr ""
+msgstr "Riferimento"
 
+#, fuzzy
 msgctxt "field:production,state:"
 msgid "State"
-msgstr ""
+msgstr "Stato"
 
+#, fuzzy
 msgctxt "field:production,unit_digits:"
 msgid "Unit Digits"
-msgstr ""
+msgstr "Posizioni Unità"
 
 msgctxt "field:production,uom:"
 msgid "Uom"
@@ -162,45 +195,54 @@ msgctxt "field:production,warehouse:"
 msgid "Warehouse"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "Utente scrittura"
 
+#, fuzzy
 msgctxt "field:production,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "modificato da"
 
+#, fuzzy
 msgctxt "field:production.assign.failed,id:"
 msgid "ID"
-msgstr ""
+msgstr "Movimento contabile"
 
+#, fuzzy
 msgctxt "field:production.assign.failed,moves:"
 msgid "Moves"
-msgstr ""
+msgstr "Movimenti"
 
+#, fuzzy
 msgctxt "field:production.bom,active:"
 msgid "Active"
-msgstr ""
+msgstr "Attivo"
 
+#, fuzzy
 msgctxt "field:production.bom,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Data di creazione"
 
+#, fuzzy
 msgctxt "field:production.bom,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Utente creazione"
 
+#, fuzzy
 msgctxt "field:production.bom,id:"
 msgid "ID"
-msgstr ""
+msgstr "Movimento contabile"
 
 msgctxt "field:production.bom,inputs:"
 msgid "Inputs"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom,name:"
 msgid "Name"
-msgstr ""
+msgstr "Nome"
 
 msgctxt "field:production.bom,output_products:"
 msgid "Output Products"
@@ -210,49 +252,59 @@ msgctxt "field:production.bom,outputs:"
 msgid "Outputs"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Nome"
 
+#, fuzzy
 msgctxt "field:production.bom,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "Utente scrittura"
 
+#, fuzzy
 msgctxt "field:production.bom,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "modificato da"
 
 msgctxt "field:production.bom.input,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.input,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Data di creazione"
 
+#, fuzzy
 msgctxt "field:production.bom.input,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Utente creazione"
 
+#, fuzzy
 msgctxt "field:production.bom.input,id:"
 msgid "ID"
-msgstr ""
+msgstr "Movimento contabile"
 
+#, fuzzy
 msgctxt "field:production.bom.input,product:"
 msgid "Product"
-msgstr ""
+msgstr "Prodotto"
 
+#, fuzzy
 msgctxt "field:production.bom.input,quantity:"
 msgid "Quantity"
-msgstr ""
+msgstr "Quantità"
 
+#, fuzzy
 msgctxt "field:production.bom.input,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Nome"
 
+#, fuzzy
 msgctxt "field:production.bom.input,unit_digits:"
 msgid "Unit Digits"
-msgstr ""
+msgstr "Posizioni Unità"
 
 msgctxt "field:production.bom.input,uom:"
 msgid "Uom"
@@ -262,45 +314,54 @@ msgctxt "field:production.bom.input,uom_category:"
 msgid "Uom Category"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.input,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "Utente scrittura"
 
+#, fuzzy
 msgctxt "field:production.bom.input,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "modificato da"
 
 msgctxt "field:production.bom.output,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.output,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Data di creazione"
 
+#, fuzzy
 msgctxt "field:production.bom.output,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Utente creazione"
 
+#, fuzzy
 msgctxt "field:production.bom.output,id:"
 msgid "ID"
-msgstr ""
+msgstr "Movimento contabile"
 
+#, fuzzy
 msgctxt "field:production.bom.output,product:"
 msgid "Product"
-msgstr ""
+msgstr "Prodotto"
 
+#, fuzzy
 msgctxt "field:production.bom.output,quantity:"
 msgid "Quantity"
-msgstr ""
+msgstr "Quantità"
 
+#, fuzzy
 msgctxt "field:production.bom.output,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Nome"
 
+#, fuzzy
 msgctxt "field:production.bom.output,unit_digits:"
 msgid "Unit Digits"
-msgstr ""
+msgstr "Posizioni Unità"
 
 msgctxt "field:production.bom.output,uom:"
 msgid "Uom"
@@ -310,33 +371,40 @@ msgctxt "field:production.bom.output,uom_category:"
 msgid "Uom Category"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.output,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "Utente scrittura"
 
+#, fuzzy
 msgctxt "field:production.bom.output,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "modificato da"
 
+#, fuzzy
 msgctxt "field:production.bom.tree,childs:"
 msgid "Childs"
-msgstr ""
+msgstr "Figli"
 
+#, fuzzy
 msgctxt "field:production.bom.tree,id:"
 msgid "ID"
-msgstr ""
+msgstr "Movimento contabile"
 
+#, fuzzy
 msgctxt "field:production.bom.tree,product:"
 msgid "Product"
-msgstr ""
+msgstr "Prodotto"
 
+#, fuzzy
 msgctxt "field:production.bom.tree,quantity:"
 msgid "Quantity"
-msgstr ""
+msgstr "Quantità"
 
+#, fuzzy
 msgctxt "field:production.bom.tree,unit_digits:"
 msgid "Unit Digits"
-msgstr ""
+msgstr "Posizioni Unità"
 
 msgctxt "field:production.bom.tree,uom:"
 msgid "Uom"
@@ -346,66 +414,127 @@ msgctxt "field:production.bom.tree.open.start,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,category:"
 msgid "Category"
-msgstr ""
+msgstr "Categoria"
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,id:"
 msgid "ID"
-msgstr ""
+msgstr "Movimento contabile"
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,product:"
 msgid "Product"
-msgstr ""
+msgstr "Prodotto"
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,quantity:"
 msgid "Quantity"
-msgstr ""
+msgstr "Quantità"
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,unit_digits:"
 msgid "Unit Digits"
-msgstr ""
+msgstr "Posizioni Unità"
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,uom:"
 msgid "Unit"
-msgstr ""
+msgstr "Unità"
 
 msgctxt "field:production.bom.tree.open.tree,bom_tree:"
 msgid "BOM Tree"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.tree,id:"
 msgid "ID"
-msgstr ""
+msgstr "Movimento contabile"
 
+#, fuzzy
 msgctxt "field:production.configuration,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Data di creazione"
 
+#, fuzzy
 msgctxt "field:production.configuration,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Utente creazione"
 
+#, fuzzy
 msgctxt "field:production.configuration,id:"
 msgid "ID"
-msgstr ""
+msgstr "Movimento contabile"
 
 msgctxt "field:production.configuration,production_sequence:"
 msgid "Production Sequence"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.configuration,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Nome"
 
+#, fuzzy
 msgctxt "field:production.configuration,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "Utente scrittura"
 
+#, fuzzy
 msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
+msgstr "modificato da"
+
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr "Data di creazione"
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr "Utente creazione"
+
+#, fuzzy
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr "Movimento contabile"
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
 msgstr ""
 
+#, fuzzy
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr "Prodotto"
+
+#, fuzzy
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr "Nome"
+
+#, fuzzy
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr "Sequenza"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr "Utente scrittura"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr "modificato da"
+
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
 msgstr ""
@@ -426,6 +555,10 @@ msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
 msgstr ""
 
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr ""
+
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
 msgstr ""
@@ -447,34 +580,49 @@ msgid "BOM Tree"
 msgstr ""
 
 msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr ""
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
+msgstr ""
+
+#, fuzzy
+msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
-msgstr ""
+msgstr "Tutti"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_assigned"
 msgid "Assigned"
 msgstr ""
 
+#, fuzzy
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_draft"
 msgid "Draft"
-msgstr ""
+msgstr "Bozza"
 
+#, fuzzy
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_requests"
 msgid "Requests"
-msgstr ""
+msgstr "Richiesta"
 
+#, fuzzy
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_running"
 msgid "Running"
-msgstr ""
+msgstr "In funzione"
 
+#, fuzzy
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_waiting"
 msgid "Waiting"
-msgstr ""
+msgstr "In attesa"
 
 msgctxt "model:ir.sequence,name:sequence_production"
 msgid "Production"
@@ -488,9 +636,10 @@ msgctxt "model:ir.ui.menu,name:menu_bom_list"
 msgid "BOMs"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:ir.ui.menu,name:menu_configuration"
 msgid "Configuration"
-msgstr ""
+msgstr "Configurazione"
 
 msgctxt "model:ir.ui.menu,name:menu_production"
 msgid "Production"
@@ -548,6 +697,10 @@ msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
 msgstr ""
 
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
+msgstr ""
+
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
 msgstr ""
@@ -564,145 +717,115 @@ msgctxt "selection:production,state:"
 msgid "Assigned"
 msgstr ""
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Canceled"
-msgstr ""
+msgstr "Cancellato"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Done"
-msgstr ""
+msgstr "Fatto"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Draft"
-msgstr ""
+msgstr "Bozza"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Request"
-msgstr ""
+msgstr "Richiesta"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Running"
-msgstr ""
+msgstr "In funzione"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Waiting"
-msgstr ""
+msgstr "In attesa"
 
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr ""
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr ""
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
+msgctxt "view:product.product:"
+msgid "Production"
 msgstr ""
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr ""
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr ""
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr ""
-
+#, fuzzy
 msgctxt "view:production.bom:"
 msgid "Lines"
-msgstr ""
-
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr ""
+msgstr "Righe"
 
 msgctxt "view:production:"
 msgid "Assign"
 msgstr ""
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Cancel"
-msgstr ""
+msgstr "Cancella"
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Done"
-msgstr ""
+msgstr "Fatto"
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Draft"
-msgstr ""
+msgstr "Bozza"
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Lines"
-msgstr ""
+msgstr "Righe"
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Other Info"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Production"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr ""
+msgstr "Altre informazioni"
 
 msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Run"
-msgstr ""
+msgstr "Calcolo"
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Wait"
-msgstr ""
+msgstr "Attendi"
 
+#, fuzzy
 msgctxt "wizard_button:production.assign,failed,end:"
 msgid "OK"
-msgstr ""
+msgstr "OK"
 
 msgctxt "wizard_button:production.assign,failed,force:"
 msgid "Force Assign"
 msgstr ""
 
+#, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,start,end:"
 msgid "Cancel"
-msgstr ""
+msgstr "Cancella"
 
+#, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,start,tree:"
 msgid "OK"
-msgstr ""
+msgstr "OK"
 
+#, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,tree,end:"
 msgid "Close"
-msgstr ""
+msgstr "Chiusura"
 
 msgctxt "wizard_button:production.bom.tree.open,tree,start:"
 msgid "Change"
diff --git a/locale/ja_JP.po b/locale/ja_JP.po
index 438cc8c..66860f1 100644
--- a/locale/ja_JP.po
+++ b/locale/ja_JP.po
@@ -38,13 +38,19 @@ msgid ""
 "not match the cost of the production (%(costs)s)."
 msgstr ""
 
+#, fuzzy
 msgctxt "field:product.product,boms:"
 msgid "BOMs"
+msgstr "BOMs"
+
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
 msgctxt "field:product.product-production.bom,create_date:"
 msgid "Create Date"
@@ -78,9 +84,10 @@ msgctxt "field:product.product-production.bom,write_uid:"
 msgid "Write User"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,bom:"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
 msgctxt "field:production,company:"
 msgid "Company"
@@ -102,6 +109,10 @@ msgctxt "field:production,effective_date:"
 msgid "Effective Date"
 msgstr ""
 
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr ""
+
 msgctxt "field:production,id:"
 msgid "ID"
 msgstr ""
@@ -126,6 +137,10 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr ""
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr ""
+
 msgctxt "field:production,product:"
 msgid "Product"
 msgstr ""
@@ -222,9 +237,10 @@ msgctxt "field:production.bom,write_uid:"
 msgid "Write User"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.input,bom:"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
 msgctxt "field:production.bom.input,create_date:"
 msgid "Create Date"
@@ -270,9 +286,10 @@ msgctxt "field:production.bom.input,write_uid:"
 msgid "Write User"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.output,bom:"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
 msgctxt "field:production.bom.output,create_date:"
 msgid "Create Date"
@@ -342,9 +359,10 @@ msgctxt "field:production.bom.tree,uom:"
 msgid "Uom"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,bom:"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
 msgctxt "field:production.bom.tree.open.start,category:"
 msgid "Category"
@@ -370,9 +388,10 @@ msgctxt "field:production.bom.tree.open.start,uom:"
 msgid "Unit"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.tree,bom_tree:"
 msgid "BOM Tree"
-msgstr ""
+msgstr "BOM Tree"
 
 msgctxt "field:production.bom.tree.open.tree,id:"
 msgid "ID"
@@ -406,9 +425,51 @@ msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
 msgstr ""
 
+#, fuzzy
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr "BOM"
+
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr ""
+
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr ""
+
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr ""
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr ""
+
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr ""
+
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr ""
+
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr ""
+
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr ""
+
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr ""
+
+#, fuzzy
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
 msgctxt "field:stock.move,production_input:"
 msgid "Production Input"
@@ -420,105 +481,122 @@ msgstr ""
 
 msgctxt "model:ir.action,name:act_bom_form"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
 msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
-msgstr ""
+msgstr "BOMs"
+
+#, fuzzy
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr "BOMs"
 
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
-msgstr ""
+msgstr "Productions"
 
 msgctxt "model:ir.action,name:act_production_configuration_form"
 msgid "Production Configuration"
-msgstr ""
+msgstr "Production Configuration"
 
 msgctxt "model:ir.action,name:act_production_list"
 msgid "Productions"
-msgstr ""
+msgstr "Productions"
 
 msgctxt "model:ir.action,name:wizard_assign"
 msgid "Assign Production"
-msgstr ""
+msgstr "Assign Production"
 
 msgctxt "model:ir.action,name:wizard_bom_tree_open"
 msgid "BOM Tree"
+msgstr "BOM Tree"
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr ""
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
 msgstr ""
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
-msgstr ""
+msgstr "All"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_assigned"
 msgid "Assigned"
-msgstr ""
+msgstr "Assigned"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_draft"
 msgid "Draft"
-msgstr ""
+msgstr "Draft"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_requests"
 msgid "Requests"
-msgstr ""
+msgstr "Requests"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_running"
 msgid "Running"
-msgstr ""
+msgstr "Running"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_waiting"
 msgid "Waiting"
-msgstr ""
+msgstr "Waiting"
 
 msgctxt "model:ir.sequence,name:sequence_production"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
 msgctxt "model:ir.sequence.type,name:sequence_type_production"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
 msgctxt "model:ir.ui.menu,name:menu_bom_list"
 msgid "BOMs"
-msgstr ""
+msgstr "BOMs"
 
 msgctxt "model:ir.ui.menu,name:menu_configuration"
 msgid "Configuration"
-msgstr ""
+msgstr "Configuration"
 
 msgctxt "model:ir.ui.menu,name:menu_production"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
 msgctxt "model:ir.ui.menu,name:menu_production_calendar"
 msgid "Productions"
-msgstr ""
+msgstr "Productions"
 
 msgctxt "model:ir.ui.menu,name:menu_production_configuration"
 msgid "Production Configuration"
-msgstr ""
+msgstr "Production Configuration"
 
 msgctxt "model:ir.ui.menu,name:menu_production_list"
 msgid "Productions"
-msgstr ""
+msgstr "Productions"
 
 msgctxt "model:product.product-production.bom,name:"
 msgid "Product - BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:production,name:"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
+#, fuzzy
 msgctxt "model:production.assign.failed,name:"
 msgid "Assign Production"
-msgstr ""
+msgstr "Assign Production"
 
 msgctxt "model:production.bom,name:"
 msgid "Bill of Material"
@@ -532,9 +610,10 @@ msgctxt "model:production.bom.output,name:"
 msgid "Bill of Material Output"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:production.bom.tree,name:"
 msgid "BOM Tree"
-msgstr ""
+msgstr "BOM Tree"
 
 msgctxt "model:production.bom.tree.open.start,name:"
 msgid "Open BOM Tree"
@@ -544,25 +623,31 @@ msgctxt "model:production.bom.tree.open.tree,name:"
 msgid "Open BOM Tree"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
+msgstr "Production Configuration"
+
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
 msgstr ""
 
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
 msgctxt "model:res.group,name:group_production_admin"
 msgid "Production Administration"
-msgstr ""
+msgstr "Production Administration"
 
 msgctxt "model:stock.location,name:location_production"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Assigned"
-msgstr ""
+msgstr "Assigned"
 
 msgctxt "selection:production,state:"
 msgid "Canceled"
@@ -572,77 +657,43 @@ msgctxt "selection:production,state:"
 msgid "Done"
 msgstr ""
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Draft"
-msgstr ""
+msgstr "Draft"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Request"
-msgstr ""
+msgstr "Requests"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Running"
-msgstr ""
+msgstr "Running"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Waiting"
-msgstr ""
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr ""
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr ""
+msgstr "Waiting"
 
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr ""
+#, fuzzy
+msgctxt "view:product.product:"
+msgid "Production"
+msgstr "Production"
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr ""
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr ""
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr ""
-
 msgctxt "view:production.bom:"
 msgid "Lines"
 msgstr ""
 
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr ""
-
+#, fuzzy
 msgctxt "view:production:"
 msgid "Assign"
-msgstr ""
+msgstr "Assigned"
 
 msgctxt "view:production:"
 msgid "Cancel"
@@ -652,9 +703,10 @@ msgctxt "view:production:"
 msgid "Done"
 msgstr ""
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Draft"
-msgstr ""
+msgstr "Draft"
 
 msgctxt "view:production:"
 msgid "Lines"
@@ -665,14 +717,6 @@ msgid "Other Info"
 msgstr ""
 
 msgctxt "view:production:"
-msgid "Production"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr ""
-
-msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr ""
 
diff --git a/locale/nl_NL.po b/locale/lo.po
similarity index 67%
copy from locale/nl_NL.po
copy to locale/lo.po
index ab72d73..8fcb3f8 100644
--- a/locale/nl_NL.po
+++ b/locale/lo.po
@@ -42,44 +42,53 @@ msgctxt "field:product.product,boms:"
 msgid "BOMs"
 msgstr ""
 
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
+msgstr ""
+
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "ສ້າງວັນທີ"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "ສ້າງຜູ້ໃຊ້ງານ"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,id:"
 msgid "ID"
-msgstr ""
+msgstr "ເລດລຳດັບ"
 
 #, fuzzy
 msgctxt "field:product.product-production.bom,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr "ຜະລິດຕະພັນ"
 
 #, fuzzy
 msgctxt "field:product.product-production.bom,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr "ຊື່"
 
 #, fuzzy
 msgctxt "field:product.product-production.bom,sequence:"
 msgid "Sequence"
-msgstr "Reeks"
+msgstr "ລໍາດັບ"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "ວັນທີບັນທຶກ"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "ສ້າງຜູ້ໃຊ້"
 
 msgctxt "field:production,bom:"
 msgid "BOM"
@@ -88,40 +97,49 @@ msgstr ""
 #, fuzzy
 msgctxt "field:production,company:"
 msgid "Company"
-msgstr "Bedrijf"
+msgstr "ຫ້ອງການ/ສຳນັກງານ"
 
 msgctxt "field:production,cost:"
 msgid "Cost"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "ສ້າງວັນທີ"
 
+#, fuzzy
 msgctxt "field:production,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "ສ້າງຜູ້ໃຊ້ງານ"
 
 #, fuzzy
 msgctxt "field:production,effective_date:"
 msgid "Effective Date"
-msgstr "Effectieve datum"
+msgstr "ວັນທີມີຜົນ"
 
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr ""
+
+#, fuzzy
 msgctxt "field:production,id:"
 msgid "ID"
-msgstr ""
+msgstr "ເລດລຳດັບ"
 
 msgctxt "field:production,inputs:"
 msgid "Inputs"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,location:"
 msgid "Location"
-msgstr ""
+msgstr "ບ່ອນຢູ່"
 
+#, fuzzy
 msgctxt "field:production,number:"
 msgid "Number"
-msgstr ""
+msgstr "ເລກທີ"
 
 msgctxt "field:production,outputs:"
 msgid "Outputs"
@@ -131,82 +149,93 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr ""
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr ""
+
 #, fuzzy
 msgctxt "field:production,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr "ຜະລິດຕະພັນ"
 
 #, fuzzy
 msgctxt "field:production,quantity:"
 msgid "Quantity"
-msgstr "Hoeveelheid"
+msgstr "ຈຳນວນ"
 
 #, fuzzy
 msgctxt "field:production,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr "ຊື່"
 
 #, fuzzy
 msgctxt "field:production,reference:"
 msgid "Reference"
-msgstr "Referentie"
+msgstr "ເອກະສານອ້າງອີງ"
 
 #, fuzzy
 msgctxt "field:production,state:"
 msgid "State"
-msgstr "Status"
+msgstr "ສະຖານະ"
 
 #, fuzzy
 msgctxt "field:production,unit_digits:"
 msgid "Unit Digits"
-msgstr "Decimalen eenheid"
+msgstr "ຫົວໜ່ວຍເສດ"
 
+#, fuzzy
 msgctxt "field:production,uom:"
 msgid "Uom"
-msgstr ""
+msgstr "ຫົວໜ່ວຍ"
 
+#, fuzzy
 msgctxt "field:production,uom_category:"
 msgid "Uom Category"
-msgstr ""
+msgstr "ໝວດຫົວໜ່ວຍ"
 
-#, fuzzy
 msgctxt "field:production,warehouse:"
 msgid "Warehouse"
-msgstr "Magazijn"
+msgstr ""
 
+#, fuzzy
 msgctxt "field:production,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "ວັນທີບັນທຶກ"
 
+#, fuzzy
 msgctxt "field:production,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "ສ້າງຜູ້ໃຊ້"
 
+#, fuzzy
 msgctxt "field:production.assign.failed,id:"
 msgid "ID"
-msgstr ""
+msgstr "ເລດລຳດັບ"
 
 #, fuzzy
 msgctxt "field:production.assign.failed,moves:"
 msgid "Moves"
-msgstr "Boekingen"
+msgstr "ຕັດບັນຊີສາງ"
 
 #, fuzzy
 msgctxt "field:production.bom,active:"
 msgid "Active"
-msgstr "Actief"
+msgstr "ໃຊ້ຢູ່"
 
+#, fuzzy
 msgctxt "field:production.bom,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "ສ້າງວັນທີ"
 
+#, fuzzy
 msgctxt "field:production.bom,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "ສ້າງຜູ້ໃຊ້ງານ"
 
+#, fuzzy
 msgctxt "field:production.bom,id:"
 msgid "ID"
-msgstr ""
+msgstr "ເລດລຳດັບ"
 
 msgctxt "field:production.bom,inputs:"
 msgid "Inputs"
@@ -215,7 +244,7 @@ msgstr ""
 #, fuzzy
 msgctxt "field:production.bom,name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr "ຊື່"
 
 msgctxt "field:production.bom,output_products:"
 msgid "Output Products"
@@ -228,146 +257,164 @@ msgstr ""
 #, fuzzy
 msgctxt "field:production.bom,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr "ຊື່"
 
+#, fuzzy
 msgctxt "field:production.bom,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "ວັນທີບັນທຶກ"
 
+#, fuzzy
 msgctxt "field:production.bom,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "ສ້າງຜູ້ໃຊ້"
 
 msgctxt "field:production.bom.input,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.input,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "ສ້າງວັນທີ"
 
+#, fuzzy
 msgctxt "field:production.bom.input,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "ສ້າງຜູ້ໃຊ້ງານ"
 
+#, fuzzy
 msgctxt "field:production.bom.input,id:"
 msgid "ID"
-msgstr ""
+msgstr "ເລດລຳດັບ"
 
 #, fuzzy
 msgctxt "field:production.bom.input,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr "ຜະລິດຕະພັນ"
 
 #, fuzzy
 msgctxt "field:production.bom.input,quantity:"
 msgid "Quantity"
-msgstr "Hoeveelheid"
+msgstr "ຈຳນວນ"
 
 #, fuzzy
 msgctxt "field:production.bom.input,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr "ຊື່"
 
 #, fuzzy
 msgctxt "field:production.bom.input,unit_digits:"
 msgid "Unit Digits"
-msgstr "Decimalen eenheid"
+msgstr "ຫົວໜ່ວຍເສດ"
 
+#, fuzzy
 msgctxt "field:production.bom.input,uom:"
 msgid "Uom"
-msgstr ""
+msgstr "ຫົວໜ່ວຍ"
 
+#, fuzzy
 msgctxt "field:production.bom.input,uom_category:"
 msgid "Uom Category"
-msgstr ""
+msgstr "ໝວດຫົວໜ່ວຍ"
 
+#, fuzzy
 msgctxt "field:production.bom.input,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "ວັນທີບັນທຶກ"
 
+#, fuzzy
 msgctxt "field:production.bom.input,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "ສ້າງຜູ້ໃຊ້"
 
 msgctxt "field:production.bom.output,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.output,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "ສ້າງວັນທີ"
 
+#, fuzzy
 msgctxt "field:production.bom.output,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "ສ້າງຜູ້ໃຊ້ງານ"
 
+#, fuzzy
 msgctxt "field:production.bom.output,id:"
 msgid "ID"
-msgstr ""
+msgstr "ເລດລຳດັບ"
 
 #, fuzzy
 msgctxt "field:production.bom.output,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr "ຜະລິດຕະພັນ"
 
 #, fuzzy
 msgctxt "field:production.bom.output,quantity:"
 msgid "Quantity"
-msgstr "Hoeveelheid"
+msgstr "ຈຳນວນ"
 
 #, fuzzy
 msgctxt "field:production.bom.output,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr "ຊື່"
 
 #, fuzzy
 msgctxt "field:production.bom.output,unit_digits:"
 msgid "Unit Digits"
-msgstr "Decimalen eenheid"
+msgstr "ຫົວໜ່ວຍເສດ"
 
+#, fuzzy
 msgctxt "field:production.bom.output,uom:"
 msgid "Uom"
-msgstr ""
+msgstr "ຫົວໜ່ວຍ"
 
+#, fuzzy
 msgctxt "field:production.bom.output,uom_category:"
 msgid "Uom Category"
-msgstr ""
+msgstr "ໝວດຫົວໜ່ວຍ"
 
+#, fuzzy
 msgctxt "field:production.bom.output,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "ວັນທີບັນທຶກ"
 
+#, fuzzy
 msgctxt "field:production.bom.output,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "ສ້າງຜູ້ໃຊ້"
 
 msgctxt "field:production.bom.tree,childs:"
 msgid "Childs"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree,id:"
 msgid "ID"
-msgstr ""
+msgstr "ເລດລຳດັບ"
 
 #, fuzzy
 msgctxt "field:production.bom.tree,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr "ຜະລິດຕະພັນ"
 
 #, fuzzy
 msgctxt "field:production.bom.tree,quantity:"
 msgid "Quantity"
-msgstr "Hoeveelheid"
+msgstr "ຈຳນວນ"
 
 #, fuzzy
 msgctxt "field:production.bom.tree,unit_digits:"
 msgid "Unit Digits"
-msgstr "Decimalen eenheid"
+msgstr "ຫົວໜ່ວຍເສດ"
 
+#, fuzzy
 msgctxt "field:production.bom.tree,uom:"
 msgid "Uom"
-msgstr ""
+msgstr "ຫົວໜ່ວຍ"
 
 msgctxt "field:production.bom.tree.open.start,bom:"
 msgid "BOM"
@@ -376,51 +423,56 @@ msgstr ""
 #, fuzzy
 msgctxt "field:production.bom.tree.open.start,category:"
 msgid "Category"
-msgstr "Categorie"
+msgstr "ໝວດ"
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,id:"
 msgid "ID"
-msgstr ""
+msgstr "ເລດລຳດັບ"
 
 #, fuzzy
 msgctxt "field:production.bom.tree.open.start,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr "ຜະລິດຕະພັນ"
 
 #, fuzzy
 msgctxt "field:production.bom.tree.open.start,quantity:"
 msgid "Quantity"
-msgstr "Hoeveelheid"
+msgstr "ຈຳນວນ"
 
 #, fuzzy
 msgctxt "field:production.bom.tree.open.start,unit_digits:"
 msgid "Unit Digits"
-msgstr "Decimalen eenheid"
+msgstr "ຫົວໜ່ວຍເສດ"
 
 #, fuzzy
 msgctxt "field:production.bom.tree.open.start,uom:"
 msgid "Unit"
-msgstr "Eenheid"
+msgstr "ໜ່ວຍ"
 
 msgctxt "field:production.bom.tree.open.tree,bom_tree:"
 msgid "BOM Tree"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.tree,id:"
 msgid "ID"
-msgstr ""
+msgstr "ເລດລຳດັບ"
 
+#, fuzzy
 msgctxt "field:production.configuration,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "ສ້າງວັນທີ"
 
+#, fuzzy
 msgctxt "field:production.configuration,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "ສ້າງຜູ້ໃຊ້ງານ"
 
+#, fuzzy
 msgctxt "field:production.configuration,id:"
 msgid "ID"
-msgstr ""
+msgstr "ເລດລຳດັບ"
 
 msgctxt "field:production.configuration,production_sequence:"
 msgid "Production Sequence"
@@ -429,19 +481,70 @@ msgstr ""
 #, fuzzy
 msgctxt "field:production.configuration,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr "ຊື່"
 
+#, fuzzy
 msgctxt "field:production.configuration,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "ວັນທີບັນທຶກ"
 
+#, fuzzy
 msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
+msgstr "ສ້າງຜູ້ໃຊ້"
+
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
 msgstr ""
 
+#, fuzzy
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr "ສ້າງວັນທີ"
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr "ສ້າງຜູ້ໃຊ້ງານ"
+
+#, fuzzy
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr "ເລດລຳດັບ"
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr "ຜະລິດຕະພັນ"
+
+#, fuzzy
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr "ຊື່"
+
+#, fuzzy
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr "ລໍາດັບ"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr "ວັນທີບັນທຶກ"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr "ສ້າງຜູ້ໃຊ້"
+
+#, fuzzy
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
-msgstr ""
+msgstr "ຜະລິດຕະພັນ"
 
 msgctxt "field:stock.move,production_input:"
 msgid "Production Input"
@@ -459,17 +562,23 @@ msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
 msgstr ""
 
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr ""
+
+#, fuzzy
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
-msgstr ""
+msgstr "ຜະລິດຕະພັນ"
 
 msgctxt "model:ir.action,name:act_production_configuration_form"
 msgid "Production Configuration"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:ir.action,name:act_production_list"
 msgid "Productions"
-msgstr ""
+msgstr "ຜະລິດຕະພັນ"
 
 msgctxt "model:ir.action,name:wizard_assign"
 msgid "Assign Production"
@@ -480,9 +589,20 @@ msgid "BOM Tree"
 msgstr ""
 
 msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr ""
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
+msgstr ""
+
+#, fuzzy
+msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
-msgstr ""
+msgstr "ທັງໝົດ"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_assigned"
@@ -493,31 +613,33 @@ msgstr ""
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_draft"
 msgid "Draft"
-msgstr "Concept"
+msgstr "ຮ່າງກຽມ"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_requests"
 msgid "Requests"
 msgstr ""
 
+#, fuzzy
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_running"
 msgid "Running"
-msgstr ""
+msgstr "ກຳລັງດຳເນີນງານ"
 
-#, fuzzy
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_waiting"
 msgid "Waiting"
-msgstr "In afwachting"
+msgstr ""
 
+#, fuzzy
 msgctxt "model:ir.sequence,name:sequence_production"
 msgid "Production"
-msgstr ""
+msgstr "ຜະລິດຕະພັນ"
 
+#, fuzzy
 msgctxt "model:ir.sequence.type,name:sequence_type_production"
 msgid "Production"
-msgstr ""
+msgstr "ຜະລິດຕະພັນ"
 
 msgctxt "model:ir.ui.menu,name:menu_bom_list"
 msgid "BOMs"
@@ -526,31 +648,35 @@ msgstr ""
 #, fuzzy
 msgctxt "model:ir.ui.menu,name:menu_configuration"
 msgid "Configuration"
-msgstr "Instellingen"
+msgstr "ການຕັ້ງຄ່າ"
 
+#, fuzzy
 msgctxt "model:ir.ui.menu,name:menu_production"
 msgid "Production"
-msgstr ""
+msgstr "ຜະລິດຕະພັນ"
 
+#, fuzzy
 msgctxt "model:ir.ui.menu,name:menu_production_calendar"
 msgid "Productions"
-msgstr ""
+msgstr "ຜະລິດຕະພັນ"
 
 msgctxt "model:ir.ui.menu,name:menu_production_configuration"
 msgid "Production Configuration"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:ir.ui.menu,name:menu_production_list"
 msgid "Productions"
-msgstr ""
+msgstr "ຜະລິດຕະພັນ"
 
 msgctxt "model:product.product-production.bom,name:"
 msgid "Product - BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:production,name:"
 msgid "Production"
-msgstr ""
+msgstr "ຜະລິດຕະພັນ"
 
 msgctxt "model:production.assign.failed,name:"
 msgid "Assign Production"
@@ -584,17 +710,23 @@ msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
 msgstr ""
 
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
+msgstr ""
+
+#, fuzzy
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
-msgstr ""
+msgstr "ຜະລິດຕະພັນ"
 
 msgctxt "model:res.group,name:group_production_admin"
 msgid "Production Administration"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:stock.location,name:location_production"
 msgid "Production"
-msgstr ""
+msgstr "ຜະລິດຕະພັນ"
 
 msgctxt "selection:production,state:"
 msgid "Assigned"
@@ -603,83 +735,44 @@ msgstr ""
 #, fuzzy
 msgctxt "selection:production,state:"
 msgid "Canceled"
-msgstr "Geannuleerd"
+msgstr "ຍົກເລີກແລ້ວ"
 
 #, fuzzy
 msgctxt "selection:production,state:"
 msgid "Done"
-msgstr "Klaar"
+msgstr "ແລ້ວໆ"
 
 #, fuzzy
 msgctxt "selection:production,state:"
 msgid "Draft"
-msgstr "Concept"
+msgstr "ຮ່າງກຽມ"
 
 msgctxt "selection:production,state:"
 msgid "Request"
 msgstr ""
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Running"
-msgstr ""
+msgstr "ກຳລັງດຳເນີນງານ"
 
-#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Waiting"
-msgstr "In afwachting"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr ""
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
 msgstr ""
 
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr ""
+#, fuzzy
+msgctxt "view:product.product:"
+msgid "Production"
+msgstr "ຜະລິດຕະພັນ"
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr ""
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr ""
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr ""
-
 #, fuzzy
 msgctxt "view:production.bom:"
 msgid "Lines"
-msgstr "Regels"
-
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr ""
+msgstr "ຮ່ວງ"
 
 msgctxt "view:production:"
 msgid "Assign"
@@ -688,43 +781,36 @@ msgstr ""
 #, fuzzy
 msgctxt "view:production:"
 msgid "Cancel"
-msgstr "Annuleren"
+msgstr "ຍົກເລີກ"
 
 #, fuzzy
 msgctxt "view:production:"
 msgid "Done"
-msgstr "Klaar"
+msgstr "ແລ້ວໆ"
 
 #, fuzzy
 msgctxt "view:production:"
 msgid "Draft"
-msgstr "Concept"
+msgstr "ຮ່າງກຽມ"
 
 #, fuzzy
 msgctxt "view:production:"
 msgid "Lines"
-msgstr "Regels"
+msgstr "ຮ່ວງ"
 
 #, fuzzy
 msgctxt "view:production:"
 msgid "Other Info"
-msgstr "Aanvullende informatie"
-
-msgctxt "view:production:"
-msgid "Production"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr ""
+msgstr "ຂໍ້ມູນອື່ນໆ"
 
 msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Run"
-msgstr ""
+msgstr "ດຳເນີນງານ"
 
 msgctxt "view:production:"
 msgid "Wait"
@@ -733,7 +819,7 @@ msgstr ""
 #, fuzzy
 msgctxt "wizard_button:production.assign,failed,end:"
 msgid "OK"
-msgstr "Oké"
+msgstr "ຕົກລົງ"
 
 msgctxt "wizard_button:production.assign,failed,force:"
 msgid "Force Assign"
@@ -742,17 +828,17 @@ msgstr ""
 #, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,start,end:"
 msgid "Cancel"
-msgstr "Annuleren"
+msgstr "ຍົກເລີກ"
 
 #, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,start,tree:"
 msgid "OK"
-msgstr "Oké"
+msgstr "ຕົກລົງ"
 
 #, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,tree,end:"
 msgid "Close"
-msgstr "Sluiten"
+msgstr "ອັດ"
 
 msgctxt "wizard_button:production.bom.tree.open,tree,start:"
 msgid "Change"
diff --git a/locale/lo_LA.po b/locale/lo_LA.po
deleted file mode 100644
index 438cc8c..0000000
--- a/locale/lo_LA.po
+++ /dev/null
@@ -1,709 +0,0 @@
-# 
-msgid ""
-msgstr "Content-Type: text/plain; charset=utf-8\n"
-
-msgctxt "error:product.product:"
-msgid ""
-"You are trying to create a recursive BOM with product \"%s\" which is not "
-"allowed."
-msgstr ""
-
-msgctxt "error:production.bom.input:"
-msgid "Product must be unique per BOM."
-msgstr ""
-
-msgctxt "error:production.bom.input:"
-msgid "You can not create recursive BOMs."
-msgstr ""
-
-msgctxt "error:production.bom.input:"
-msgid "product_bom_uniq"
-msgstr ""
-
-msgctxt "error:production.bom.output:"
-msgid "Product must be unique per BOM."
-msgstr ""
-
-msgctxt "error:production.bom.output:"
-msgid "You can not create recursive BOMs."
-msgstr ""
-
-msgctxt "error:production.bom.output:"
-msgid "product_bom_uniq"
-msgstr ""
-
-msgctxt "error:production:"
-msgid ""
-"The costs of the outputs (%(outputs)s) of production \"%(production)s\" do "
-"not match the cost of the production (%(costs)s)."
-msgstr ""
-
-msgctxt "field:product.product,boms:"
-msgid "BOMs"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,create_date:"
-msgid "Create Date"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,create_uid:"
-msgid "Create User"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,product:"
-msgid "Product"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,rec_name:"
-msgid "Name"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,sequence:"
-msgid "Sequence"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,write_date:"
-msgid "Write Date"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,write_uid:"
-msgid "Write User"
-msgstr ""
-
-msgctxt "field:production,bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "field:production,company:"
-msgid "Company"
-msgstr ""
-
-msgctxt "field:production,cost:"
-msgid "Cost"
-msgstr ""
-
-msgctxt "field:production,create_date:"
-msgid "Create Date"
-msgstr ""
-
-msgctxt "field:production,create_uid:"
-msgid "Create User"
-msgstr ""
-
-msgctxt "field:production,effective_date:"
-msgid "Effective Date"
-msgstr ""
-
-msgctxt "field:production,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production,inputs:"
-msgid "Inputs"
-msgstr ""
-
-msgctxt "field:production,location:"
-msgid "Location"
-msgstr ""
-
-msgctxt "field:production,number:"
-msgid "Number"
-msgstr ""
-
-msgctxt "field:production,outputs:"
-msgid "Outputs"
-msgstr ""
-
-msgctxt "field:production,planned_date:"
-msgid "Planned Date"
-msgstr ""
-
-msgctxt "field:production,product:"
-msgid "Product"
-msgstr ""
-
-msgctxt "field:production,quantity:"
-msgid "Quantity"
-msgstr ""
-
-msgctxt "field:production,rec_name:"
-msgid "Name"
-msgstr ""
-
-msgctxt "field:production,reference:"
-msgid "Reference"
-msgstr ""
-
-msgctxt "field:production,state:"
-msgid "State"
-msgstr ""
-
-msgctxt "field:production,unit_digits:"
-msgid "Unit Digits"
-msgstr ""
-
-msgctxt "field:production,uom:"
-msgid "Uom"
-msgstr ""
-
-msgctxt "field:production,uom_category:"
-msgid "Uom Category"
-msgstr ""
-
-msgctxt "field:production,warehouse:"
-msgid "Warehouse"
-msgstr ""
-
-msgctxt "field:production,write_date:"
-msgid "Write Date"
-msgstr ""
-
-msgctxt "field:production,write_uid:"
-msgid "Write User"
-msgstr ""
-
-msgctxt "field:production.assign.failed,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.assign.failed,moves:"
-msgid "Moves"
-msgstr ""
-
-msgctxt "field:production.bom,active:"
-msgid "Active"
-msgstr ""
-
-msgctxt "field:production.bom,create_date:"
-msgid "Create Date"
-msgstr ""
-
-msgctxt "field:production.bom,create_uid:"
-msgid "Create User"
-msgstr ""
-
-msgctxt "field:production.bom,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.bom,inputs:"
-msgid "Inputs"
-msgstr ""
-
-msgctxt "field:production.bom,name:"
-msgid "Name"
-msgstr ""
-
-msgctxt "field:production.bom,output_products:"
-msgid "Output Products"
-msgstr ""
-
-msgctxt "field:production.bom,outputs:"
-msgid "Outputs"
-msgstr ""
-
-msgctxt "field:production.bom,rec_name:"
-msgid "Name"
-msgstr ""
-
-msgctxt "field:production.bom,write_date:"
-msgid "Write Date"
-msgstr ""
-
-msgctxt "field:production.bom,write_uid:"
-msgid "Write User"
-msgstr ""
-
-msgctxt "field:production.bom.input,bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "field:production.bom.input,create_date:"
-msgid "Create Date"
-msgstr ""
-
-msgctxt "field:production.bom.input,create_uid:"
-msgid "Create User"
-msgstr ""
-
-msgctxt "field:production.bom.input,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.bom.input,product:"
-msgid "Product"
-msgstr ""
-
-msgctxt "field:production.bom.input,quantity:"
-msgid "Quantity"
-msgstr ""
-
-msgctxt "field:production.bom.input,rec_name:"
-msgid "Name"
-msgstr ""
-
-msgctxt "field:production.bom.input,unit_digits:"
-msgid "Unit Digits"
-msgstr ""
-
-msgctxt "field:production.bom.input,uom:"
-msgid "Uom"
-msgstr ""
-
-msgctxt "field:production.bom.input,uom_category:"
-msgid "Uom Category"
-msgstr ""
-
-msgctxt "field:production.bom.input,write_date:"
-msgid "Write Date"
-msgstr ""
-
-msgctxt "field:production.bom.input,write_uid:"
-msgid "Write User"
-msgstr ""
-
-msgctxt "field:production.bom.output,bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "field:production.bom.output,create_date:"
-msgid "Create Date"
-msgstr ""
-
-msgctxt "field:production.bom.output,create_uid:"
-msgid "Create User"
-msgstr ""
-
-msgctxt "field:production.bom.output,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.bom.output,product:"
-msgid "Product"
-msgstr ""
-
-msgctxt "field:production.bom.output,quantity:"
-msgid "Quantity"
-msgstr ""
-
-msgctxt "field:production.bom.output,rec_name:"
-msgid "Name"
-msgstr ""
-
-msgctxt "field:production.bom.output,unit_digits:"
-msgid "Unit Digits"
-msgstr ""
-
-msgctxt "field:production.bom.output,uom:"
-msgid "Uom"
-msgstr ""
-
-msgctxt "field:production.bom.output,uom_category:"
-msgid "Uom Category"
-msgstr ""
-
-msgctxt "field:production.bom.output,write_date:"
-msgid "Write Date"
-msgstr ""
-
-msgctxt "field:production.bom.output,write_uid:"
-msgid "Write User"
-msgstr ""
-
-msgctxt "field:production.bom.tree,childs:"
-msgid "Childs"
-msgstr ""
-
-msgctxt "field:production.bom.tree,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.bom.tree,product:"
-msgid "Product"
-msgstr ""
-
-msgctxt "field:production.bom.tree,quantity:"
-msgid "Quantity"
-msgstr ""
-
-msgctxt "field:production.bom.tree,unit_digits:"
-msgid "Unit Digits"
-msgstr ""
-
-msgctxt "field:production.bom.tree,uom:"
-msgid "Uom"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.start,bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.start,category:"
-msgid "Category"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.start,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.start,product:"
-msgid "Product"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.start,quantity:"
-msgid "Quantity"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.start,unit_digits:"
-msgid "Unit Digits"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.start,uom:"
-msgid "Unit"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.tree,bom_tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.tree,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.configuration,create_date:"
-msgid "Create Date"
-msgstr ""
-
-msgctxt "field:production.configuration,create_uid:"
-msgid "Create User"
-msgstr ""
-
-msgctxt "field:production.configuration,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.configuration,production_sequence:"
-msgid "Production Sequence"
-msgstr ""
-
-msgctxt "field:production.configuration,rec_name:"
-msgid "Name"
-msgstr ""
-
-msgctxt "field:production.configuration,write_date:"
-msgid "Write Date"
-msgstr ""
-
-msgctxt "field:production.configuration,write_uid:"
-msgid "Write User"
-msgstr ""
-
-msgctxt "field:stock.location,production_location:"
-msgid "Production"
-msgstr ""
-
-msgctxt "field:stock.move,production_input:"
-msgid "Production Input"
-msgstr ""
-
-msgctxt "field:stock.move,production_output:"
-msgid "Production Output"
-msgstr ""
-
-msgctxt "model:ir.action,name:act_bom_form"
-msgid "BOM"
-msgstr ""
-
-msgctxt "model:ir.action,name:act_bom_list"
-msgid "BOMs"
-msgstr ""
-
-msgctxt "model:ir.action,name:act_production_calendar"
-msgid "Productions"
-msgstr ""
-
-msgctxt "model:ir.action,name:act_production_configuration_form"
-msgid "Production Configuration"
-msgstr ""
-
-msgctxt "model:ir.action,name:act_production_list"
-msgid "Productions"
-msgstr ""
-
-msgctxt "model:ir.action,name:wizard_assign"
-msgid "Assign Production"
-msgstr ""
-
-msgctxt "model:ir.action,name:wizard_bom_tree_open"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_all"
-msgid "All"
-msgstr ""
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_assigned"
-msgid "Assigned"
-msgstr ""
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_draft"
-msgid "Draft"
-msgstr ""
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_requests"
-msgid "Requests"
-msgstr ""
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_running"
-msgid "Running"
-msgstr ""
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_waiting"
-msgid "Waiting"
-msgstr ""
-
-msgctxt "model:ir.sequence,name:sequence_production"
-msgid "Production"
-msgstr ""
-
-msgctxt "model:ir.sequence.type,name:sequence_type_production"
-msgid "Production"
-msgstr ""
-
-msgctxt "model:ir.ui.menu,name:menu_bom_list"
-msgid "BOMs"
-msgstr ""
-
-msgctxt "model:ir.ui.menu,name:menu_configuration"
-msgid "Configuration"
-msgstr ""
-
-msgctxt "model:ir.ui.menu,name:menu_production"
-msgid "Production"
-msgstr ""
-
-msgctxt "model:ir.ui.menu,name:menu_production_calendar"
-msgid "Productions"
-msgstr ""
-
-msgctxt "model:ir.ui.menu,name:menu_production_configuration"
-msgid "Production Configuration"
-msgstr ""
-
-msgctxt "model:ir.ui.menu,name:menu_production_list"
-msgid "Productions"
-msgstr ""
-
-msgctxt "model:product.product-production.bom,name:"
-msgid "Product - BOM"
-msgstr ""
-
-msgctxt "model:production,name:"
-msgid "Production"
-msgstr ""
-
-msgctxt "model:production.assign.failed,name:"
-msgid "Assign Production"
-msgstr ""
-
-msgctxt "model:production.bom,name:"
-msgid "Bill of Material"
-msgstr ""
-
-msgctxt "model:production.bom.input,name:"
-msgid "Bill of Material Input"
-msgstr ""
-
-msgctxt "model:production.bom.output,name:"
-msgid "Bill of Material Output"
-msgstr ""
-
-msgctxt "model:production.bom.tree,name:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "model:production.bom.tree.open.start,name:"
-msgid "Open BOM Tree"
-msgstr ""
-
-msgctxt "model:production.bom.tree.open.tree,name:"
-msgid "Open BOM Tree"
-msgstr ""
-
-msgctxt "model:production.configuration,name:"
-msgid "Production Configuration"
-msgstr ""
-
-msgctxt "model:res.group,name:group_production"
-msgid "Production"
-msgstr ""
-
-msgctxt "model:res.group,name:group_production_admin"
-msgid "Production Administration"
-msgstr ""
-
-msgctxt "model:stock.location,name:location_production"
-msgid "Production"
-msgstr ""
-
-msgctxt "selection:production,state:"
-msgid "Assigned"
-msgstr ""
-
-msgctxt "selection:production,state:"
-msgid "Canceled"
-msgstr ""
-
-msgctxt "selection:production,state:"
-msgid "Done"
-msgstr ""
-
-msgctxt "selection:production,state:"
-msgid "Draft"
-msgstr ""
-
-msgctxt "selection:production,state:"
-msgid "Request"
-msgstr ""
-
-msgctxt "selection:production,state:"
-msgid "Running"
-msgstr ""
-
-msgctxt "selection:production,state:"
-msgid "Waiting"
-msgstr ""
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr ""
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr ""
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr ""
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to assign those products:"
-msgstr ""
-
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr ""
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "Lines"
-msgstr ""
-
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Assign"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Cancel"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Done"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Draft"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Lines"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Other Info"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Production"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Reset to BOM"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Run"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Wait"
-msgstr ""
-
-msgctxt "wizard_button:production.assign,failed,end:"
-msgid "OK"
-msgstr ""
-
-msgctxt "wizard_button:production.assign,failed,force:"
-msgid "Force Assign"
-msgstr ""
-
-msgctxt "wizard_button:production.bom.tree.open,start,end:"
-msgid "Cancel"
-msgstr ""
-
-msgctxt "wizard_button:production.bom.tree.open,start,tree:"
-msgid "OK"
-msgstr ""
-
-msgctxt "wizard_button:production.bom.tree.open,tree,end:"
-msgid "Close"
-msgstr ""
-
-msgctxt "wizard_button:production.bom.tree.open,tree,start:"
-msgid "Change"
-msgstr ""
diff --git a/locale/it_IT.po b/locale/lt.po
similarity index 90%
copy from locale/it_IT.po
copy to locale/lt.po
index 438cc8c..c5ca7a0 100644
--- a/locale/it_IT.po
+++ b/locale/lt.po
@@ -42,6 +42,10 @@ msgctxt "field:product.product,boms:"
 msgid "BOMs"
 msgstr ""
 
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
+msgstr ""
+
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
 msgstr ""
@@ -62,9 +66,10 @@ msgctxt "field:product.product-production.bom,product:"
 msgid "Product"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Namu"
 
 msgctxt "field:product.product-production.bom,sequence:"
 msgid "Sequence"
@@ -102,6 +107,10 @@ msgctxt "field:production,effective_date:"
 msgid "Effective Date"
 msgstr ""
 
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr ""
+
 msgctxt "field:production,id:"
 msgid "ID"
 msgstr ""
@@ -126,6 +135,10 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr ""
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr ""
+
 msgctxt "field:production,product:"
 msgid "Product"
 msgstr ""
@@ -134,9 +147,10 @@ msgctxt "field:production,quantity:"
 msgid "Quantity"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Namu"
 
 msgctxt "field:production,reference:"
 msgid "Reference"
@@ -198,9 +212,10 @@ msgctxt "field:production.bom,inputs:"
 msgid "Inputs"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom,name:"
 msgid "Name"
-msgstr ""
+msgstr "Namu"
 
 msgctxt "field:production.bom,output_products:"
 msgid "Output Products"
@@ -210,9 +225,10 @@ msgctxt "field:production.bom,outputs:"
 msgid "Outputs"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Namu"
 
 msgctxt "field:production.bom,write_date:"
 msgid "Write Date"
@@ -246,9 +262,10 @@ msgctxt "field:production.bom.input,quantity:"
 msgid "Quantity"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.input,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Namu"
 
 msgctxt "field:production.bom.input,unit_digits:"
 msgid "Unit Digits"
@@ -294,9 +311,10 @@ msgctxt "field:production.bom.output,quantity:"
 msgid "Quantity"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.output,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Namu"
 
 msgctxt "field:production.bom.output,unit_digits:"
 msgid "Unit Digits"
@@ -394,9 +412,10 @@ msgctxt "field:production.configuration,production_sequence:"
 msgid "Production Sequence"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.configuration,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "Namu"
 
 msgctxt "field:production.configuration,write_date:"
 msgid "Write Date"
@@ -406,6 +425,47 @@ msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
 msgstr ""
 
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr ""
+
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr ""
+
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr ""
+
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr ""
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr ""
+
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr "Namu"
+
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr ""
+
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr ""
+
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr ""
+
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
 msgstr ""
@@ -426,6 +486,10 @@ msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
 msgstr ""
 
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr ""
+
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
 msgstr ""
@@ -447,6 +511,16 @@ msgid "BOM Tree"
 msgstr ""
 
 msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr ""
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
+msgstr ""
+
+msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
 msgstr ""
@@ -548,6 +622,10 @@ msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
 msgstr ""
 
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
+msgstr ""
+
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
 msgstr ""
@@ -588,58 +666,18 @@ msgctxt "selection:production,state:"
 msgid "Waiting"
 msgstr ""
 
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr ""
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr ""
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
+msgctxt "view:product.product:"
+msgid "Production"
 msgstr ""
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr ""
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr ""
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr ""
-
 msgctxt "view:production.bom:"
 msgid "Lines"
 msgstr ""
 
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr ""
-
 msgctxt "view:production:"
 msgid "Assign"
 msgstr ""
@@ -665,14 +703,6 @@ msgid "Other Info"
 msgstr ""
 
 msgctxt "view:production:"
-msgid "Production"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr ""
-
-msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr ""
 
diff --git a/locale/lt_LT.po b/locale/lt_LT.po
deleted file mode 100644
index 438cc8c..0000000
--- a/locale/lt_LT.po
+++ /dev/null
@@ -1,709 +0,0 @@
-# 
-msgid ""
-msgstr "Content-Type: text/plain; charset=utf-8\n"
-
-msgctxt "error:product.product:"
-msgid ""
-"You are trying to create a recursive BOM with product \"%s\" which is not "
-"allowed."
-msgstr ""
-
-msgctxt "error:production.bom.input:"
-msgid "Product must be unique per BOM."
-msgstr ""
-
-msgctxt "error:production.bom.input:"
-msgid "You can not create recursive BOMs."
-msgstr ""
-
-msgctxt "error:production.bom.input:"
-msgid "product_bom_uniq"
-msgstr ""
-
-msgctxt "error:production.bom.output:"
-msgid "Product must be unique per BOM."
-msgstr ""
-
-msgctxt "error:production.bom.output:"
-msgid "You can not create recursive BOMs."
-msgstr ""
-
-msgctxt "error:production.bom.output:"
-msgid "product_bom_uniq"
-msgstr ""
-
-msgctxt "error:production:"
-msgid ""
-"The costs of the outputs (%(outputs)s) of production \"%(production)s\" do "
-"not match the cost of the production (%(costs)s)."
-msgstr ""
-
-msgctxt "field:product.product,boms:"
-msgid "BOMs"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,create_date:"
-msgid "Create Date"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,create_uid:"
-msgid "Create User"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,product:"
-msgid "Product"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,rec_name:"
-msgid "Name"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,sequence:"
-msgid "Sequence"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,write_date:"
-msgid "Write Date"
-msgstr ""
-
-msgctxt "field:product.product-production.bom,write_uid:"
-msgid "Write User"
-msgstr ""
-
-msgctxt "field:production,bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "field:production,company:"
-msgid "Company"
-msgstr ""
-
-msgctxt "field:production,cost:"
-msgid "Cost"
-msgstr ""
-
-msgctxt "field:production,create_date:"
-msgid "Create Date"
-msgstr ""
-
-msgctxt "field:production,create_uid:"
-msgid "Create User"
-msgstr ""
-
-msgctxt "field:production,effective_date:"
-msgid "Effective Date"
-msgstr ""
-
-msgctxt "field:production,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production,inputs:"
-msgid "Inputs"
-msgstr ""
-
-msgctxt "field:production,location:"
-msgid "Location"
-msgstr ""
-
-msgctxt "field:production,number:"
-msgid "Number"
-msgstr ""
-
-msgctxt "field:production,outputs:"
-msgid "Outputs"
-msgstr ""
-
-msgctxt "field:production,planned_date:"
-msgid "Planned Date"
-msgstr ""
-
-msgctxt "field:production,product:"
-msgid "Product"
-msgstr ""
-
-msgctxt "field:production,quantity:"
-msgid "Quantity"
-msgstr ""
-
-msgctxt "field:production,rec_name:"
-msgid "Name"
-msgstr ""
-
-msgctxt "field:production,reference:"
-msgid "Reference"
-msgstr ""
-
-msgctxt "field:production,state:"
-msgid "State"
-msgstr ""
-
-msgctxt "field:production,unit_digits:"
-msgid "Unit Digits"
-msgstr ""
-
-msgctxt "field:production,uom:"
-msgid "Uom"
-msgstr ""
-
-msgctxt "field:production,uom_category:"
-msgid "Uom Category"
-msgstr ""
-
-msgctxt "field:production,warehouse:"
-msgid "Warehouse"
-msgstr ""
-
-msgctxt "field:production,write_date:"
-msgid "Write Date"
-msgstr ""
-
-msgctxt "field:production,write_uid:"
-msgid "Write User"
-msgstr ""
-
-msgctxt "field:production.assign.failed,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.assign.failed,moves:"
-msgid "Moves"
-msgstr ""
-
-msgctxt "field:production.bom,active:"
-msgid "Active"
-msgstr ""
-
-msgctxt "field:production.bom,create_date:"
-msgid "Create Date"
-msgstr ""
-
-msgctxt "field:production.bom,create_uid:"
-msgid "Create User"
-msgstr ""
-
-msgctxt "field:production.bom,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.bom,inputs:"
-msgid "Inputs"
-msgstr ""
-
-msgctxt "field:production.bom,name:"
-msgid "Name"
-msgstr ""
-
-msgctxt "field:production.bom,output_products:"
-msgid "Output Products"
-msgstr ""
-
-msgctxt "field:production.bom,outputs:"
-msgid "Outputs"
-msgstr ""
-
-msgctxt "field:production.bom,rec_name:"
-msgid "Name"
-msgstr ""
-
-msgctxt "field:production.bom,write_date:"
-msgid "Write Date"
-msgstr ""
-
-msgctxt "field:production.bom,write_uid:"
-msgid "Write User"
-msgstr ""
-
-msgctxt "field:production.bom.input,bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "field:production.bom.input,create_date:"
-msgid "Create Date"
-msgstr ""
-
-msgctxt "field:production.bom.input,create_uid:"
-msgid "Create User"
-msgstr ""
-
-msgctxt "field:production.bom.input,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.bom.input,product:"
-msgid "Product"
-msgstr ""
-
-msgctxt "field:production.bom.input,quantity:"
-msgid "Quantity"
-msgstr ""
-
-msgctxt "field:production.bom.input,rec_name:"
-msgid "Name"
-msgstr ""
-
-msgctxt "field:production.bom.input,unit_digits:"
-msgid "Unit Digits"
-msgstr ""
-
-msgctxt "field:production.bom.input,uom:"
-msgid "Uom"
-msgstr ""
-
-msgctxt "field:production.bom.input,uom_category:"
-msgid "Uom Category"
-msgstr ""
-
-msgctxt "field:production.bom.input,write_date:"
-msgid "Write Date"
-msgstr ""
-
-msgctxt "field:production.bom.input,write_uid:"
-msgid "Write User"
-msgstr ""
-
-msgctxt "field:production.bom.output,bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "field:production.bom.output,create_date:"
-msgid "Create Date"
-msgstr ""
-
-msgctxt "field:production.bom.output,create_uid:"
-msgid "Create User"
-msgstr ""
-
-msgctxt "field:production.bom.output,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.bom.output,product:"
-msgid "Product"
-msgstr ""
-
-msgctxt "field:production.bom.output,quantity:"
-msgid "Quantity"
-msgstr ""
-
-msgctxt "field:production.bom.output,rec_name:"
-msgid "Name"
-msgstr ""
-
-msgctxt "field:production.bom.output,unit_digits:"
-msgid "Unit Digits"
-msgstr ""
-
-msgctxt "field:production.bom.output,uom:"
-msgid "Uom"
-msgstr ""
-
-msgctxt "field:production.bom.output,uom_category:"
-msgid "Uom Category"
-msgstr ""
-
-msgctxt "field:production.bom.output,write_date:"
-msgid "Write Date"
-msgstr ""
-
-msgctxt "field:production.bom.output,write_uid:"
-msgid "Write User"
-msgstr ""
-
-msgctxt "field:production.bom.tree,childs:"
-msgid "Childs"
-msgstr ""
-
-msgctxt "field:production.bom.tree,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.bom.tree,product:"
-msgid "Product"
-msgstr ""
-
-msgctxt "field:production.bom.tree,quantity:"
-msgid "Quantity"
-msgstr ""
-
-msgctxt "field:production.bom.tree,unit_digits:"
-msgid "Unit Digits"
-msgstr ""
-
-msgctxt "field:production.bom.tree,uom:"
-msgid "Uom"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.start,bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.start,category:"
-msgid "Category"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.start,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.start,product:"
-msgid "Product"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.start,quantity:"
-msgid "Quantity"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.start,unit_digits:"
-msgid "Unit Digits"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.start,uom:"
-msgid "Unit"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.tree,bom_tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "field:production.bom.tree.open.tree,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.configuration,create_date:"
-msgid "Create Date"
-msgstr ""
-
-msgctxt "field:production.configuration,create_uid:"
-msgid "Create User"
-msgstr ""
-
-msgctxt "field:production.configuration,id:"
-msgid "ID"
-msgstr ""
-
-msgctxt "field:production.configuration,production_sequence:"
-msgid "Production Sequence"
-msgstr ""
-
-msgctxt "field:production.configuration,rec_name:"
-msgid "Name"
-msgstr ""
-
-msgctxt "field:production.configuration,write_date:"
-msgid "Write Date"
-msgstr ""
-
-msgctxt "field:production.configuration,write_uid:"
-msgid "Write User"
-msgstr ""
-
-msgctxt "field:stock.location,production_location:"
-msgid "Production"
-msgstr ""
-
-msgctxt "field:stock.move,production_input:"
-msgid "Production Input"
-msgstr ""
-
-msgctxt "field:stock.move,production_output:"
-msgid "Production Output"
-msgstr ""
-
-msgctxt "model:ir.action,name:act_bom_form"
-msgid "BOM"
-msgstr ""
-
-msgctxt "model:ir.action,name:act_bom_list"
-msgid "BOMs"
-msgstr ""
-
-msgctxt "model:ir.action,name:act_production_calendar"
-msgid "Productions"
-msgstr ""
-
-msgctxt "model:ir.action,name:act_production_configuration_form"
-msgid "Production Configuration"
-msgstr ""
-
-msgctxt "model:ir.action,name:act_production_list"
-msgid "Productions"
-msgstr ""
-
-msgctxt "model:ir.action,name:wizard_assign"
-msgid "Assign Production"
-msgstr ""
-
-msgctxt "model:ir.action,name:wizard_bom_tree_open"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_all"
-msgid "All"
-msgstr ""
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_assigned"
-msgid "Assigned"
-msgstr ""
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_draft"
-msgid "Draft"
-msgstr ""
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_requests"
-msgid "Requests"
-msgstr ""
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_running"
-msgid "Running"
-msgstr ""
-
-msgctxt ""
-"model:ir.action.act_window.domain,name:act_production_list_domain_waiting"
-msgid "Waiting"
-msgstr ""
-
-msgctxt "model:ir.sequence,name:sequence_production"
-msgid "Production"
-msgstr ""
-
-msgctxt "model:ir.sequence.type,name:sequence_type_production"
-msgid "Production"
-msgstr ""
-
-msgctxt "model:ir.ui.menu,name:menu_bom_list"
-msgid "BOMs"
-msgstr ""
-
-msgctxt "model:ir.ui.menu,name:menu_configuration"
-msgid "Configuration"
-msgstr ""
-
-msgctxt "model:ir.ui.menu,name:menu_production"
-msgid "Production"
-msgstr ""
-
-msgctxt "model:ir.ui.menu,name:menu_production_calendar"
-msgid "Productions"
-msgstr ""
-
-msgctxt "model:ir.ui.menu,name:menu_production_configuration"
-msgid "Production Configuration"
-msgstr ""
-
-msgctxt "model:ir.ui.menu,name:menu_production_list"
-msgid "Productions"
-msgstr ""
-
-msgctxt "model:product.product-production.bom,name:"
-msgid "Product - BOM"
-msgstr ""
-
-msgctxt "model:production,name:"
-msgid "Production"
-msgstr ""
-
-msgctxt "model:production.assign.failed,name:"
-msgid "Assign Production"
-msgstr ""
-
-msgctxt "model:production.bom,name:"
-msgid "Bill of Material"
-msgstr ""
-
-msgctxt "model:production.bom.input,name:"
-msgid "Bill of Material Input"
-msgstr ""
-
-msgctxt "model:production.bom.output,name:"
-msgid "Bill of Material Output"
-msgstr ""
-
-msgctxt "model:production.bom.tree,name:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "model:production.bom.tree.open.start,name:"
-msgid "Open BOM Tree"
-msgstr ""
-
-msgctxt "model:production.bom.tree.open.tree,name:"
-msgid "Open BOM Tree"
-msgstr ""
-
-msgctxt "model:production.configuration,name:"
-msgid "Production Configuration"
-msgstr ""
-
-msgctxt "model:res.group,name:group_production"
-msgid "Production"
-msgstr ""
-
-msgctxt "model:res.group,name:group_production_admin"
-msgid "Production Administration"
-msgstr ""
-
-msgctxt "model:stock.location,name:location_production"
-msgid "Production"
-msgstr ""
-
-msgctxt "selection:production,state:"
-msgid "Assigned"
-msgstr ""
-
-msgctxt "selection:production,state:"
-msgid "Canceled"
-msgstr ""
-
-msgctxt "selection:production,state:"
-msgid "Done"
-msgstr ""
-
-msgctxt "selection:production,state:"
-msgid "Draft"
-msgstr ""
-
-msgctxt "selection:production,state:"
-msgid "Request"
-msgstr ""
-
-msgctxt "selection:production,state:"
-msgid "Running"
-msgstr ""
-
-msgctxt "selection:production,state:"
-msgid "Waiting"
-msgstr ""
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr ""
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr ""
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr ""
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to assign those products:"
-msgstr ""
-
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr ""
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "Lines"
-msgstr ""
-
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Assign"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Cancel"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Done"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Draft"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Lines"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Other Info"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Production"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Reset to BOM"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Run"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Wait"
-msgstr ""
-
-msgctxt "wizard_button:production.assign,failed,end:"
-msgid "OK"
-msgstr ""
-
-msgctxt "wizard_button:production.assign,failed,force:"
-msgid "Force Assign"
-msgstr ""
-
-msgctxt "wizard_button:production.bom.tree.open,start,end:"
-msgid "Cancel"
-msgstr ""
-
-msgctxt "wizard_button:production.bom.tree.open,start,tree:"
-msgid "OK"
-msgstr ""
-
-msgctxt "wizard_button:production.bom.tree.open,tree,end:"
-msgid "Close"
-msgstr ""
-
-msgctxt "wizard_button:production.bom.tree.open,tree,start:"
-msgid "Change"
-msgstr ""
diff --git a/locale/nl_NL.po b/locale/nl.po
similarity index 85%
copy from locale/nl_NL.po
copy to locale/nl.po
index ab72d73..2a16a1b 100644
--- a/locale/nl_NL.po
+++ b/locale/nl.po
@@ -42,21 +42,28 @@ msgctxt "field:product.product,boms:"
 msgid "BOMs"
 msgstr ""
 
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
+msgstr ""
+
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Datum"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Gebruiker"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
 #, fuzzy
 msgctxt "field:product.product-production.bom,product:"
@@ -73,13 +80,15 @@ msgctxt "field:product.product-production.bom,sequence:"
 msgid "Sequence"
 msgstr "Reeks"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "Schrijfdatum"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "Gebruiker"
 
 msgctxt "field:production,bom:"
 msgid "BOM"
@@ -94,22 +103,29 @@ msgctxt "field:production,cost:"
 msgid "Cost"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Datum"
 
+#, fuzzy
 msgctxt "field:production,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Gebruiker"
 
 #, fuzzy
 msgctxt "field:production,effective_date:"
 msgid "Effective Date"
 msgstr "Effectieve datum"
 
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr ""
+
+#, fuzzy
 msgctxt "field:production,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
 msgctxt "field:production,inputs:"
 msgid "Inputs"
@@ -119,9 +135,10 @@ msgctxt "field:production,location:"
 msgid "Location"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,number:"
 msgid "Number"
-msgstr ""
+msgstr "Nummer"
 
 msgctxt "field:production,outputs:"
 msgid "Outputs"
@@ -131,6 +148,10 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr ""
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr ""
+
 #, fuzzy
 msgctxt "field:production,product:"
 msgid "Product"
@@ -174,17 +195,20 @@ msgctxt "field:production,warehouse:"
 msgid "Warehouse"
 msgstr "Magazijn"
 
+#, fuzzy
 msgctxt "field:production,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "Schrijfdatum"
 
+#, fuzzy
 msgctxt "field:production,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "Gebruiker"
 
+#, fuzzy
 msgctxt "field:production.assign.failed,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
 #, fuzzy
 msgctxt "field:production.assign.failed,moves:"
@@ -196,17 +220,20 @@ msgctxt "field:production.bom,active:"
 msgid "Active"
 msgstr "Actief"
 
+#, fuzzy
 msgctxt "field:production.bom,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Datum"
 
+#, fuzzy
 msgctxt "field:production.bom,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Gebruiker"
 
+#, fuzzy
 msgctxt "field:production.bom,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
 msgctxt "field:production.bom,inputs:"
 msgid "Inputs"
@@ -230,29 +257,34 @@ msgctxt "field:production.bom,rec_name:"
 msgid "Name"
 msgstr "Naam bijlage"
 
+#, fuzzy
 msgctxt "field:production.bom,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "Schrijfdatum"
 
+#, fuzzy
 msgctxt "field:production.bom,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "Gebruiker"
 
 msgctxt "field:production.bom.input,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.input,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Datum"
 
+#, fuzzy
 msgctxt "field:production.bom.input,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Gebruiker"
 
+#, fuzzy
 msgctxt "field:production.bom.input,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
 #, fuzzy
 msgctxt "field:production.bom.input,product:"
@@ -282,29 +314,34 @@ msgctxt "field:production.bom.input,uom_category:"
 msgid "Uom Category"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.input,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "Schrijfdatum"
 
+#, fuzzy
 msgctxt "field:production.bom.input,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "Gebruiker"
 
 msgctxt "field:production.bom.output,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.output,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Datum"
 
+#, fuzzy
 msgctxt "field:production.bom.output,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Gebruiker"
 
+#, fuzzy
 msgctxt "field:production.bom.output,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
 #, fuzzy
 msgctxt "field:production.bom.output,product:"
@@ -334,21 +371,24 @@ msgctxt "field:production.bom.output,uom_category:"
 msgid "Uom Category"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.output,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "Schrijfdatum"
 
+#, fuzzy
 msgctxt "field:production.bom.output,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "Gebruiker"
 
 msgctxt "field:production.bom.tree,childs:"
 msgid "Childs"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
 #, fuzzy
 msgctxt "field:production.bom.tree,product:"
@@ -378,9 +418,10 @@ msgctxt "field:production.bom.tree.open.start,category:"
 msgid "Category"
 msgstr "Categorie"
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
 #, fuzzy
 msgctxt "field:production.bom.tree.open.start,product:"
@@ -406,21 +447,25 @@ msgctxt "field:production.bom.tree.open.tree,bom_tree:"
 msgid "BOM Tree"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.tree,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
+#, fuzzy
 msgctxt "field:production.configuration,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "Datum"
 
+#, fuzzy
 msgctxt "field:production.configuration,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "Gebruiker"
 
+#, fuzzy
 msgctxt "field:production.configuration,id:"
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
 msgctxt "field:production.configuration,production_sequence:"
 msgid "Production Sequence"
@@ -431,14 +476,64 @@ msgctxt "field:production.configuration,rec_name:"
 msgid "Name"
 msgstr "Naam bijlage"
 
+#, fuzzy
 msgctxt "field:production.configuration,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "Schrijfdatum"
 
+#, fuzzy
 msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
+msgstr "Gebruiker"
+
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr "Datum"
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr "Gebruiker"
+
+#, fuzzy
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
 msgstr ""
 
+#, fuzzy
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr "Producten"
+
+#, fuzzy
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr "Naam bijlage"
+
+#, fuzzy
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr "Reeks"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr "Schrijfdatum"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr "Gebruiker"
+
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
 msgstr ""
@@ -459,6 +554,10 @@ msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
 msgstr ""
 
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr ""
+
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
 msgstr ""
@@ -480,6 +579,16 @@ msgid "BOM Tree"
 msgstr ""
 
 msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr ""
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
+msgstr ""
+
+msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
 msgstr ""
@@ -584,6 +693,10 @@ msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
 msgstr ""
 
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
+msgstr ""
+
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
 msgstr ""
@@ -628,59 +741,19 @@ msgctxt "selection:production,state:"
 msgid "Waiting"
 msgstr "In afwachting"
 
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr ""
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr ""
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
+msgctxt "view:product.product:"
+msgid "Production"
 msgstr ""
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr ""
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr ""
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr ""
-
 #, fuzzy
 msgctxt "view:production.bom:"
 msgid "Lines"
 msgstr "Regels"
 
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr ""
-
 msgctxt "view:production:"
 msgid "Assign"
 msgstr ""
@@ -711,14 +784,6 @@ msgid "Other Info"
 msgstr "Aanvullende informatie"
 
 msgctxt "view:production:"
-msgid "Production"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr ""
-
-msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr ""
 
diff --git a/locale/nl_NL.po b/locale/pl.po
similarity index 84%
rename from locale/nl_NL.po
rename to locale/pl.po
index ab72d73..66860f1 100644
--- a/locale/nl_NL.po
+++ b/locale/pl.po
@@ -38,13 +38,19 @@ msgid ""
 "not match the cost of the production (%(costs)s)."
 msgstr ""
 
+#, fuzzy
 msgctxt "field:product.product,boms:"
 msgid "BOMs"
+msgstr "BOMs"
+
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
 msgctxt "field:product.product-production.bom,create_date:"
 msgid "Create Date"
@@ -58,20 +64,17 @@ msgctxt "field:product.product-production.bom,id:"
 msgid "ID"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:product.product-production.bom,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:product.product-production.bom,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:product.product-production.bom,sequence:"
 msgid "Sequence"
-msgstr "Reeks"
+msgstr ""
 
 msgctxt "field:product.product-production.bom,write_date:"
 msgid "Write Date"
@@ -81,14 +84,14 @@ msgctxt "field:product.product-production.bom,write_uid:"
 msgid "Write User"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,bom:"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
-#, fuzzy
 msgctxt "field:production,company:"
 msgid "Company"
-msgstr "Bedrijf"
+msgstr ""
 
 msgctxt "field:production,cost:"
 msgid "Cost"
@@ -102,10 +105,13 @@ msgctxt "field:production,create_uid:"
 msgid "Create User"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production,effective_date:"
 msgid "Effective Date"
-msgstr "Effectieve datum"
+msgstr ""
+
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr ""
 
 msgctxt "field:production,id:"
 msgid "ID"
@@ -131,35 +137,33 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr ""
 
-#, fuzzy
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr ""
+
 msgctxt "field:production,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production,quantity:"
 msgid "Quantity"
-msgstr "Hoeveelheid"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production,reference:"
 msgid "Reference"
-msgstr "Referentie"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production,state:"
 msgid "State"
-msgstr "Status"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production,unit_digits:"
 msgid "Unit Digits"
-msgstr "Decimalen eenheid"
+msgstr ""
 
 msgctxt "field:production,uom:"
 msgid "Uom"
@@ -169,10 +173,9 @@ msgctxt "field:production,uom_category:"
 msgid "Uom Category"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production,warehouse:"
 msgid "Warehouse"
-msgstr "Magazijn"
+msgstr ""
 
 msgctxt "field:production,write_date:"
 msgid "Write Date"
@@ -186,15 +189,13 @@ msgctxt "field:production.assign.failed,id:"
 msgid "ID"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.assign.failed,moves:"
 msgid "Moves"
-msgstr "Boekingen"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom,active:"
 msgid "Active"
-msgstr "Actief"
+msgstr ""
 
 msgctxt "field:production.bom,create_date:"
 msgid "Create Date"
@@ -212,10 +213,9 @@ msgctxt "field:production.bom,inputs:"
 msgid "Inputs"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom,name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr ""
 
 msgctxt "field:production.bom,output_products:"
 msgid "Output Products"
@@ -225,10 +225,9 @@ msgctxt "field:production.bom,outputs:"
 msgid "Outputs"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr ""
 
 msgctxt "field:production.bom,write_date:"
 msgid "Write Date"
@@ -238,9 +237,10 @@ msgctxt "field:production.bom,write_uid:"
 msgid "Write User"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.input,bom:"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
 msgctxt "field:production.bom.input,create_date:"
 msgid "Create Date"
@@ -254,25 +254,21 @@ msgctxt "field:production.bom.input,id:"
 msgid "ID"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.input,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.input,quantity:"
 msgid "Quantity"
-msgstr "Hoeveelheid"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.input,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.input,unit_digits:"
 msgid "Unit Digits"
-msgstr "Decimalen eenheid"
+msgstr ""
 
 msgctxt "field:production.bom.input,uom:"
 msgid "Uom"
@@ -290,9 +286,10 @@ msgctxt "field:production.bom.input,write_uid:"
 msgid "Write User"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.output,bom:"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
 msgctxt "field:production.bom.output,create_date:"
 msgid "Create Date"
@@ -306,25 +303,21 @@ msgctxt "field:production.bom.output,id:"
 msgid "ID"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.output,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.output,quantity:"
 msgid "Quantity"
-msgstr "Hoeveelheid"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.output,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.output,unit_digits:"
 msgid "Unit Digits"
-msgstr "Decimalen eenheid"
+msgstr ""
 
 msgctxt "field:production.bom.output,uom:"
 msgid "Uom"
@@ -350,61 +343,55 @@ msgctxt "field:production.bom.tree,id:"
 msgid "ID"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.tree,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.tree,quantity:"
 msgid "Quantity"
-msgstr "Hoeveelheid"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.tree,unit_digits:"
 msgid "Unit Digits"
-msgstr "Decimalen eenheid"
+msgstr ""
 
 msgctxt "field:production.bom.tree,uom:"
 msgid "Uom"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,bom:"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
-#, fuzzy
 msgctxt "field:production.bom.tree.open.start,category:"
 msgid "Category"
-msgstr "Categorie"
+msgstr ""
 
 msgctxt "field:production.bom.tree.open.start,id:"
 msgid "ID"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.tree.open.start,product:"
 msgid "Product"
-msgstr "Producten"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.tree.open.start,quantity:"
 msgid "Quantity"
-msgstr "Hoeveelheid"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.tree.open.start,unit_digits:"
 msgid "Unit Digits"
-msgstr "Decimalen eenheid"
+msgstr ""
 
-#, fuzzy
 msgctxt "field:production.bom.tree.open.start,uom:"
 msgid "Unit"
-msgstr "Eenheid"
+msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.tree,bom_tree:"
 msgid "BOM Tree"
-msgstr ""
+msgstr "BOM Tree"
 
 msgctxt "field:production.bom.tree.open.tree,id:"
 msgid "ID"
@@ -426,10 +413,9 @@ msgctxt "field:production.configuration,production_sequence:"
 msgid "Production Sequence"
 msgstr ""
 
-#, fuzzy
 msgctxt "field:production.configuration,rec_name:"
 msgid "Name"
-msgstr "Naam bijlage"
+msgstr ""
 
 msgctxt "field:production.configuration,write_date:"
 msgid "Write Date"
@@ -439,9 +425,51 @@ msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
 msgstr ""
 
+#, fuzzy
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr "BOM"
+
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr ""
+
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr ""
+
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr ""
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr ""
+
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr ""
+
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr ""
+
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr ""
+
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr ""
+
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr ""
+
+#, fuzzy
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
 msgctxt "field:stock.move,production_input:"
 msgid "Production Input"
@@ -453,108 +481,122 @@ msgstr ""
 
 msgctxt "model:ir.action,name:act_bom_form"
 msgid "BOM"
-msgstr ""
+msgstr "BOM"
 
 msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
-msgstr ""
+msgstr "BOMs"
+
+#, fuzzy
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr "BOMs"
 
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
-msgstr ""
+msgstr "Productions"
 
 msgctxt "model:ir.action,name:act_production_configuration_form"
 msgid "Production Configuration"
-msgstr ""
+msgstr "Production Configuration"
 
 msgctxt "model:ir.action,name:act_production_list"
 msgid "Productions"
-msgstr ""
+msgstr "Productions"
 
 msgctxt "model:ir.action,name:wizard_assign"
 msgid "Assign Production"
-msgstr ""
+msgstr "Assign Production"
 
 msgctxt "model:ir.action,name:wizard_bom_tree_open"
 msgid "BOM Tree"
+msgstr "BOM Tree"
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr ""
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
 msgstr ""
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
-msgstr ""
+msgstr "All"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_assigned"
 msgid "Assigned"
-msgstr ""
+msgstr "Assigned"
 
-#, fuzzy
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_draft"
 msgid "Draft"
-msgstr "Concept"
+msgstr "Draft"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_requests"
 msgid "Requests"
-msgstr ""
+msgstr "Requests"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_running"
 msgid "Running"
-msgstr ""
+msgstr "Running"
 
-#, fuzzy
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_waiting"
 msgid "Waiting"
-msgstr "In afwachting"
+msgstr "Waiting"
 
 msgctxt "model:ir.sequence,name:sequence_production"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
 msgctxt "model:ir.sequence.type,name:sequence_type_production"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
 msgctxt "model:ir.ui.menu,name:menu_bom_list"
 msgid "BOMs"
-msgstr ""
+msgstr "BOMs"
 
-#, fuzzy
 msgctxt "model:ir.ui.menu,name:menu_configuration"
 msgid "Configuration"
-msgstr "Instellingen"
+msgstr "Configuration"
 
 msgctxt "model:ir.ui.menu,name:menu_production"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
 msgctxt "model:ir.ui.menu,name:menu_production_calendar"
 msgid "Productions"
-msgstr ""
+msgstr "Productions"
 
 msgctxt "model:ir.ui.menu,name:menu_production_configuration"
 msgid "Production Configuration"
-msgstr ""
+msgstr "Production Configuration"
 
 msgctxt "model:ir.ui.menu,name:menu_production_list"
 msgid "Productions"
-msgstr ""
+msgstr "Productions"
 
 msgctxt "model:product.product-production.bom,name:"
 msgid "Product - BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:production,name:"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
+#, fuzzy
 msgctxt "model:production.assign.failed,name:"
 msgid "Assign Production"
-msgstr ""
+msgstr "Assign Production"
 
 msgctxt "model:production.bom,name:"
 msgid "Bill of Material"
@@ -568,9 +610,10 @@ msgctxt "model:production.bom.output,name:"
 msgid "Bill of Material Output"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:production.bom.tree,name:"
 msgid "BOM Tree"
-msgstr ""
+msgstr "BOM Tree"
 
 msgctxt "model:production.bom.tree.open.start,name:"
 msgid "Open BOM Tree"
@@ -580,142 +623,97 @@ msgctxt "model:production.bom.tree.open.tree,name:"
 msgid "Open BOM Tree"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
+msgstr "Production Configuration"
+
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
 msgstr ""
 
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
 msgctxt "model:res.group,name:group_production_admin"
 msgid "Production Administration"
-msgstr ""
+msgstr "Production Administration"
 
 msgctxt "model:stock.location,name:location_production"
 msgid "Production"
-msgstr ""
+msgstr "Production"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Assigned"
-msgstr ""
+msgstr "Assigned"
 
-#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Canceled"
-msgstr "Geannuleerd"
+msgstr ""
 
-#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Done"
-msgstr "Klaar"
+msgstr ""
 
 #, fuzzy
 msgctxt "selection:production,state:"
 msgid "Draft"
-msgstr "Concept"
+msgstr "Draft"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Request"
-msgstr ""
+msgstr "Requests"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Running"
-msgstr ""
+msgstr "Running"
 
 #, fuzzy
 msgctxt "selection:production,state:"
 msgid "Waiting"
-msgstr "In afwachting"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr ""
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr ""
+msgstr "Waiting"
 
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr ""
+#, fuzzy
+msgctxt "view:product.product:"
+msgid "Production"
+msgstr "Production"
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr ""
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr ""
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr ""
-
-#, fuzzy
 msgctxt "view:production.bom:"
 msgid "Lines"
-msgstr "Regels"
-
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
 msgstr ""
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Assign"
-msgstr ""
+msgstr "Assigned"
 
-#, fuzzy
 msgctxt "view:production:"
 msgid "Cancel"
-msgstr "Annuleren"
+msgstr ""
 
-#, fuzzy
 msgctxt "view:production:"
 msgid "Done"
-msgstr "Klaar"
+msgstr ""
 
 #, fuzzy
 msgctxt "view:production:"
 msgid "Draft"
-msgstr "Concept"
+msgstr "Draft"
 
-#, fuzzy
 msgctxt "view:production:"
 msgid "Lines"
-msgstr "Regels"
-
-#, fuzzy
-msgctxt "view:production:"
-msgid "Other Info"
-msgstr "Aanvullende informatie"
-
-msgctxt "view:production:"
-msgid "Production"
 msgstr ""
 
 msgctxt "view:production:"
-msgid "Productions"
+msgid "Other Info"
 msgstr ""
 
 msgctxt "view:production:"
@@ -730,29 +728,25 @@ msgctxt "view:production:"
 msgid "Wait"
 msgstr ""
 
-#, fuzzy
 msgctxt "wizard_button:production.assign,failed,end:"
 msgid "OK"
-msgstr "Oké"
+msgstr ""
 
 msgctxt "wizard_button:production.assign,failed,force:"
 msgid "Force Assign"
 msgstr ""
 
-#, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,start,end:"
 msgid "Cancel"
-msgstr "Annuleren"
+msgstr ""
 
-#, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,start,tree:"
 msgid "OK"
-msgstr "Oké"
+msgstr ""
 
-#, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,tree,end:"
 msgid "Close"
-msgstr "Sluiten"
+msgstr ""
 
 msgctxt "wizard_button:production.bom.tree.open,tree,start:"
 msgid "Change"
diff --git a/locale/pt_BR.po b/locale/pt_BR.po
index c009cee..b944ccb 100644
--- a/locale/pt_BR.po
+++ b/locale/pt_BR.po
@@ -46,6 +46,10 @@ msgctxt "field:product.product,boms:"
 msgid "BOMs"
 msgstr "Listas de Materiais"
 
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
+msgstr ""
+
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
 msgstr "Lista de Materiais"
@@ -106,6 +110,10 @@ msgctxt "field:production,effective_date:"
 msgid "Effective Date"
 msgstr "Data efetiva"
 
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr ""
+
 msgctxt "field:production,id:"
 msgid "ID"
 msgstr "ID"
@@ -118,9 +126,10 @@ msgctxt "field:production,location:"
 msgid "Location"
 msgstr "Localização"
 
+#, fuzzy
 msgctxt "field:production,number:"
 msgid "Number"
-msgstr ""
+msgstr "Número"
 
 msgctxt "field:production,outputs:"
 msgid "Outputs"
@@ -130,6 +139,10 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr "Data planejada"
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr ""
+
 msgctxt "field:production,product:"
 msgid "Product"
 msgstr "Produto"
@@ -410,6 +423,55 @@ msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
 msgstr "Gravado pelo usuário"
 
+#, fuzzy
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr "Lista de materiais"
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr "Data de criação"
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr "Usuário de Criação"
+
+#, fuzzy
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr "Produto"
+
+#, fuzzy
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr "Nome"
+
+#, fuzzy
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr "Sequência"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr "Editado por"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr "Gravado por"
+
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
 msgstr "Produção"
@@ -430,6 +492,11 @@ msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
 msgstr "Lista de Materiais"
 
+#, fuzzy
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr "Listas de Materiais"
+
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
 msgstr "Produções"
@@ -451,6 +518,16 @@ msgid "BOM Tree"
 msgstr "Listagem da lista de materiais"
 
 msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr ""
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
+msgstr ""
+
+msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
 msgstr "Todos"
@@ -552,6 +629,10 @@ msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
 msgstr "Configuração de produção"
 
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
+msgstr ""
+
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
 msgstr "Produção"
@@ -592,58 +673,19 @@ msgctxt "selection:production,state:"
 msgid "Waiting"
 msgstr "Espera"
 
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr "Produto - Lista de materiais"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr "Produto - Listas de materiais"
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr "Impossível reservar"
+#, fuzzy
+msgctxt "view:product.product:"
+msgid "Production"
+msgstr "Produção"
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr "Não é possível reservar"
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr "Entradas da lista de materiais"
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr "Saídas da lista de materiais"
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr "Listagem da lista de materiais"
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr "Listagem da lista de materiais"
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr "Listagem da lista de materiais"
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr "Lista de materiais"
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr "Listas de materiais"
-
 msgctxt "view:production.bom:"
 msgid "Lines"
 msgstr "Linhas"
 
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr "Linhas"
-
 msgctxt "view:production:"
 msgid "Assign"
 msgstr "Reservar"
@@ -669,14 +711,6 @@ msgid "Other Info"
 msgstr "Informação adicional"
 
 msgctxt "view:production:"
-msgid "Production"
-msgstr "Produção"
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr "Produções"
-
-msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr "Redifinir para a lista de materiais"
 
diff --git a/locale/ru_RU.po b/locale/ru.po
similarity index 90%
rename from locale/ru_RU.po
rename to locale/ru.po
index 54c9810..28e2c72 100644
--- a/locale/ru_RU.po
+++ b/locale/ru.po
@@ -42,6 +42,10 @@ msgctxt "field:product.product,boms:"
 msgid "BOMs"
 msgstr "Спецификации"
 
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
+msgstr ""
+
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
 msgstr "Спецификация"
@@ -102,6 +106,10 @@ msgctxt "field:production,effective_date:"
 msgid "Effective Date"
 msgstr "Учетная дата"
 
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr ""
+
 msgctxt "field:production,id:"
 msgid "ID"
 msgstr "ID"
@@ -114,9 +122,10 @@ msgctxt "field:production,location:"
 msgid "Location"
 msgstr "Местоположение"
 
+#, fuzzy
 msgctxt "field:production,number:"
 msgid "Number"
-msgstr ""
+msgstr "Номер"
 
 msgctxt "field:production,outputs:"
 msgid "Outputs"
@@ -126,6 +135,10 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr "Плановая дата"
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr ""
+
 msgctxt "field:production,product:"
 msgid "Product"
 msgstr "Продукт"
@@ -406,6 +419,55 @@ msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
 msgstr "Изменено пользователем"
 
+#, fuzzy
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr "Спецификация"
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr "Дата создания"
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr "Создано пользователем"
+
+#, fuzzy
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr "Товарно материальные ценности (ТМЦ)"
+
+#, fuzzy
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr "Правило оплаты"
+
+#, fuzzy
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr "Последовательность"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr "Дата изменения"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr "Изменено пользователем"
+
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
 msgstr "Производство"
@@ -427,6 +489,11 @@ msgid "BOMs"
 msgstr "Спецификации"
 
 #, fuzzy
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr "Спецификации"
+
+#, fuzzy
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
 msgstr "Производства"
@@ -448,6 +515,16 @@ msgid "BOM Tree"
 msgstr "Дерево спецификации"
 
 msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr ""
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
+msgstr ""
+
+msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
 msgstr "Все"
@@ -550,6 +627,10 @@ msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
 msgstr "Конфигурация производства"
 
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
+msgstr ""
+
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
 msgstr "Производство"
@@ -590,58 +671,19 @@ msgctxt "selection:production,state:"
 msgid "Waiting"
 msgstr "Ожидание"
 
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr "Продукция - Спецификация"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr "Продукция - Спецификации"
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr "Не удалось назначить"
+#, fuzzy
+msgctxt "view:product.product:"
+msgid "Production"
+msgstr "Производство"
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr "Не удалось назначить эти продукты:"
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr "Спецификация, исходные"
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr "Спецификация, продукция"
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr "Дерево спецификации"
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr "Дерево спецификации"
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr "Дерево спецификации"
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr "Спецификация"
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr "Спецификации"
-
 msgctxt "view:production.bom:"
 msgid "Lines"
 msgstr "Строки"
 
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr "Конфигурация производства"
-
 msgctxt "view:production:"
 msgid "Assign"
 msgstr "Назначение"
@@ -667,14 +709,6 @@ msgid "Other Info"
 msgstr "Другая информация"
 
 msgctxt "view:production:"
-msgid "Production"
-msgstr "Производство"
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr "Производства"
-
-msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr ""
 
diff --git a/locale/sl_SI.po b/locale/sl.po
similarity index 90%
rename from locale/sl_SI.po
rename to locale/sl.po
index 45b4e54..8ace443 100644
--- a/locale/sl_SI.po
+++ b/locale/sl.po
@@ -44,6 +44,10 @@ msgctxt "field:product.product,boms:"
 msgid "BOMs"
 msgstr "Kosovnice"
 
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
+msgstr ""
+
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
 msgstr "Kosovnica"
@@ -104,6 +108,10 @@ msgctxt "field:production,effective_date:"
 msgid "Effective Date"
 msgstr "Dejanski datum"
 
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr ""
+
 msgctxt "field:production,id:"
 msgid "ID"
 msgstr "ID"
@@ -128,6 +136,10 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr "Načrtovan datum"
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr "Planirano od"
+
 msgctxt "field:production,product:"
 msgid "Product"
 msgstr "Izdelek"
@@ -408,6 +420,54 @@ msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
 msgstr "Zapisal"
 
+#, fuzzy
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr "Kosovnica"
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr "Izdelano"
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr "Izdelal"
+
+#, fuzzy
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr "ID"
+
+#, fuzzy
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr "Dobavni rok"
+
+#, fuzzy
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
+msgstr "Izdelek"
+
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr "Ime"
+
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr "Zap.št."
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr "Zapisano"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr "Zapisal"
+
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
 msgstr "Proizvodnja"
@@ -428,6 +488,11 @@ msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
 msgstr "Kosovnice"
 
+#, fuzzy
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr "Kosovnice"
+
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
 msgstr "Proizvodni nalogi"
@@ -449,6 +514,16 @@ msgid "BOM Tree"
 msgstr "Drevo kosovnice"
 
 msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr ""
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
+msgstr ""
+
+msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
 msgstr "Vse"
@@ -550,6 +625,10 @@ msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
 msgstr "Proizvodna konfiguracija"
 
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
+msgstr ""
+
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
 msgstr "Proizvodnja"
@@ -590,58 +669,19 @@ msgctxt "selection:production,state:"
 msgid "Waiting"
 msgstr "Čakajoče"
 
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr "Izdelek - Kosovnica"
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr "Izdelek - Kosovnice"
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
-msgstr "Dodelitev ni možna"
+#, fuzzy
+msgctxt "view:product.product:"
+msgid "Production"
+msgstr "Proizvodnja"
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr "Dodelitev ni možna za naslednje izdelke:"
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr "Vhodi kosovnice"
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr "Izhodi kosovnice"
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr "Drevo kosovnice"
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr "Drevo kosovnice"
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr "Drevo kosovnice"
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr "Kosovnica"
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr "Kosovnice"
-
 msgctxt "view:production.bom:"
 msgid "Lines"
 msgstr "Postavke"
 
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr "Proizvodna konfiguracija"
-
 msgctxt "view:production:"
 msgid "Assign"
 msgstr "Dodelitev"
@@ -667,14 +707,6 @@ msgid "Other Info"
 msgstr "Drugo"
 
 msgctxt "view:production:"
-msgid "Production"
-msgstr "Proizvodni nalog"
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr "Proizvodni nalogi"
-
-msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr "Ponastavi na kosovnico"
 
diff --git a/locale/zh_CN.po b/locale/zh_CN.po
index 438cc8c..019cc1b 100644
--- a/locale/zh_CN.po
+++ b/locale/zh_CN.po
@@ -42,41 +42,52 @@ msgctxt "field:product.product,boms:"
 msgid "BOMs"
 msgstr ""
 
+msgctxt "field:product.product,lead_times:"
+msgid "Lead Times"
+msgstr ""
+
 msgctxt "field:product.product-production.bom,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "创建日期:"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "添加用户"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,id:"
 msgid "ID"
-msgstr ""
+msgstr "编号"
 
 msgctxt "field:product.product-production.bom,product:"
 msgid "Product"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "纳木"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,sequence:"
 msgid "Sequence"
-msgstr ""
+msgstr "序列"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "写入日期"
 
+#, fuzzy
 msgctxt "field:product.product-production.bom,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "写入帐号"
 
 msgctxt "field:production,bom:"
 msgid "BOM"
@@ -90,21 +101,28 @@ msgctxt "field:production,cost:"
 msgid "Cost"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "创建日期:"
 
+#, fuzzy
 msgctxt "field:production,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "添加用户"
 
 msgctxt "field:production,effective_date:"
 msgid "Effective Date"
 msgstr ""
 
+msgctxt "field:production,effective_start_date:"
+msgid "Effective Start Date"
+msgstr ""
+
+#, fuzzy
 msgctxt "field:production,id:"
 msgid "ID"
-msgstr ""
+msgstr "编号"
 
 msgctxt "field:production,inputs:"
 msgid "Inputs"
@@ -126,6 +144,10 @@ msgctxt "field:production,planned_date:"
 msgid "Planned Date"
 msgstr ""
 
+msgctxt "field:production,planned_start_date:"
+msgid "Planned Start Date"
+msgstr ""
+
 msgctxt "field:production,product:"
 msgid "Product"
 msgstr ""
@@ -134,17 +156,19 @@ msgctxt "field:production,quantity:"
 msgid "Quantity"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "纳木"
 
 msgctxt "field:production,reference:"
 msgid "Reference"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,state:"
 msgid "State"
-msgstr ""
+msgstr "状态"
 
 msgctxt "field:production,unit_digits:"
 msgid "Unit Digits"
@@ -162,45 +186,53 @@ msgctxt "field:production,warehouse:"
 msgid "Warehouse"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "写入日期"
 
+#, fuzzy
 msgctxt "field:production,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "写入帐号"
 
+#, fuzzy
 msgctxt "field:production.assign.failed,id:"
 msgid "ID"
-msgstr ""
+msgstr "编号"
 
 msgctxt "field:production.assign.failed,moves:"
 msgid "Moves"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom,active:"
 msgid "Active"
-msgstr ""
+msgstr "启用"
 
+#, fuzzy
 msgctxt "field:production.bom,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "创建日期:"
 
+#, fuzzy
 msgctxt "field:production.bom,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "添加用户"
 
+#, fuzzy
 msgctxt "field:production.bom,id:"
 msgid "ID"
-msgstr ""
+msgstr "编号"
 
 msgctxt "field:production.bom,inputs:"
 msgid "Inputs"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom,name:"
 msgid "Name"
-msgstr ""
+msgstr "纳木"
 
 msgctxt "field:production.bom,output_products:"
 msgid "Output Products"
@@ -210,33 +242,39 @@ msgctxt "field:production.bom,outputs:"
 msgid "Outputs"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "纳木"
 
+#, fuzzy
 msgctxt "field:production.bom,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "写入日期"
 
+#, fuzzy
 msgctxt "field:production.bom,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "写入帐号"
 
 msgctxt "field:production.bom.input,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.input,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "创建日期:"
 
+#, fuzzy
 msgctxt "field:production.bom.input,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "添加用户"
 
+#, fuzzy
 msgctxt "field:production.bom.input,id:"
 msgid "ID"
-msgstr ""
+msgstr "编号"
 
 msgctxt "field:production.bom.input,product:"
 msgid "Product"
@@ -246,9 +284,10 @@ msgctxt "field:production.bom.input,quantity:"
 msgid "Quantity"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.input,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "纳木"
 
 msgctxt "field:production.bom.input,unit_digits:"
 msgid "Unit Digits"
@@ -262,29 +301,34 @@ msgctxt "field:production.bom.input,uom_category:"
 msgid "Uom Category"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.input,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "写入日期"
 
+#, fuzzy
 msgctxt "field:production.bom.input,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "写入帐号"
 
 msgctxt "field:production.bom.output,bom:"
 msgid "BOM"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.output,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "创建日期:"
 
+#, fuzzy
 msgctxt "field:production.bom.output,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "添加用户"
 
+#, fuzzy
 msgctxt "field:production.bom.output,id:"
 msgid "ID"
-msgstr ""
+msgstr "编号"
 
 msgctxt "field:production.bom.output,product:"
 msgid "Product"
@@ -294,9 +338,10 @@ msgctxt "field:production.bom.output,quantity:"
 msgid "Quantity"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.output,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "纳木"
 
 msgctxt "field:production.bom.output,unit_digits:"
 msgid "Unit Digits"
@@ -310,21 +355,25 @@ msgctxt "field:production.bom.output,uom_category:"
 msgid "Uom Category"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.output,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "写入日期"
 
+#, fuzzy
 msgctxt "field:production.bom.output,write_uid:"
 msgid "Write User"
-msgstr ""
+msgstr "写入帐号"
 
+#, fuzzy
 msgctxt "field:production.bom.tree,childs:"
 msgid "Childs"
-msgstr ""
+msgstr "子项"
 
+#, fuzzy
 msgctxt "field:production.bom.tree,id:"
 msgid "ID"
-msgstr ""
+msgstr "编号"
 
 msgctxt "field:production.bom.tree,product:"
 msgid "Product"
@@ -350,9 +399,10 @@ msgctxt "field:production.bom.tree.open.start,category:"
 msgid "Category"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.start,id:"
 msgid "ID"
-msgstr ""
+msgstr "编号"
 
 msgctxt "field:production.bom.tree.open.start,product:"
 msgid "Product"
@@ -374,38 +424,92 @@ msgctxt "field:production.bom.tree.open.tree,bom_tree:"
 msgid "BOM Tree"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.bom.tree.open.tree,id:"
 msgid "ID"
-msgstr ""
+msgstr "编号"
 
+#, fuzzy
 msgctxt "field:production.configuration,create_date:"
 msgid "Create Date"
-msgstr ""
+msgstr "创建日期:"
 
+#, fuzzy
 msgctxt "field:production.configuration,create_uid:"
 msgid "Create User"
-msgstr ""
+msgstr "添加用户"
 
+#, fuzzy
 msgctxt "field:production.configuration,id:"
 msgid "ID"
-msgstr ""
+msgstr "编号"
 
 msgctxt "field:production.configuration,production_sequence:"
 msgid "Production Sequence"
 msgstr ""
 
+#, fuzzy
 msgctxt "field:production.configuration,rec_name:"
 msgid "Name"
-msgstr ""
+msgstr "纳木"
 
+#, fuzzy
 msgctxt "field:production.configuration,write_date:"
 msgid "Write Date"
-msgstr ""
+msgstr "写入日期"
 
+#, fuzzy
 msgctxt "field:production.configuration,write_uid:"
 msgid "Write User"
+msgstr "写入帐号"
+
+msgctxt "field:production.lead_time,bom:"
+msgid "BOM"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_date:"
+msgid "Create Date"
+msgstr "创建日期:"
+
+#, fuzzy
+msgctxt "field:production.lead_time,create_uid:"
+msgid "Create User"
+msgstr "添加用户"
+
+#, fuzzy
+msgctxt "field:production.lead_time,id:"
+msgid "ID"
+msgstr "编号"
+
+msgctxt "field:production.lead_time,lead_time:"
+msgid "Lead Time"
+msgstr ""
+
+msgctxt "field:production.lead_time,product:"
+msgid "Product"
 msgstr ""
 
+#, fuzzy
+msgctxt "field:production.lead_time,rec_name:"
+msgid "Name"
+msgstr "纳木"
+
+#, fuzzy
+msgctxt "field:production.lead_time,sequence:"
+msgid "Sequence"
+msgstr "序列"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_date:"
+msgid "Write Date"
+msgstr "写入日期"
+
+#, fuzzy
+msgctxt "field:production.lead_time,write_uid:"
+msgid "Write User"
+msgstr "写入帐号"
+
 msgctxt "field:stock.location,production_location:"
 msgid "Production"
 msgstr ""
@@ -426,6 +530,10 @@ msgctxt "model:ir.action,name:act_bom_list"
 msgid "BOMs"
 msgstr ""
 
+msgctxt "model:ir.action,name:act_product_in_bom"
+msgid "BOMs"
+msgstr ""
+
 msgctxt "model:ir.action,name:act_production_calendar"
 msgid "Productions"
 msgstr ""
@@ -447,9 +555,20 @@ msgid "BOM Tree"
 msgstr ""
 
 msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_input"
+msgid "As Inputs"
+msgstr ""
+
+msgctxt ""
+"model:ir.action.act_window.domain,name:act_product_in_bom_output_domain_output"
+msgid "As Outputs"
+msgstr ""
+
+#, fuzzy
+msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_all"
 msgid "All"
-msgstr ""
+msgstr "全部"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_production_list_domain_assigned"
@@ -488,9 +607,10 @@ msgctxt "model:ir.ui.menu,name:menu_bom_list"
 msgid "BOMs"
 msgstr ""
 
+#, fuzzy
 msgctxt "model:ir.ui.menu,name:menu_configuration"
 msgid "Configuration"
-msgstr ""
+msgstr "设置"
 
 msgctxt "model:ir.ui.menu,name:menu_production"
 msgid "Production"
@@ -548,6 +668,10 @@ msgctxt "model:production.configuration,name:"
 msgid "Production Configuration"
 msgstr ""
 
+msgctxt "model:production.lead_time,name:"
+msgid "Production Lead Time"
+msgstr ""
+
 msgctxt "model:res.group,name:group_production"
 msgid "Production"
 msgstr ""
@@ -564,13 +688,15 @@ msgctxt "selection:production,state:"
 msgid "Assigned"
 msgstr ""
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Canceled"
-msgstr ""
+msgstr "取消"
 
+#, fuzzy
 msgctxt "selection:production,state:"
 msgid "Done"
-msgstr ""
+msgstr "完成"
 
 msgctxt "selection:production,state:"
 msgid "Draft"
@@ -588,69 +714,31 @@ msgctxt "selection:production,state:"
 msgid "Waiting"
 msgstr ""
 
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOM"
-msgstr ""
-
-msgctxt "view:product.product-production.bom:"
-msgid "Product - BOMs"
-msgstr ""
-
-msgctxt "view:production.assign.failed:"
-msgid "Unable to Assign"
+msgctxt "view:product.product:"
+msgid "Production"
 msgstr ""
 
 msgctxt "view:production.assign.failed:"
 msgid "Unable to assign those products:"
 msgstr ""
 
-msgctxt "view:production.bom.input:"
-msgid "BOM Inputs"
-msgstr ""
-
-msgctxt "view:production.bom.output:"
-msgid "BOM Outputs"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.start:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree.open.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom.tree:"
-msgid "BOM Tree"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOM"
-msgstr ""
-
-msgctxt "view:production.bom:"
-msgid "BOMs"
-msgstr ""
-
 msgctxt "view:production.bom:"
 msgid "Lines"
 msgstr ""
 
-msgctxt "view:production.configuration:"
-msgid "Production Configuration"
-msgstr ""
-
 msgctxt "view:production:"
 msgid "Assign"
 msgstr ""
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Cancel"
-msgstr ""
+msgstr "取消"
 
+#, fuzzy
 msgctxt "view:production:"
 msgid "Done"
-msgstr ""
+msgstr "完成"
 
 msgctxt "view:production:"
 msgid "Draft"
@@ -665,14 +753,6 @@ msgid "Other Info"
 msgstr ""
 
 msgctxt "view:production:"
-msgid "Production"
-msgstr ""
-
-msgctxt "view:production:"
-msgid "Productions"
-msgstr ""
-
-msgctxt "view:production:"
 msgid "Reset to BOM"
 msgstr ""
 
@@ -684,25 +764,29 @@ msgctxt "view:production:"
 msgid "Wait"
 msgstr ""
 
+#, fuzzy
 msgctxt "wizard_button:production.assign,failed,end:"
 msgid "OK"
-msgstr ""
+msgstr "确定"
 
 msgctxt "wizard_button:production.assign,failed,force:"
 msgid "Force Assign"
 msgstr ""
 
+#, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,start,end:"
 msgid "Cancel"
-msgstr ""
+msgstr "取消"
 
+#, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,start,tree:"
 msgid "OK"
-msgstr ""
+msgstr "确定"
 
+#, fuzzy
 msgctxt "wizard_button:production.bom.tree.open,tree,end:"
 msgid "Close"
-msgstr ""
+msgstr "关闭"
 
 msgctxt "wizard_button:production.bom.tree.open,tree,start:"
 msgid "Change"
diff --git a/product.py b/product.py
index a2a3f3a..7edc6c3 100644
--- a/product.py
+++ b/product.py
@@ -1,13 +1,11 @@
 # This file is part of Tryton.  The COPYRIGHT file at the top level of
 # this repository contains the full copyright notices and license terms.
-from sql import Null
-from sql.conditionals import Case
-
-from trytond.model import ModelView, ModelSQL, fields
+from trytond.model import ModelView, ModelSQL, MatchMixin, fields, \
+    sequence_ordered
 from trytond.pyson import Eval, Get, If, Bool
 from trytond.pool import PoolMeta
 
-__all__ = ['Product', 'ProductBom']
+__all__ = ['Product', 'ProductBom', 'ProductionLeadTime']
 
 
 class Product:
@@ -22,6 +20,14 @@ class Product:
                         'type', 'service').in_(['service', None]))),
             },
         depends=['type'])
+    lead_times = fields.One2Many('production.lead_time',
+        'product', 'Lead Times', order=[('sequence', 'ASC'), ('id', 'ASC')],
+        states={
+            'invisible': (Eval('type', 'service').in_(['service', None])
+                & (Eval('_parent_template', {}).get(
+                        'type', 'service').in_(['service', None]))),
+            },
+        depends=['type'])
 
     @classmethod
     def __setup__(cls):
@@ -58,7 +64,7 @@ class Product:
         return super(Product, cls).copy(products, default=default)
 
 
-class ProductBom(ModelSQL, ModelView):
+class ProductBom(sequence_ordered(), ModelSQL, ModelView):
     'Product - BOM'
     __name__ = 'product.product-production.bom'
 
@@ -73,12 +79,6 @@ class ProductBom(ModelSQL, ModelView):
                     Eval('product', 0),
                     Get(Eval('_parent_product', {}), 'id', 0))),
             ], depends=['product'])
-    sequence = fields.Integer('Sequence')
-
-    @classmethod
-    def __setup__(cls):
-        super(ProductBom, cls).__setup__()
-        cls._order.insert(0, ('sequence', 'ASC'))
 
     def get_rec_name(self, name):
         return self.bom.rec_name
@@ -87,7 +87,26 @@ class ProductBom(ModelSQL, ModelView):
     def search_rec_name(cls, name, clause):
         return [('bom.rec_name',) + tuple(clause[1:])]
 
-    @staticmethod
-    def order_sequence(tables):
-        table, _ = tables[None]
-        return [Case((table.sequence == Null, 0), else_=1), table.sequence]
+
+class ProductionLeadTime(sequence_ordered(), ModelSQL, ModelView, MatchMixin):
+    'Production Lead Time'
+    __name__ = 'production.lead_time'
+
+    product = fields.Many2One('product.product', 'Product',
+        ondelete='CASCADE', select=True, required=True,
+        domain=[
+            ('type', '!=', 'service'),
+            ])
+    bom = fields.Many2One('production.bom', 'BOM', ondelete='CASCADE',
+        domain=[
+            ('output_products', '=', If(Bool(Eval('product')),
+                    Eval('product', -1),
+                    Get(Eval('_parent_product', {}), 'id', 0))),
+            ],
+        depends=['product'])
+    lead_time = fields.TimeDelta('Lead Time')
+
+    @classmethod
+    def __setup__(cls):
+        super(ProductionLeadTime, cls).__setup__()
+        cls._order.insert(0, ('product', 'ASC'))
diff --git a/product.xml b/product.xml
index 1c37b36..1e3e3ba 100644
--- a/product.xml
+++ b/product.xml
@@ -21,10 +21,63 @@ this repository contains the full copyright notices and license terms. -->
             <field name="name">product_bom_form</field>
         </record>
 
+        <record model="ir.model.access" id="access_product-bom">
+            <field name="model"
+                search="[('model', '=', 'product.product-production.bom')]"/>
+            <field name="perm_read" eval="True"/>
+            <field name="perm_write" eval="False"/>
+            <field name="perm_create" eval="False"/>
+            <field name="perm_delete" eval="False"/>
+        </record>
+        <record model="ir.model.access" id="access_product-bom_admin">
+            <field name="model"
+                search="[('model', '=', 'product.product-production.bom')]"/>
+            <field name="group" ref="group_production_admin"/>
+            <field name="perm_read" eval="True"/>
+            <field name="perm_write" eval="True"/>
+            <field name="perm_create" eval="True"/>
+            <field name="perm_delete" eval="True"/>
+        </record>
+
         <record model="ir.ui.view" id="product_view_form">
             <field name="model">product.product</field>
             <field name="inherit" ref="product.product_view_form"/>
             <field name="name">product_form</field>
         </record>
+
+        <record model="ir.ui.view" id="production_lead_time_view_list">
+            <field name="model">production.lead_time</field>
+            <field name="type">tree</field>
+            <field name="name">production_lead_time_list</field>
+        </record>
+
+        <record model="ir.ui.view"
+            id="production_lead_time_view_list_sequence">
+            <field name="model">production.lead_time</field>
+            <field name="type">tree</field>
+            <field name="name">production_lead_time_list_sequence</field>
+        </record>
+
+        <record model="ir.ui.view" id="production_lead_time_view_form">
+            <field name="model">production.lead_time</field>
+            <field name="type">form</field>
+            <field name="name">production_lead_time_form</field>
+        </record>
+
+        <record model="ir.model.access" id="access_production_lead_time">
+            <field name="model" search="[('model', '=', 'production.lead_time')]"/>
+            <field name="perm_read" eval="True"/>
+            <field name="perm_write" eval="False"/>
+            <field name="perm_create" eval="False"/>
+            <field name="perm_delete" eval="False"/>
+        </record>
+        <record model="ir.model.access" id="access_production_lead_time_admin">
+            <field name="model" search="[('model', '=', 'production.lead_time')]"/>
+            <field name="group" ref="group_production_admin"/>
+            <field name="perm_read" eval="True"/>
+            <field name="perm_write" eval="True"/>
+            <field name="perm_create" eval="True"/>
+            <field name="perm_delete" eval="True"/>
+        </record>
     </data>
 </tryton>
diff --git a/production.py b/production.py
index c663b90..965fc96 100644
--- a/production.py
+++ b/production.py
@@ -2,6 +2,8 @@
 # this repository contains the full copyright notices and license terms.
 from decimal import Decimal
 
+from sql import Null
+
 from trytond.model import ModelView, ModelSQL, Workflow, fields
 from trytond.wizard import Wizard, StateTransition, StateView, Button
 from trytond.pyson import Eval, Bool, If, Id
@@ -38,6 +40,17 @@ class Production(Workflow, ModelSQL, ModelView):
             'readonly': Eval('state').in_(['cancel', 'done']),
             },
         depends=['state'])
+    planned_start_date = fields.Date('Planned Start Date',
+        states={
+            'readonly': ~Eval('state').in_(['request', 'draft']),
+            'required': Bool(Eval('planned_date')),
+            },
+        depends=['state', 'planned_date'])
+    effective_start_date = fields.Date('Effective Start Date',
+        states={
+            'readonly': Eval('state').in_(['cancel', 'running', 'done']),
+            },
+        depends=['state'])
     company = fields.Many2One('company.company', 'Company', required=True,
         states={
             'readonly': ~Eval('state').in_(['request', 'draft']),
@@ -196,8 +209,6 @@ class Production(Workflow, ModelSQL, ModelView):
                     },
                 'assign_wizard': {
                     'invisible': Eval('state') != 'waiting',
-                    'readonly': ~Eval('groups', []).contains(
-                        Id('stock', 'group_stock')),
                     },
                 'assign_try': {},
                 'assign_force': {},
@@ -207,6 +218,7 @@ class Production(Workflow, ModelSQL, ModelView):
     def __register__(cls, module_name):
         TableHandler = backend.get('TableHandler')
         table_h = TableHandler(cls, module_name)
+        table = cls.__table__()
 
         # Migration from 3.8: rename code into number
         if table_h.column_exist('code'):
@@ -214,6 +226,14 @@ class Production(Workflow, ModelSQL, ModelView):
 
         super(Production, cls).__register__(module_name)
 
+        # Migration from 4.0: fill planned_start_date
+        cursor = Transaction().connection.cursor()
+        cursor.execute(*table.update(
+                [table.planned_start_date],
+                [table.planned_date],
+                where=(table.planned_start_date == Null)
+                & (table.planned_date != Null)))
+
     @staticmethod
     def default_state():
         return 'draft'
@@ -237,6 +257,20 @@ class Production(Workflow, ModelSQL, ModelView):
     def default_company():
         return Transaction().context.get('company')
 
+    @fields.depends('planned_date', 'product', 'bom')
+    def on_change_with_planned_start_date(self, pattern=None):
+        if self.planned_date and self.product:
+            if pattern is None:
+                pattern = {}
+            pattern.setdefault('bom', self.bom.id if self.bom else None)
+            for line in self.product.lead_times:
+                if line.match(pattern):
+                    if line.lead_time:
+                        return self.planned_date - line.lead_time
+                    else:
+                        return self.planned_date
+        return self.planned_date
+
     def _move(self, from_location, to_location, company, product, uom,
             quantity):
         Move = Pool().get('stock.move')
@@ -315,8 +349,8 @@ class Production(Workflow, ModelSQL, ModelView):
     @fields.depends(*BOM_CHANGES)
     def on_change_product(self):
         if self.product:
-            uoms = self.product.default_uom.category.uoms
-            if (not self.uom or self.uom not in uoms):
+            category = self.product.default_uom.category
+            if not self.uom or self.uom.category != category:
                 self.uom = self.product.default_uom
                 self.unit_digits = self.product.default_uom.digits
         else:
@@ -486,7 +520,7 @@ class Production(Workflow, ModelSQL, ModelView):
 
     def _get_move_planned_date(self):
         "Return the planned dates for input and output moves"
-        return self.planned_date, self.planned_date
+        return self.planned_start_date, self.planned_date
 
     def _set_move_planned_date(self):
         "Set planned date of moves for the shipments"
@@ -541,7 +575,11 @@ class Production(Workflow, ModelSQL, ModelView):
     def run(cls, productions):
         pool = Pool()
         Move = pool.get('stock.move')
+        Date = pool.get('ir.date')
         Move.do([m for p in productions for m in p.inputs])
+        cls.write([p for p in productions if not p.effective_start_date], {
+                'effective_start_date': Date.today(),
+                })
 
     @classmethod
     @ModelView.button
diff --git a/production.xml b/production.xml
index f926692..3ab0e2f 100644
--- a/production.xml
+++ b/production.xml
@@ -93,6 +93,7 @@ this repository contains the full copyright notices and license terms. -->
             <field name="name">Requests</field>
             <field name="sequence" eval="10"/>
             <field name="domain" eval="[('state', '=', 'request')]" pyson="1"/>
+            <field name="count" eval="True"/>
             <field name="act_window" ref="act_production_list"/>
         </record>
         <record model="ir.action.act_window.domain"
@@ -100,6 +101,7 @@ this repository contains the full copyright notices and license terms. -->
             <field name="name">Draft</field>
             <field name="sequence" eval="20"/>
             <field name="domain" eval="[('state', '=', 'draft')]" pyson="1"/>
+            <field name="count" eval="True"/>
             <field name="act_window" ref="act_production_list"/>
         </record>
         <record model="ir.action.act_window.domain"
@@ -107,6 +109,7 @@ this repository contains the full copyright notices and license terms. -->
             <field name="name">Waiting</field>
             <field name="sequence" eval="30"/>
             <field name="domain" eval="[('state', '=', 'waiting')]" pyson="1"/>
+            <field name="count" eval="True"/>
             <field name="act_window" ref="act_production_list"/>
         </record>
         <record model="ir.action.act_window.domain"
@@ -114,6 +117,7 @@ this repository contains the full copyright notices and license terms. -->
             <field name="name">Assigned</field>
             <field name="sequence" eval="30"/>
             <field name="domain" eval="[('state', '=', 'assigned')]" pyson="1"/>
+            <field name="count" eval="True"/>
             <field name="act_window" ref="act_production_list"/>
         </record>
         <record model="ir.action.act_window.domain"
@@ -121,6 +125,7 @@ this repository contains the full copyright notices and license terms. -->
             <field name="name">Running</field>
             <field name="sequence" eval="30"/>
             <field name="domain" eval="[('state', '=', 'running')]" pyson="1"/>
+            <field name="count" eval="True"/>
             <field name="act_window" ref="act_production_list"/>
         </record>
         <record model="ir.action.act_window.domain"
@@ -277,6 +282,16 @@ this repository contains the full copyright notices and license terms. -->
             <field name="group" ref="stock.group_stock_force_assignment"/>
         </record>
 
+        <record model="ir.model.button" id="production_assign_wizard_button">
+            <field name="name">assign_wizard</field>
+            <field name="model" search="[('model', '=', 'production')]"/>
+        </record>
+        <record model="ir.model.button-res.group"
+                id="production_assign_wizard_button_group_stock">
+            <field name="button" ref="production_assign_wizard_button"/>
+            <field name="group" ref="stock.group_stock"/>
+        </record>
+
         <record model="ir.ui.view" id="assign_failed_view_form">
             <field name="model">production.assign.failed</field>
             <field name="type">form</field>
diff --git a/setup.py b/setup.py
index e5e50c1..487145f 100644
--- a/setup.py
+++ b/setup.py
@@ -96,6 +96,7 @@ setup(name=name,
         'Natural Language :: German',
         'Natural Language :: Hungarian',
         'Natural Language :: Italian',
+        'Natural Language :: Polish',
         'Natural Language :: Portuguese (Brazilian)',
         'Natural Language :: Russian',
         'Natural Language :: Slovenian',
diff --git a/stock.py b/stock.py
index 724e013..abdf7ca 100644
--- a/stock.py
+++ b/stock.py
@@ -37,7 +37,7 @@ class Move:
 
     def set_effective_date(self):
         if not self.effective_date and self.production_input:
-            self.effective_date = self.production_input.effective_date
+            self.effective_date = self.production_input.effective_start_date
         if not self.effective_date and self.production_output:
             self.effective_date = self.production_output.effective_date
         super(Move, self).set_effective_date()
diff --git a/tests/scenario_production.rst b/tests/scenario_production.rst
index 6165f5f..48deddf 100644
--- a/tests/scenario_production.rst
+++ b/tests/scenario_production.rst
@@ -7,35 +7,24 @@ Imports::
     >>> import datetime
     >>> from dateutil.relativedelta import relativedelta
     >>> from decimal import Decimal
-    >>> from proteus import config, Model, Wizard
+    >>> from proteus import Model, Wizard
+    >>> from trytond.tests.tools import activate_modules
     >>> from trytond.modules.company.tests.tools import create_company, \
     ...     get_company
     >>> from trytond.modules.production.production import BOM_CHANGES
     >>> today = datetime.date.today()
     >>> yesterday = today - relativedelta(days=1)
-
-Create database::
-
-    >>> config = config.set_trytond()
-    >>> config.pool.test = True
+    >>> before_yesterday = yesterday - relativedelta(days=1)
 
 Install production Module::
 
-    >>> Module = Model.get('ir.module')
-    >>> module, = Module.find([('name', '=', 'production')])
-    >>> module.click('install')
-    >>> Wizard('ir.module.install_upgrade').execute('upgrade')
+    >>> config = activate_modules('production')
 
 Create company::
 
     >>> _ = create_company()
     >>> company = get_company()
 
-Reload the context::
-
-    >>> User = Model.get('res.user')
-    >>> config._context = User.get_preferences(True, config.context)
-
 Create product::
 
     >>> ProductUom = Model.get('product.uom')
@@ -104,6 +93,13 @@ Create Bill of Material::
     >>> product.boms.append(ProductBom(bom=bom))
     >>> product.save()
 
+    >>> ProductionLeadTime = Model.get('production.lead_time')
+    >>> production_lead_time = ProductionLeadTime()
+    >>> production_lead_time.product = product
+    >>> production_lead_time.bom = bom
+    >>> production_lead_time.lead_time = datetime.timedelta(1)
+    >>> production_lead_time.save()
+
 Create an Inventory::
 
     >>> Inventory = Model.get('stock.inventory')
@@ -130,9 +126,12 @@ Make a production::
 
     >>> Production = Model.get('production')
     >>> production = Production()
+    >>> production.planned_date = today
     >>> production.product = product
     >>> production.bom = bom
     >>> production.quantity = 2
+    >>> production.planned_start_date == yesterday
+    True
     >>> sorted([i.quantity for i in production.inputs]) == [10, 300]
     True
     >>> output, = production.outputs
@@ -177,11 +176,12 @@ Do the production::
     >>> product.quantity == 2
     True
 
-Make a production with effective date yesterday::
+Make a production with effective date yesterday and running the day before::
 
     >>> Production = Model.get('production')
     >>> production = Production()
     >>> production.effective_date = yesterday
+    >>> production.effective_start_date = before_yesterday
     >>> production.product = product
     >>> production.bom = bom
     >>> production.quantity = 2
@@ -190,7 +190,7 @@ Make a production with effective date yesterday::
     True
     >>> production.click('run')
     >>> production.reload()
-    >>> all(i.effective_date == yesterday for i in production.inputs)
+    >>> all(i.effective_date == before_yesterday for i in production.inputs)
     True
     >>> production.click('done')
     >>> production.reload()
diff --git a/tests/test_production.py b/tests/test_production.py
index 790cf7a..0adcffc 100644
--- a/tests/test_production.py
+++ b/tests/test_production.py
@@ -2,23 +2,52 @@
 # this repository contains the full copyright notices and license terms.
 import unittest
 import doctest
+import datetime
+
 import trytond.tests.test_tryton
-from trytond.tests.test_tryton import ModuleTestCase
-from trytond.tests.test_tryton import doctest_setup, doctest_teardown
+from trytond.tests.test_tryton import ModuleTestCase, with_transaction
+from trytond.tests.test_tryton import doctest_teardown
 from trytond.tests.test_tryton import doctest_checker
+from trytond.pool import Pool
 
 
 class ProductionTestCase(ModuleTestCase):
     'Test Production module'
     module = 'production'
 
+    @with_transaction()
+    def test_on_change_with_planned_start_date(self):
+        "Test on_change_with_planned_start_date"
+        pool = Pool()
+        Production = pool.get('production')
+        Product = pool.get('product.product')
+        LeadTime = pool.get('production.lead_time')
+
+        date = datetime.date(2016, 11, 26)
+        product = Product()
+        product.lead_times = []
+        production = Production()
+        production.planned_date = date
+        production.product = product
+
+        self.assertEqual(production.on_change_with_planned_start_date(), date)
+
+        lead_time = LeadTime(bom=None, lead_time=None)
+        product.lead_times = [lead_time]
+        self.assertEqual(production.on_change_with_planned_start_date(), date)
+
+        lead_time.lead_time = datetime.timedelta(1)
+        self.assertEqual(
+            production.on_change_with_planned_start_date(),
+            datetime.date(2016, 11, 25))
+
 
 def suite():
     suite = trytond.tests.test_tryton.suite()
     suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
             ProductionTestCase))
     suite.addTests(doctest.DocFileSuite('scenario_production.rst',
-        setUp=doctest_setup, tearDown=doctest_teardown, encoding='utf-8',
+            tearDown=doctest_teardown, encoding='utf-8',
             checker=doctest_checker,
             optionflags=doctest.REPORT_ONLY_FIRST_FAILURE))
     return suite
diff --git a/tryton.cfg b/tryton.cfg
index 0d4f8fc..6fe7df1 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=4.0.1
+version=4.2.0
 depends:
     company
     ir
diff --git a/trytond_production.egg-info/PKG-INFO b/trytond_production.egg-info/PKG-INFO
index 1cebb13..ee19b52 100644
--- a/trytond_production.egg-info/PKG-INFO
+++ b/trytond_production.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond-production
-Version: 4.0.1
+Version: 4.2.0
 Summary: Tryton module for production
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/4.0/
+Download-URL: http://downloads.tryton.org/4.2/
 Description: trytond_production
         ==================
         
@@ -63,6 +63,7 @@ Classifier: Natural Language :: French
 Classifier: Natural Language :: German
 Classifier: Natural Language :: Hungarian
 Classifier: Natural Language :: Italian
+Classifier: Natural Language :: Polish
 Classifier: Natural Language :: Portuguese (Brazilian)
 Classifier: Natural Language :: Russian
 Classifier: Natural Language :: Slovenian
diff --git a/trytond_production.egg-info/SOURCES.txt b/trytond_production.egg-info/SOURCES.txt
index ad60af4..e4e6a5f 100644
--- a/trytond_production.egg-info/SOURCES.txt
+++ b/trytond_production.egg-info/SOURCES.txt
@@ -23,25 +23,23 @@ tryton.cfg
 ./stock.py
 ./stock.xml
 ./tryton.cfg
-./locale/bg_BG.po
-./locale/ca_ES.po
-./locale/cs_CZ.po
-./locale/de_DE.po
-./locale/es_AR.po
-./locale/es_CO.po
-./locale/es_EC.po
-./locale/es_ES.po
-./locale/es_MX.po
-./locale/fr_FR.po
+./locale/bg.po
+./locale/ca.po
+./locale/cs.po
+./locale/de.po
+./locale/es.po
+./locale/es_419.po
+./locale/fr.po
 ./locale/hu_HU.po
 ./locale/it_IT.po
 ./locale/ja_JP.po
-./locale/lo_LA.po
-./locale/lt_LT.po
-./locale/nl_NL.po
+./locale/lo.po
+./locale/lt.po
+./locale/nl.po
+./locale/pl.po
 ./locale/pt_BR.po
-./locale/ru_RU.po
-./locale/sl_SI.po
+./locale/ru.po
+./locale/sl.po
 ./locale/zh_CN.po
 ./tests/__init__.py
 ./tests/scenario_production.rst
@@ -64,27 +62,28 @@ tryton.cfg
 ./view/product_form.xml
 ./view/production_calendar.xml
 ./view/production_form.xml
+./view/production_lead_time_form.xml
+./view/production_lead_time_list.xml
+./view/production_lead_time_list_sequence.xml
 ./view/production_list.xml
 doc/index.rst
-locale/bg_BG.po
-locale/ca_ES.po
-locale/cs_CZ.po
-locale/de_DE.po
-locale/es_AR.po
-locale/es_CO.po
-locale/es_EC.po
-locale/es_ES.po
-locale/es_MX.po
-locale/fr_FR.po
+locale/bg.po
+locale/ca.po
+locale/cs.po
+locale/de.po
+locale/es.po
+locale/es_419.po
+locale/fr.po
 locale/hu_HU.po
 locale/it_IT.po
 locale/ja_JP.po
-locale/lo_LA.po
-locale/lt_LT.po
-locale/nl_NL.po
+locale/lo.po
+locale/lt.po
+locale/nl.po
+locale/pl.po
 locale/pt_BR.po
-locale/ru_RU.po
-locale/sl_SI.po
+locale/ru.po
+locale/sl.po
 locale/zh_CN.po
 tests/scenario_production.rst
 trytond_production.egg-info/PKG-INFO
@@ -112,4 +111,7 @@ view/product_bom_list_sequence.xml
 view/product_form.xml
 view/production_calendar.xml
 view/production_form.xml
+view/production_lead_time_form.xml
+view/production_lead_time_list.xml
+view/production_lead_time_list_sequence.xml
 view/production_list.xml
\ No newline at end of file
diff --git a/trytond_production.egg-info/requires.txt b/trytond_production.egg-info/requires.txt
index 08080f6..3f99a9a 100644
--- a/trytond_production.egg-info/requires.txt
+++ b/trytond_production.egg-info/requires.txt
@@ -1,5 +1,5 @@
 python-sql >= 0.4
-trytond_company >= 4.0, < 4.1
-trytond_product >= 4.0, < 4.1
-trytond_stock >= 4.0, < 4.1
-trytond >= 4.0, < 4.1
+trytond_company >= 4.2, < 4.3
+trytond_product >= 4.2, < 4.3
+trytond_stock >= 4.2, < 4.3
+trytond >= 4.2, < 4.3
diff --git a/view/assign_failed_form.xml b/view/assign_failed_form.xml
index 227b354..e93625a 100644
--- a/view/assign_failed_form.xml
+++ b/view/assign_failed_form.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<form string="Unable to Assign" col="2">
+<form col="2">
     <image name="tryton-dialog-warning" xexpand="0" xfill="0"/>
     <separator string="Unable to assign those products:"
         id="unable"/>
diff --git a/view/bom_form.xml b/view/bom_form.xml
index e13af0d..c05992e 100644
--- a/view/bom_form.xml
+++ b/view/bom_form.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<form string="BOM">
+<form>
     <label name="name"/>
     <field name="name"/>
     <label name="active"/>
diff --git a/view/bom_input_form.xml b/view/bom_input_form.xml
index 69d9052..a68bc12 100644
--- a/view/bom_input_form.xml
+++ b/view/bom_input_form.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<form string="BOM Inputs">
+<form>
     <label name="bom"/>
     <field name="bom"/>
     <newline/>
diff --git a/view/bom_input_list.xml b/view/bom_input_list.xml
index 393b793..b967791 100644
--- a/view/bom_input_list.xml
+++ b/view/bom_input_list.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<tree string="BOM Inputs">
+<tree>
     <field name="bom"/>
     <field name="product"/>
     <field name="quantity"/>
diff --git a/view/bom_list.xml b/view/bom_list.xml
index d0661b6..193e708 100644
--- a/view/bom_list.xml
+++ b/view/bom_list.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<tree string="BOMs">
+<tree>
     <field name="name"/>
     <field name="active"/>
 </tree>
diff --git a/view/bom_output_form.xml b/view/bom_output_form.xml
index fbe8df4..a68bc12 100644
--- a/view/bom_output_form.xml
+++ b/view/bom_output_form.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<form string="BOM Outputs">
+<form>
     <label name="bom"/>
     <field name="bom"/>
     <newline/>
diff --git a/view/bom_output_list.xml b/view/bom_output_list.xml
index f364302..b967791 100644
--- a/view/bom_output_list.xml
+++ b/view/bom_output_list.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<tree string="BOM Outputs">
+<tree>
     <field name="bom"/>
     <field name="product"/>
     <field name="quantity"/>
diff --git a/view/bom_tree_open_start_form.xml b/view/bom_tree_open_start_form.xml
index abee32c..82b2088 100644
--- a/view/bom_tree_open_start_form.xml
+++ b/view/bom_tree_open_start_form.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<form string="BOM Tree">
+<form>
     <label name="bom"/>
     <field name="bom"/>
     <newline/>
diff --git a/view/bom_tree_open_tree_form.xml b/view/bom_tree_open_tree_form.xml
index cf48143..e91df47 100644
--- a/view/bom_tree_open_tree_form.xml
+++ b/view/bom_tree_open_tree_form.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<form string="BOM Tree">
+<form>
     <field name="bom_tree"/>
 </form>
diff --git a/view/bom_tree_tree.xml b/view/bom_tree_tree.xml
index 4bbd3fa..de868ae 100644
--- a/view/bom_tree_tree.xml
+++ b/view/bom_tree_tree.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<tree string="BOM Tree">
+<tree>
     <field name="product"/>
     <field name="quantity"/>
     <field name="uom"/>
diff --git a/view/configuration_form.xml b/view/configuration_form.xml
index 012f66e..ddce348 100644
--- a/view/configuration_form.xml
+++ b/view/configuration_form.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<form string="Production Configuration">
+<form>
     <label name="production_sequence"/>
     <field name="production_sequence"/>
 </form>
diff --git a/view/location_form.xml b/view/location_form.xml
index 2cb4876..0f8c1fd 100644
--- a/view/location_form.xml
+++ b/view/location_form.xml
@@ -2,9 +2,10 @@
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
 <data>
-    <xpath expr="/form/field[@name='storage_location']" position="after">
+    <xpath expr="/form" position="inside">
         <newline/>
         <label name="production_location"/>
         <field name="production_location"/>
+        <newline/>
     </xpath>
 </data>
diff --git a/view/product_bom_form.xml b/view/product_bom_form.xml
index e7cf7a9..812492c 100644
--- a/view/product_bom_form.xml
+++ b/view/product_bom_form.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<form string="Product - BOM">
+<form>
     <label name="product"/>
     <field name="product" colspan="3"/>
     <label name="sequence"/>
diff --git a/view/product_bom_list.xml b/view/product_bom_list.xml
index 0d0dac0..3f368c7 100644
--- a/view/product_bom_list.xml
+++ b/view/product_bom_list.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<tree string="Product - BOMs">
+<tree>
     <field name="product"/>
     <field name="bom"/>
 </tree>
diff --git a/view/product_bom_list_sequence.xml b/view/product_bom_list_sequence.xml
index d2605d7..75fc008 100644
--- a/view/product_bom_list_sequence.xml
+++ b/view/product_bom_list_sequence.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<tree string="Product - BOMs" sequence="sequence">
+<tree sequence="sequence">
     <field name="bom"/>
     <field name="sequence" tree_invisible="1"/>
 </tree>
diff --git a/view/product_form.xml b/view/product_form.xml
index f23d9c2..aed74c0 100644
--- a/view/product_form.xml
+++ b/view/product_form.xml
@@ -3,9 +3,11 @@
 this repository contains the full copyright notices and license terms. -->
 <data>
     <xpath expr="/form/notebook" position="inside">
-        <page name="boms">
+        <page string="Production" id="production">
             <field name="boms" colspan="4"
                 view_ids="production.product-bom_view_list_sequence"/>
+            <field name="lead_times" colspan="4"
+                view_ids="production.production_lead_time_view_list_sequence"/>
         </page>
     </xpath>
 </data>
diff --git a/view/production_calendar.xml b/view/production_calendar.xml
index c57ec81..79e2c27 100644
--- a/view/production_calendar.xml
+++ b/view/production_calendar.xml
@@ -1,7 +1,9 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<calendar string="Productions" dtstart="planned_date">
+<calendar
+    dtstart="planned_start_date"
+    dtend="planned_date">
     <field name="number"/>
     <field name="product"/>
     <field name="reference"/>
diff --git a/view/production_form.xml b/view/production_form.xml
index a4c8125..7fad41e 100644
--- a/view/production_form.xml
+++ b/view/production_form.xml
@@ -1,15 +1,15 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<form string="Production" cursor="planned_date">
+<form cursor="planned_date">
     <label name="reference"/>
     <field name="reference"/>
     <label name="number"/>
     <field name="number"/>
     <label name="planned_date"/>
     <field name="planned_date"/>
-    <label name="effective_date"/>
-    <field name="effective_date"/>
+    <label name="planned_start_date"/>
+    <field name="planned_start_date"/>
     <label name="product"/>
     <field name="product"/>
     <label name="bom"/>
@@ -31,6 +31,10 @@ this repository contains the full copyright notices and license terms. -->
             <field name="warehouse"/>
             <label name="location"/>
             <field name="location"/>
+            <label name="effective_date"/>
+            <field name="effective_date"/>
+            <label name="effective_start_date"/>
+            <field name="effective_start_date"/>
             <label name="cost"/>
             <field name="cost"/>
         </page>
diff --git a/view/product_bom_form.xml b/view/production_lead_time_form.xml
similarity index 82%
copy from view/product_bom_form.xml
copy to view/production_lead_time_form.xml
index e7cf7a9..973d3a6 100644
--- a/view/product_bom_form.xml
+++ b/view/production_lead_time_form.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<form string="Product - BOM">
+<form>
     <label name="product"/>
     <field name="product" colspan="3"/>
     <label name="sequence"/>
@@ -9,4 +9,7 @@ this repository contains the full copyright notices and license terms. -->
     <newline/>
     <label name="bom"/>
     <field name="bom" widget="selection"/>
+    <newline/>
+    <label name="lead_time"/>
+    <field name="lead_time"/>
 </form>
diff --git a/view/product_bom_list.xml b/view/production_lead_time_list.xml
similarity index 86%
copy from view/product_bom_list.xml
copy to view/production_lead_time_list.xml
index 0d0dac0..704668c 100644
--- a/view/product_bom_list.xml
+++ b/view/production_lead_time_list.xml
@@ -1,7 +1,8 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<tree string="Product - BOMs">
+<tree>
     <field name="product"/>
     <field name="bom"/>
+    <field name="lead_time"/>
 </tree>
diff --git a/view/product_bom_list.xml b/view/production_lead_time_list_sequence.xml
similarity index 60%
copy from view/product_bom_list.xml
copy to view/production_lead_time_list_sequence.xml
index 0d0dac0..6da78a4 100644
--- a/view/product_bom_list.xml
+++ b/view/production_lead_time_list_sequence.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<tree string="Product - BOMs">
-    <field name="product"/>
-    <field name="bom"/>
+<tree sequence="sequence" editable="bottom">
+    <field name="bom" widget="selection"/>
+    <field name="lead_time"/>
 </tree>
diff --git a/view/production_list.xml b/view/production_list.xml
index c36462c..a64e85a 100644
--- a/view/production_list.xml
+++ b/view/production_list.xml
@@ -1,13 +1,13 @@
 <?xml version="1.0"?>
 <!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
 this repository contains the full copyright notices and license terms. -->
-<tree string="Productions">
+<tree>
     <field name="number"/>
     <field name="reference"/>
     <field name="product"/>
     <field name="quantity"/>
     <field name="uom"/>
+    <field name="planned_start_date"/>
     <field name="planned_date"/>
-    <field name="effective_date"/>
     <field name="state"/>
 </tree>
-- 
tryton-modules-production



More information about the tryton-debian-vcs mailing list