[IMP] mrp_production_estimated_cost: Adaptation to OCA

This commit is contained in:
Pedro M. Baeza
2015-12-08 20:44:15 +01:00
committed by Oihane Crucelaegui
parent 72fdc29887
commit 72402ea265
47 changed files with 2803 additions and 2786 deletions

View File

@@ -0,0 +1,98 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
=======================================
Estimated costs in manufacturing orders
=======================================
This module extends the functionality of MRP adding estimates for Manufacturing
Orders costs, as followed:
* Raw Material cost: for each material to be consumed in the MO, an analytic
line is generated at product cos
* Operators time: for the time recorded by the operators during each operation,
one analytic line will be generated (number of lines to be equal to the
number of operators).
* Machine time: for each operation, one analytic line will be created in the
associated routing, taking whether the hourly cost or, if missing, the cost
per cycle.
This module also allows to create some manufacturing orders called "virtual",
that don't permit to be confirmed, but include the buttons for estimating the
costs of the selected manufactured product.
Installation
============
This module depends on the module *product_variant_cost_price*, that is
available in:
https://github.com/OCA/product-variant
Usage
=====
When the manufacturing order is confirmed, analytic lines
are automatically generated in order to estimate the costs of the production
A new menu is available "Virtual Manufacturing Orders for cost estimation"
where the user can managed virtual MO:
* When a new MO is created and the new field "active" is false, the MO will be
considered virtual. It is only used for cost estimation and can not be
confirmed.
* To estimate the cost of the MO, the user has to press the button "Compute
data" in the tab "Work Orders".
* These virtual MO have a separate sequence number.
* The user can create a virtual MO directly from the product form.
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/129/8.0
Bug Tracker
===========
Bugs are tracked on `GitHub Issues
<https://github.com/OCA/manufacture/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smashing it by providing a detailed and welcomed `feedback
<https://github.com/OCA/
manufacture/issues/new?body=module:%20
mrp_production_estimated_cost%0Aversion:%20
8.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Credits
=======
Contributors
------------
* Alfredo de la Fuente <alfredodelafuente@avanzosc.es>
* Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>
* Ana Juaristi <ajuaristio@gmail.com>
* Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>
* Ainara Galdona <agaldona@avanzosc.es>
Images
------
* Original Odoo MRP icon
* Thanks to https://openclipart.org/detail/120511/budget
Maintainer
----------
.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org
This module is maintained by the OCA.
OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
To contribute to this module, please visit https://odoo-community.org.

View File

@@ -0,0 +1,7 @@
# -*- coding: utf-8 -*-
# (c) 2014-2015 Avanzosc
# (c) 2014-2015 Pedro M. Baeza
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from . import models
from . import wizard

View File

@@ -0,0 +1,37 @@
# -*- coding: utf-8 -*-
# (c) 2014-2015 Avanzosc
# (c) 2014-2015 Pedro M. Baeza
# (c) 2015 Antiun Ingeniería
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
{
"name": "Estimated costs in manufacturing orders",
"version": "8.0.1.0.0",
"category": "Manufacturing",
"author": "OdooMRP team, "
"AvanzOSC, "
"Serv. Tecnol. Avanzados - Pedro M. Baeza, "
"Antiun Ingenería S.L.,"
"Odoo Community Association (OCA)",
"website": "http://www.odoomrp.com",
"contributors": [
"Alfredo de la Fuente <alfredodelafuente@avanzosc.es>",
"Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>",
"Ana Juaristi <ajuaristio@gmail.com>",
"Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>",
],
"depends": [
"mrp_operations_project",
"product_variant_cost_price",
],
"data": [
"data/analytic_journal_data.xml",
"data/virtual_mrp_production_sequence.xml",
"wizard/wiz_create_virtual_mo_view.xml",
"views/account_analytic_line_view.xml",
"views/mrp_production_view.xml",
"views/product_view.xml",
],
"installable": True,
"license": "AGPL-3",
}

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data noupdate="1">
<record id="virtual_mrp_production_code" model="ir.sequence.type">
<field name="name">Virtual MRP Production</field>
<field name="code">virtual.mrp.production</field>
</record>
<record id="virtual_mrp_production" model="ir.sequence">
<field name="name">Virtual MRP Production</field>
<field name="code">virtual.mrp.production</field>
<field eval="6" name="padding"/>
<field name="prefix">VMO</field>
</record>
</data>
</openerp>

View File

@@ -0,0 +1,279 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_production_estimated_cost
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: odoomrp-wip (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-20 18:10+0000\n"
"PO-Revision-Date: 2015-11-20 18:13+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Spanish (http://www.transifex.com/oca/odoomrp-wip-8-0/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:240
#, python-format
msgid "%s-%s Post-operation"
msgstr "%s-%s Post-operación"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:224
#, python-format
msgid "%s-%s Pre-operation"
msgstr "%s-%s Pre-operación"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:256
#, python-format
msgid "%s-%s-C-%s"
msgstr "%s-%s-C-%s"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:274
#, python-format
msgid "%s-%s-H-%s"
msgstr "%s-%s-H-%s"
#. module: mrp_production_estimated_cost
#: field:mrp.production,active:0
msgid "Active"
msgstr "Activa"
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_account_analytic_line
msgid "Analytic Line"
msgstr "Línea analítica"
#. module: mrp_production_estimated_cost
#: field:project.project,automatic_creation:0
msgid "Automatic Creation"
msgstr "Creación automática"
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_mrp_bom
msgid "Bill of Material"
msgstr "Lista de material"
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Cancel"
msgstr "Cancelar"
#. module: mrp_production_estimated_cost
#: field:mrp.production,analytic_line_ids:0
msgid "Cost Lines"
msgstr "Líneas de costes"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Costs analysis"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Create Estimated Costs"
msgstr "Crear costes estimados"
#. module: mrp_production_estimated_cost
#: view:product.product:mrp_production_estimated_cost.product_product_form_view_bom_button_inh_estimatedcost
#: view:product.template:mrp_production_estimated_cost.product_template_form_view_bom_button_inh_estimatedcost
msgid "Create Fictitious MO"
msgstr "Crea OF ficticia"
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.act_product_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_run_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_run_template_create_fictitious_of
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitious MO"
msgstr "CrearOF ficticia"
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitius MO"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,create_date:0
msgid "Created on"
msgstr "Creado el"
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. AVG"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. STD"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:account.analytic.line,estim_avg_cost:0
#: field:mrp.production,avg_cost:0
msgid "Estimated Average Cost"
msgstr "Coste medio estimado"
#. module: mrp_production_estimated_cost
#: field:mrp.production,unit_avg_cost:0
msgid "Estimated Average Unit Cost"
msgstr "Coste medio estimado por unidad"
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
msgid "Estimated Costs"
msgstr "Costes estimados"
#. module: mrp_production_estimated_cost
#: field:account.analytic.line,estim_std_cost:0
#: field:mrp.production,std_cost:0
msgid "Estimated Standard Cost"
msgstr "Coste estándar estimado"
#. module: mrp_production_estimated_cost
#: field:mrp.production,unit_std_cost:0
msgid "Estimated Standard Unit Cost"
msgstr "Coste estándar estimado por unidad"
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_estimated_costs_per_production
msgid "Estimated costs from production order"
msgstr "Costes estimados desde orden de producción"
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.mrp_fictitious_production_action
#: model:ir.ui.menu,name:mrp_production_estimated_cost.menu_mrp_fictitious_production_action
msgid "Fictitious Manufacturing Orders to estimate costs"
msgstr "Órdenes de producción ficiticias para estimar costes"
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "General Accounting"
msgstr "Contabilidad general"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,id:0
msgid "ID"
msgstr "ID"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,write_uid:0
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,write_date:0
msgid "Last Updated on"
msgstr "Última actualización el"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Load Estimated Cost on Product"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,load_on_product:0
msgid "Load cost on product"
msgstr "Cargar coste en el producto"
#. module: mrp_production_estimated_cost
#: field:product.template,manual_standard_cost:0
msgid "Manual Standard Cost"
msgstr "Coste estándar manual"
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_mrp_production
msgid "Manufacturing Order"
msgstr "Órden de producción"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Manufacturing costs"
msgstr "Costes de fabricación"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:205
#, python-format
msgid "One consume line has no product assigned."
msgstr "Una de las líneas de consumo no tiene producto asignado."
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_product_template
msgid "Product Template"
msgstr "Plantilla de producto"
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_show_production_anaytic_lines
msgid "Production Analytic Lines"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Production Costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "Production Information"
msgstr "Información de la fabricación"
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_project_project
#: field:wiz.create.fictitious.of,project_id:0
msgid "Project"
msgstr "Proyecto"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,date_planned:0
msgid "Scheduled Date"
msgstr "Fecha programada"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:254
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:271
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:289
#, python-format
msgid "There is at least this workcenter without product: %s"
msgstr "Esta máquina no tiene un producto asignado: %s"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:237
#, python-format
msgid "Workcenter '%s' doesn't have post-operation costing product."
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:221
#, python-format
msgid "Workcenter '%s' doesn't have pre-operation costing product."
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:181
#, python-format
msgid "You must define one Analytic Account for this MO: %s"
msgstr "Debe definir una cuenta analítica para esta MO: %s"
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "or"
msgstr "o"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "{'invisible':['|',('active','=',False),('state','!=','draft')]}"
msgstr "{'invisible':['|',('active','=',False),('state','!=','draft')]}"

View File

@@ -0,0 +1,279 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_production_estimated_cost
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: odoomrp-wip (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-07 10:44+0000\n"
"PO-Revision-Date: 2015-10-04 00:01+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: French (http://www.transifex.com/oca/odoomrp-wip-8-0/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:207
#, python-format
msgid "%s-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:240
#, python-format
msgid "%s-%s Post-operation"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:224
#, python-format
msgid "%s-%s Pre-operation"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:292
#, python-format
msgid "%s-%s-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:256
#, python-format
msgid "%s-%s-C-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:274
#, python-format
msgid "%s-%s-H-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:mrp.production,active:0
msgid "Active"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_account_analytic_line
msgid "Analytic Line"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:project.project,automatic_creation:0
msgid "Automatic Creation"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_mrp_bom
msgid "Bill of Material"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Cancel"
msgstr "Annuler"
#. module: mrp_production_estimated_cost
#: field:mrp.production,analytic_line_ids:0
msgid "Cost Lines"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Costs analysis"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Create Estimated Costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:product.product:mrp_production_estimated_cost.product_product_form_view_bom_button_inh_estimatedcost
#: view:product.template:mrp_production_estimated_cost.product_template_form_view_bom_button_inh_estimatedcost
msgid "Create Fictitious MO"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.act_product_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_run_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_run_template_create_fictitious_of
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitious MO"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitius MO"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,create_uid:0
msgid "Created by"
msgstr "Créé par"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,create_date:0
msgid "Created on"
msgstr "Créé le"
#. module: mrp_production_estimated_cost
#: field:account.analytic.line,estim_avg_cost:0
#: field:mrp.production,avg_cost:0
msgid "Estimated Average Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:mrp.production,unit_avg_cost:0
msgid "Estimated Average Unit Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
msgid "Estimated Costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:account.analytic.line,estim_std_cost:0
#: field:mrp.production,std_cost:0
msgid "Estimated Standard Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:mrp.production,unit_std_cost:0
msgid "Estimated Standard Unit Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_estimated_costs_per_production
msgid "Estimated costs from production order"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.mrp_fictitious_production_action
#: model:ir.ui.menu,name:mrp_production_estimated_cost.menu_mrp_fictitious_production_action
msgid "Fictitious Manufacturing Orders to estimate costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "General Accounting"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,id:0
msgid "ID"
msgstr "Id."
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,write_uid:0
msgid "Last Updated by"
msgstr "Mis à jour par"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,write_date:0
msgid "Last Updated on"
msgstr "Mis à jour le"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Load Cost on Product"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,load_on_product:0
msgid "Load cost on product"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:product.template,manual_standard_cost:0
msgid "Manual Standard Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_mrp_production
msgid "Manufacturing Order"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Manufacturing costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:205
#, python-format
msgid "One consume line has no product assigned."
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_product_template
msgid "Product Template"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_show_production_anaytic_lines
msgid "Production Analytic Lines"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Production Costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "Production Information"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_project_project
#: field:wiz.create.fictitious.of,project_id:0
msgid "Project"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,date_planned:0
msgid "Scheduled Date"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:254
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:271
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:289
#, python-format
msgid "There is at least this workcenter without product: %s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:237
#, python-format
msgid "Workcenter '%s' doesn't have post-operation costing product."
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:221
#, python-format
msgid "Workcenter '%s' doesn't have pre-operation costing product."
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:181
#, python-format
msgid "You must define one Analytic Account for this MO: %s"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "or"
msgstr "ou"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "{'invisible':['|',('active','=',False),('state','!=','draft')]}"
msgstr ""

View File

@@ -0,0 +1,291 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_production_estimated_cost
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: odoomrp-wip (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-20 18:10+0000\n"
"PO-Revision-Date: 2015-11-19 16:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Italian (http://www.transifex.com/oca/odoomrp-wip-8-0/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:207
#, python-format
msgid "%s-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:240
#, python-format
msgid "%s-%s Post-operation"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:224
#, python-format
msgid "%s-%s Pre-operation"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:292
#, python-format
msgid "%s-%s-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:256
#, python-format
msgid "%s-%s-C-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:274
#, python-format
msgid "%s-%s-H-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:mrp.production,active:0
msgid "Active"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_account_analytic_line
msgid "Analytic Line"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:project.project,automatic_creation:0
msgid "Automatic Creation"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_mrp_bom
msgid "Bill of Material"
msgstr "Distinta base"
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Cancel"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:mrp.production,analytic_line_ids:0
msgid "Cost Lines"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Costs analysis"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Create Estimated Costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:product.product:mrp_production_estimated_cost.product_product_form_view_bom_button_inh_estimatedcost
#: view:product.template:mrp_production_estimated_cost.product_template_form_view_bom_button_inh_estimatedcost
msgid "Create Fictitious MO"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.act_product_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_run_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_run_template_create_fictitious_of
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitious MO"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitius MO"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,create_uid:0
msgid "Created by"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,create_date:0
msgid "Created on"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. AVG"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. STD"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:account.analytic.line,estim_avg_cost:0
#: field:mrp.production,avg_cost:0
msgid "Estimated Average Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:mrp.production,unit_avg_cost:0
msgid "Estimated Average Unit Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
msgid "Estimated Costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:account.analytic.line,estim_std_cost:0
#: field:mrp.production,std_cost:0
msgid "Estimated Standard Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:mrp.production,unit_std_cost:0
msgid "Estimated Standard Unit Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_estimated_costs_per_production
msgid "Estimated costs from production order"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.mrp_fictitious_production_action
#: model:ir.ui.menu,name:mrp_production_estimated_cost.menu_mrp_fictitious_production_action
msgid "Fictitious Manufacturing Orders to estimate costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "General Accounting"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,id:0
msgid "ID"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,write_uid:0
msgid "Last Updated by"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,write_date:0
msgid "Last Updated on"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Load Estimated Cost on Product"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,load_on_product:0
msgid "Load cost on product"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:product.template,manual_standard_cost:0
msgid "Manual Standard Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_mrp_production
msgid "Manufacturing Order"
msgstr "Ordine di produzione"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Manufacturing costs"
msgstr "Costi di produzione"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:205
#, python-format
msgid "One consume line has no product assigned."
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_product_template
msgid "Product Template"
msgstr "Template prodotto"
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_show_production_anaytic_lines
msgid "Production Analytic Lines"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Production Costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "Production Information"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_project_project
#: field:wiz.create.fictitious.of,project_id:0
msgid "Project"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,date_planned:0
msgid "Scheduled Date"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:254
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:271
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:289
#, python-format
msgid "There is at least this workcenter without product: %s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:237
#, python-format
msgid "Workcenter '%s' doesn't have post-operation costing product."
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:221
#, python-format
msgid "Workcenter '%s' doesn't have pre-operation costing product."
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:181
#, python-format
msgid "You must define one Analytic Account for this MO: %s"
msgstr "Bisogna definire un conto analitico per questo MO: %s"
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "or"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "{'invisible':['|',('active','=',False),('state','!=','draft')]}"
msgstr ""

View File

@@ -0,0 +1,291 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_production_estimated_cost
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: odoomrp-wip (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-20 18:10+0000\n"
"PO-Revision-Date: 2015-11-19 16:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/odoomrp-wip-8-0/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:207
#, python-format
msgid "%s-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:240
#, python-format
msgid "%s-%s Post-operation"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:224
#, python-format
msgid "%s-%s Pre-operation"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:292
#, python-format
msgid "%s-%s-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:256
#, python-format
msgid "%s-%s-C-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:274
#, python-format
msgid "%s-%s-H-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:mrp.production,active:0
msgid "Active"
msgstr "Ativo"
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_account_analytic_line
msgid "Analytic Line"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:project.project,automatic_creation:0
msgid "Automatic Creation"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_mrp_bom
msgid "Bill of Material"
msgstr "Lista de materiais"
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Cancel"
msgstr "Cancelar"
#. module: mrp_production_estimated_cost
#: field:mrp.production,analytic_line_ids:0
msgid "Cost Lines"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Costs analysis"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Create Estimated Costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:product.product:mrp_production_estimated_cost.product_product_form_view_bom_button_inh_estimatedcost
#: view:product.template:mrp_production_estimated_cost.product_template_form_view_bom_button_inh_estimatedcost
msgid "Create Fictitious MO"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.act_product_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_run_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_run_template_create_fictitious_of
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitious MO"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitius MO"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,create_uid:0
msgid "Created by"
msgstr "Criado por"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,create_date:0
msgid "Created on"
msgstr "Criado em"
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. AVG"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. STD"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:account.analytic.line,estim_avg_cost:0
#: field:mrp.production,avg_cost:0
msgid "Estimated Average Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:mrp.production,unit_avg_cost:0
msgid "Estimated Average Unit Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
msgid "Estimated Costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:account.analytic.line,estim_std_cost:0
#: field:mrp.production,std_cost:0
msgid "Estimated Standard Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:mrp.production,unit_std_cost:0
msgid "Estimated Standard Unit Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_estimated_costs_per_production
msgid "Estimated costs from production order"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.mrp_fictitious_production_action
#: model:ir.ui.menu,name:mrp_production_estimated_cost.menu_mrp_fictitious_production_action
msgid "Fictitious Manufacturing Orders to estimate costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "General Accounting"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,id:0
msgid "ID"
msgstr "ID"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,write_uid:0
msgid "Last Updated by"
msgstr "Última atualização por"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,write_date:0
msgid "Last Updated on"
msgstr "Última atualização em"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Load Estimated Cost on Product"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,load_on_product:0
msgid "Load cost on product"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:product.template,manual_standard_cost:0
msgid "Manual Standard Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_mrp_production
msgid "Manufacturing Order"
msgstr "Ordem de Produção"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Manufacturing costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:205
#, python-format
msgid "One consume line has no product assigned."
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_product_template
msgid "Product Template"
msgstr "Produto Modelo"
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_show_production_anaytic_lines
msgid "Production Analytic Lines"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Production Costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "Production Information"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_project_project
#: field:wiz.create.fictitious.of,project_id:0
msgid "Project"
msgstr "Projeto"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,date_planned:0
msgid "Scheduled Date"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:254
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:271
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:289
#, python-format
msgid "There is at least this workcenter without product: %s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:237
#, python-format
msgid "Workcenter '%s' doesn't have post-operation costing product."
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:221
#, python-format
msgid "Workcenter '%s' doesn't have pre-operation costing product."
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:181
#, python-format
msgid "You must define one Analytic Account for this MO: %s"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "or"
msgstr "ou"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "{'invisible':['|',('active','=',False),('state','!=','draft')]}"
msgstr ""

View File

@@ -0,0 +1,291 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_production_estimated_cost
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: odoomrp-wip (8s.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-20 18:10+0000\n"
"PO-Revision-Date: 2015-11-19 16:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Romanian (http://www.transifex.com/oca/odoomrp-wip-8-0/language/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ro\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:207
#, python-format
msgid "%s-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:240
#, python-format
msgid "%s-%s Post-operation"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:224
#, python-format
msgid "%s-%s Pre-operation"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:292
#, python-format
msgid "%s-%s-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:256
#, python-format
msgid "%s-%s-C-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:274
#, python-format
msgid "%s-%s-H-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:mrp.production,active:0
msgid "Active"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_account_analytic_line
msgid "Analytic Line"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:project.project,automatic_creation:0
msgid "Automatic Creation"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_mrp_bom
msgid "Bill of Material"
msgstr "Listă de materiale"
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Cancel"
msgstr "Anulare"
#. module: mrp_production_estimated_cost
#: field:mrp.production,analytic_line_ids:0
msgid "Cost Lines"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Costs analysis"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Create Estimated Costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:product.product:mrp_production_estimated_cost.product_product_form_view_bom_button_inh_estimatedcost
#: view:product.template:mrp_production_estimated_cost.product_template_form_view_bom_button_inh_estimatedcost
msgid "Create Fictitious MO"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.act_product_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_run_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_run_template_create_fictitious_of
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitious MO"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitius MO"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,create_uid:0
msgid "Created by"
msgstr "Creat de"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,create_date:0
msgid "Created on"
msgstr "Creat în"
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. AVG"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. STD"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:account.analytic.line,estim_avg_cost:0
#: field:mrp.production,avg_cost:0
msgid "Estimated Average Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:mrp.production,unit_avg_cost:0
msgid "Estimated Average Unit Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
msgid "Estimated Costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:account.analytic.line,estim_std_cost:0
#: field:mrp.production,std_cost:0
msgid "Estimated Standard Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:mrp.production,unit_std_cost:0
msgid "Estimated Standard Unit Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_estimated_costs_per_production
msgid "Estimated costs from production order"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.mrp_fictitious_production_action
#: model:ir.ui.menu,name:mrp_production_estimated_cost.menu_mrp_fictitious_production_action
msgid "Fictitious Manufacturing Orders to estimate costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "General Accounting"
msgstr "Contabilitate generală"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,id:0
msgid "ID"
msgstr "ID"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,write_uid:0
msgid "Last Updated by"
msgstr "Ultima actualizare de"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,write_date:0
msgid "Last Updated on"
msgstr "Ultima actualizare în"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Load Estimated Cost on Product"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,load_on_product:0
msgid "Load cost on product"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:product.template,manual_standard_cost:0
msgid "Manual Standard Cost"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_mrp_production
msgid "Manufacturing Order"
msgstr "Comandă fabricație"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Manufacturing costs"
msgstr "Costuri fabricație"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:205
#, python-format
msgid "One consume line has no product assigned."
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_product_template
msgid "Product Template"
msgstr "Produs șablon"
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_show_production_anaytic_lines
msgid "Production Analytic Lines"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Production Costs"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "Production Information"
msgstr ""
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_project_project
#: field:wiz.create.fictitious.of,project_id:0
msgid "Project"
msgstr "Proiect"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,date_planned:0
msgid "Scheduled Date"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:254
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:271
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:289
#, python-format
msgid "There is at least this workcenter without product: %s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:237
#, python-format
msgid "Workcenter '%s' doesn't have post-operation costing product."
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:221
#, python-format
msgid "Workcenter '%s' doesn't have pre-operation costing product."
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:181
#, python-format
msgid "You must define one Analytic Account for this MO: %s"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "or"
msgstr "sau"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "{'invisible':['|',('active','=',False),('state','!=','draft')]}"
msgstr ""

View File

@@ -0,0 +1,292 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_production_estimated_cost
#
# Translators:
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
msgid ""
msgstr ""
"Project-Id-Version: odoomrp-wip (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-20 18:10+0000\n"
"PO-Revision-Date: 2015-11-19 16:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Slovenian (http://www.transifex.com/oca/odoomrp-wip-8-0/language/sl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sl\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:207
#, python-format
msgid "%s-%s"
msgstr "%s-%s"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:240
#, python-format
msgid "%s-%s Post-operation"
msgstr "%s-%s po operaciji"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:224
#, python-format
msgid "%s-%s Pre-operation"
msgstr "%s-%s pred operacijo"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:292
#, python-format
msgid "%s-%s-%s"
msgstr "%s-%s-%s"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:256
#, python-format
msgid "%s-%s-C-%s"
msgstr "%s-%s-C-%s"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:274
#, python-format
msgid "%s-%s-H-%s"
msgstr "%s-%s-H-%s"
#. module: mrp_production_estimated_cost
#: field:mrp.production,active:0
msgid "Active"
msgstr "Aktivno"
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_account_analytic_line
msgid "Analytic Line"
msgstr "Analitična postavka"
#. module: mrp_production_estimated_cost
#: field:project.project,automatic_creation:0
msgid "Automatic Creation"
msgstr "Samodejno ustvarjanje"
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_mrp_bom
msgid "Bill of Material"
msgstr "Kosovnica"
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Cancel"
msgstr "Preklic"
#. module: mrp_production_estimated_cost
#: field:mrp.production,analytic_line_ids:0
msgid "Cost Lines"
msgstr "Stroškovne postavke"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Costs analysis"
msgstr "Analiza stroškov"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Create Estimated Costs"
msgstr "Ustvari oceno stroškov"
#. module: mrp_production_estimated_cost
#: view:product.product:mrp_production_estimated_cost.product_product_form_view_bom_button_inh_estimatedcost
#: view:product.template:mrp_production_estimated_cost.product_template_form_view_bom_button_inh_estimatedcost
msgid "Create Fictitious MO"
msgstr "Ustvari navidezni proizvodni nalog"
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.act_product_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_run_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_run_template_create_fictitious_of
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitious MO"
msgstr "Ustvari navidezni proizvodni nalog"
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitius MO"
msgstr "Ustvari fiktiven proizvodni nalog"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,create_uid:0
msgid "Created by"
msgstr "Ustvaril"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,create_date:0
msgid "Created on"
msgstr "Ustvarjeno"
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. AVG"
msgstr ""
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. STD"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:account.analytic.line,estim_avg_cost:0
#: field:mrp.production,avg_cost:0
msgid "Estimated Average Cost"
msgstr "Ocena povprečnih stroškov"
#. module: mrp_production_estimated_cost
#: field:mrp.production,unit_avg_cost:0
msgid "Estimated Average Unit Cost"
msgstr "Ocena povprečnega stroška enote"
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
msgid "Estimated Costs"
msgstr "Ocena stroškov"
#. module: mrp_production_estimated_cost
#: field:account.analytic.line,estim_std_cost:0
#: field:mrp.production,std_cost:0
msgid "Estimated Standard Cost"
msgstr "Ocena standardnih stroškov"
#. module: mrp_production_estimated_cost
#: field:mrp.production,unit_std_cost:0
msgid "Estimated Standard Unit Cost"
msgstr "Ocena stroška standardne enote"
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_estimated_costs_per_production
msgid "Estimated costs from production order"
msgstr "Ocena stroškov iz proizvodnega naloga"
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.mrp_fictitious_production_action
#: model:ir.ui.menu,name:mrp_production_estimated_cost.menu_mrp_fictitious_production_action
msgid "Fictitious Manufacturing Orders to estimate costs"
msgstr "Navidezni proizvodni nalogi za oceno stroškov"
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "General Accounting"
msgstr "Glavna knjiga"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,id:0
msgid "ID"
msgstr "ID"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,write_uid:0
msgid "Last Updated by"
msgstr "Zadnjič posodobil"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,write_date:0
msgid "Last Updated on"
msgstr "Zadnjič posodobljeno"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Load Estimated Cost on Product"
msgstr "Zadnja ocena stroška proizvoda"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,load_on_product:0
msgid "Load cost on product"
msgstr "Naloži strošek na proizvod"
#. module: mrp_production_estimated_cost
#: field:product.template,manual_standard_cost:0
msgid "Manual Standard Cost"
msgstr "Standardni strošek ročno"
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_mrp_production
msgid "Manufacturing Order"
msgstr "Proizvodni nalog"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Manufacturing costs"
msgstr "Proizvodni stroški"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:205
#, python-format
msgid "One consume line has no product assigned."
msgstr "Ena postavka porabe nima dodeljenega proizvoda."
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_product_template
msgid "Product Template"
msgstr "Predloga proizvoda"
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_show_production_anaytic_lines
msgid "Production Analytic Lines"
msgstr "Proizvodne analitične postavke"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Production Costs"
msgstr "Proizvodni stroški"
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "Production Information"
msgstr "Informacije o proizvodnji"
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_project_project
#: field:wiz.create.fictitious.of,project_id:0
msgid "Project"
msgstr "Projekt"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,date_planned:0
msgid "Scheduled Date"
msgstr "Načrtovani datum"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:254
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:271
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:289
#, python-format
msgid "There is at least this workcenter without product: %s"
msgstr "Vsaj ta delovni center nima proizvoda: %s"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:237
#, python-format
msgid "Workcenter '%s' doesn't have post-operation costing product."
msgstr "Delovni center '%s' nima po-operativnega stroškovnega proizvoda."
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:221
#, python-format
msgid "Workcenter '%s' doesn't have pre-operation costing product."
msgstr "Delovni center '%s' nima pred operativnega stroškovnega proizvoda."
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:181
#, python-format
msgid "You must define one Analytic Account for this MO: %s"
msgstr "Potrebno je določiti analitični konto za proizvodni nalog: %s"
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "or"
msgstr "ali"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "{'invisible':['|',('active','=',False),('state','!=','draft')]}"
msgstr "{'invisible':['|',('active','=',False),('state','!=','draft')]}"

View File

@@ -0,0 +1,278 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_production_estimated_cost
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-28 09:13+0000\n"
"PO-Revision-Date: 2015-11-28 09:13+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:207
#, python-format
msgid "%s-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:240
#, python-format
msgid "%s-%s Post-operation"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:224
#, python-format
msgid "%s-%s Pre-operation"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:292
#, python-format
msgid "%s-%s-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:256
#, python-format
msgid "%s-%s-C-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:274
#, python-format
msgid "%s-%s-H-%s"
msgstr ""
#. module: mrp_production_estimated_cost
#: field:mrp.production,active:0
msgid "Active"
msgstr "Có hiệu lực"
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_account_analytic_line
msgid "Analytic Line"
msgstr "Analytic Line"
#. module: mrp_production_estimated_cost
#: field:project.project,automatic_creation:0
msgid "Automatic Creation"
msgstr "Tạo dự động"
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_mrp_bom
msgid "Bill of Material"
msgstr "Định mức Nguyên liệu"
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Cancel"
msgstr "Hủy"
#. module: mrp_production_estimated_cost
#: field:mrp.production,analytic_line_ids:0
msgid "Cost Lines"
msgstr "Chi tiết chi phí"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Costs analysis"
msgstr "Phân tích chi phí"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Create Estimated Costs"
msgstr "Tạo chi phí dự kiến"
#. module: mrp_production_estimated_cost
#: view:product.product:mrp_production_estimated_cost.product_product_form_view_bom_button_inh_estimatedcost
#: view:product.template:mrp_production_estimated_cost.product_template_form_view_bom_button_inh_estimatedcost
msgid "Create Fictitious MO"
msgstr "Tạo Lệnh sản xuất giả lập"
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.act_product_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_run_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_run_template_create_fictitious_of
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitious MO"
msgstr "Tạo Lệnh sản xuất giả lập"
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitius MO"
msgstr "Tạo Lệnh sản xuất giả lập"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,create_uid:0
msgid "Created by"
msgstr "Tạo bởi"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,create_date:0
msgid "Created on"
msgstr "Tạo vào"
#. module: mrp_production_estimated_cost
#: field:account.analytic.line,estim_avg_cost:0
#: field:mrp.production,avg_cost:0
msgid "Estimated Average Cost"
msgstr "Chi phí trung bình dự kiến"
#. module: mrp_production_estimated_cost
#: field:mrp.production,unit_avg_cost:0
msgid "Estimated Average Unit Cost"
msgstr "Chi phí đơn vị trung bình dự kiến"
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.estimated_cost_list_view
msgid "Estimated Costs"
msgstr "Chi phí dự kiến"
#. module: mrp_production_estimated_cost
#: field:account.analytic.line,estim_std_cost:0
#: field:mrp.production,std_cost:0
msgid "Estimated Standard Cost"
msgstr "Chi phí tiêu chuẩn dự kiến"
#. module: mrp_production_estimated_cost
#: field:mrp.production,unit_std_cost:0
msgid "Estimated Standard Unit Cost"
msgstr "Chi phí đơn vị tiêu chuẩn dự kiến"
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_estimated_costs_per_production
msgid "Estimated costs from production order"
msgstr "Chi phí dự kiến từ các lệnh sản xuất"
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.mrp_fictitious_production_action
#: model:ir.ui.menu,name:mrp_production_estimated_cost.menu_mrp_fictitious_production_action
msgid "Fictitious Manufacturing Orders to estimate costs"
msgstr "Lệnh sản xuất giả lập để dự toán chi phí"
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "General Accounting"
msgstr "Kế toán Tổng hợp"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,id:0
msgid "ID"
msgstr "ID"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,write_uid:0
msgid "Last Updated by"
msgstr "Cập nhật lần cuối bởi"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,write_date:0
msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Load Estimated Cost on Product"
msgstr "Load Estimated Cost on Product"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,load_on_product:0
msgid "Load cost on product"
msgstr "Lấy giá vốn từ sản phẩm"
#. module: mrp_production_estimated_cost
#: field:product.template,manual_standard_cost:0
msgid "Manual Standard Cost"
msgstr "Giá tiêu chuẩn (tính thủ công)"
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_mrp_production
msgid "Manufacturing Order"
msgstr "Lệnh sản xuất"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Manufacturing costs"
msgstr "Chi phí sản xuất"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:205
#, python-format
msgid "One consume line has no product assigned."
msgstr "Một dòng tiêu thụ không có sản phẩm nào được gán."
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_product_template
msgid "Product Template"
msgstr "Mẫu sản phẩm"
#. module: mrp_production_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_estimated_cost.action_show_production_anaytic_lines
msgid "Production Analytic Lines"
msgstr "Production Analytic Lines"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Production Costs"
msgstr "Chi phí sản xuất"
#. module: mrp_production_estimated_cost
#: view:account.analytic.line:mrp_production_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "Production Information"
msgstr "Thông tin sản xuất"
#. module: mrp_production_estimated_cost
#: model:ir.model,name:mrp_production_estimated_cost.model_project_project
#: field:wiz.create.fictitious.of,project_id:0
msgid "Project"
msgstr "Dự án"
#. module: mrp_production_estimated_cost
#: field:wiz.create.fictitious.of,date_planned:0
msgid "Scheduled Date"
msgstr "Ngày theo kế hoạch"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:254
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:271
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:289
#, python-format
msgid "There is at least this workcenter without product: %s"
msgstr "There is at least this workcenter without product: %s"
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:237
#, python-format
msgid "Workcenter '%s' doesn't have post-operation costing product."
msgstr "Workcenter '%s' doesn't have post-operation costing product."
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:221
#, python-format
msgid "Workcenter '%s' doesn't have pre-operation costing product."
msgstr "Workcenter '%s' doesn't have pre-operation costing product."
#. module: mrp_production_estimated_cost
#: code:addons/mrp_production_estimated_cost/models/mrp_production.py:181
#, python-format
msgid "You must define one Analytic Account for this MO: %s"
msgstr "Bạn phải định nghĩa một Tài khoản quản trị cho MO này: %s"
#. module: mrp_production_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_estimated_cost.wiz_create_fictitious_of_view
msgid "or"
msgstr "hoặc"
#. module: mrp_production_estimated_cost
#: view:mrp.production:mrp_production_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "{'invisible':['|',('active','=',False),('state','!=','draft')]}"
msgstr "{'invisible':['|',('active','=',False),('state','!=','draft')]}"

View File

@@ -0,0 +1,8 @@
# -*- coding: utf-8 -*-
# (c) 2014-2015 Avanzosc
# (c) 2014-2015 Pedro M. Baeza
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from . import account_analytic_line
from . import mrp_production
from . import product

View File

@@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-
# (c) 2014-2015 Avanzosc
# (c) 2014-2015 Pedro M. Baeza
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from openerp import models, fields
import openerp.addons.decimal_precision as dp
class AccountAnalyticLine(models.Model):
_inherit = 'account.analytic.line'
estim_std_cost = fields.Float(string='Estimated Standard Cost',
digits=dp.get_precision('Product Price'))
estim_avg_cost = fields.Float(string='Estimated Average Cost',
digits=dp.get_precision('Product Price'))

View File

@@ -1,21 +1,9 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see http://www.gnu.org/licenses/.
#
##############################################################################
from openerp import models, fields, api, exceptions, _
# -*- coding: utf-8 -*-
# (c) 2014-2015 Avanzosc
# (c) 2014-2015 Pedro M. Baeza
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from openerp import api, exceptions, fields, models, _
class MrpProduction(models.Model):
@@ -24,17 +12,15 @@ class MrpProduction(models.Model):
@api.one
@api.depends('analytic_line_ids', 'analytic_line_ids.estim_std_cost',
'product_qty')
def get_unit_std_cost(self):
self.std_cost = -(sum([line.estim_std_cost for line in
self.analytic_line_ids]))
def _compute_unit_std_cost(self):
self.std_cost = -sum(self.analytic_line_ids.mapped('estim_std_cost'))
self.unit_std_cost = self.std_cost / self.product_qty
@api.one
@api.depends('analytic_line_ids', 'analytic_line_ids.estim_avg_cost',
'product_qty')
def get_unit_avg_cost(self):
self.avg_cost = -(sum([line.estim_avg_cost for line in
self.analytic_line_ids]))
def _compute_unit_avg_cost(self):
self.avg_cost = -sum(self.analytic_line_ids.mapped('estim_avg_cost'))
self.unit_avg_cost = self.avg_cost / self.product_qty
@api.one
@@ -42,28 +28,28 @@ class MrpProduction(models.Model):
analytic_line_obj = self.env['account.analytic.line']
cond = [('mrp_production_id', '=', self.id),
('task_id', '=', False)]
analytic_lines = analytic_line_obj.search(cond)
self.created_estimated_cost = len(analytic_lines)
self.created_estimated_cost = len(analytic_line_obj.search(cond))
active = fields.Boolean(
'Active', default=lambda self: self.env.context.get('default_active',
True))
active = fields.Boolean(string='Active', default=True)
name = fields.Char(default="/")
created_estimated_cost = fields.Integer(
compute="_count_created_estimated_cost", string="Estimated Costs")
std_cost = fields.Float(string="Estimated Standard Cost",
compute="get_unit_std_cost", store=True)
avg_cost = fields.Float(string="Estimated Average Cost",
compute="get_unit_avg_cost", store=True)
unit_std_cost = fields.Float(string="Estimated Standard Unit Cost",
compute="get_unit_std_cost", store=True)
std_cost = fields.Float(
string="Estimated Standard Cost", compute="_compute_unit_std_cost",
store=True)
avg_cost = fields.Float(
string="Estimated Average Cost", compute="_compute_unit_avg_cost",
store=True)
unit_std_cost = fields.Float(
string="Estimated Standard Unit Cost",
compute="_compute_unit_std_cost", store=True)
unit_avg_cost = fields.Float(string="Estimated Average Unit Cost",
compute="get_unit_avg_cost", store=True)
compute="_compute_unit_avg_cost", store=True)
product_manual_cost = fields.Float(
string="Product Manual Cost",
related="product_id.manual_standard_cost")
product_cost = fields.Float(
string="Product Cost", related="product_id.cost_price")
string="Product Cost", related="product_id.standard_price")
analytic_line_ids = fields.One2many(
comodel_name="account.analytic.line", inverse_name="mrp_production_id",
string="Cost Lines")
@@ -76,22 +62,9 @@ class MrpProduction(models.Model):
if values.get('name', '/') == '/':
values['name'] = sequence_obj.get('mrp.production')
else:
values['name'] = sequence_obj.get('fictitious.mrp.production')
values['name'] = sequence_obj.get('virtual.mrp.production')
return super(MrpProduction, self).create(values)
@api.multi
def unlink(self):
analytic_line_obj = self.env['account.analytic.line']
for production in self:
cond = [('mrp_production_id', '=', production.id)]
analytic_line_obj.search(cond).unlink()
if production.project_id.automatic_creation:
analytic_lines = analytic_line_obj.search(
[('account_id', '=', production.analytic_account_id.id)])
if not analytic_lines:
production.analytic_account_id.unlink()
return super(MrpProduction, self).unlink()
@api.multi
def action_confirm(self):
res = super(MrpProduction, self).action_confirm()
@@ -103,9 +76,9 @@ class MrpProduction(models.Model):
self.ensure_one()
analytic_line_obj = self.env['account.analytic.line']
id2 = self.env.ref(
'mrp_production_project_estimated_cost.estimated_cost_list_view')
search_view = self.env.ref('mrp_project_link.account_analytic_line'
'_mrp_search_view')
'mrp_production_estimated_cost.estimated_cost_list_view')
search_view = self.env.ref(
'mrp_project.account_analytic_line_mrp_search_view')
analytic_line_list = analytic_line_obj.search(
[('mrp_production_id', '=', self.id),
('task_id', '=', False)])
@@ -121,10 +94,9 @@ class MrpProduction(models.Model):
'view_id': False,
'type': 'ir.actions.act_window',
'target': 'new',
'domain': "[('id','in',[" +
','.join(map(str, analytic_line_list.ids)) + "])]",
'domain': [('id', 'in', analytic_line_list.ids)],
'context': self.env.context
}
}
@api.model
def _prepare_estimated_cost_analytic_line(
@@ -173,7 +145,7 @@ class MrpProduction(models.Model):
'general_account_id': general_account.id,
'estim_std_cost': -qty * (std_cost or
product.manual_standard_cost),
'estim_avg_cost': -qty * (avg_cost or product.cost_price),
'estim_avg_cost': -qty * (avg_cost or product.standard_price),
}
@api.model
@@ -182,7 +154,7 @@ class MrpProduction(models.Model):
raise exceptions.Warning(
_("One consume line has no product assigned."))
journal = self.env.ref('mrp.analytic_journal_materials', False)
name = _('%s-%s' % (prod.name, product_line.work_order.name or ''))
name = '%s-%s' % (prod.name, product_line.work_order.name or '')
product = product_line.product_id
qty = product_line.product_qty
vals = self._prepare_estimated_cost_analytic_line(
@@ -192,34 +164,26 @@ class MrpProduction(models.Model):
@api.model
def _create_pre_operation_estimated_cost(self, prod, wc, workorder):
if (wc.time_start and workorder.workcenter_id.pre_op_product):
if workorder.time_start:
product = workorder.workcenter_id.pre_op_product
if not product:
raise exceptions.Warning(
_("Workcenter '%s' doesn't have pre-operation costing "
"product.") % workorder.workcenter_id.name)
journal = self.env.ref('mrp.analytic_journal_machines', False)
name = (_('%s-%s Pre-operation') %
(prod.name, workorder.workcenter_id.name))
vals = self._prepare_estimated_cost_analytic_line(
journal, name, prod, product, workorder=workorder,
qty=wc.time_start)
qty=workorder.time_start)
return self.env['account.analytic.line'].create(vals)
@api.model
def _create_post_operation_estimated_cost(self, prod, wc, workorder):
if (wc.time_stop and workorder.workcenter_id.post_op_product):
if workorder.time_stop:
product = workorder.workcenter_id.post_op_product
if not product:
raise exceptions.Warning(
_("Workcenter '%s' doesn't have post-operation costing "
"product.") % workorder.workcenter_id.name)
journal = self.env.ref('mrp.analytic_journal_machines', False)
name = (_('%s-%s Post-operation') %
(prod.name, workorder.workcenter_id.name))
vals = self._prepare_estimated_cost_analytic_line(
journal, name, prod, product, workorder=workorder,
qty=wc.time_stop)
qty=workorder.time_stop)
return self.env['account.analytic.line'].create(vals)
@api.model
@@ -260,18 +224,15 @@ class MrpProduction(models.Model):
@api.model
def _create_operators_estimated_cost(self, prod, wc, workorder):
if wc.op_number > 0 and workorder.hour:
data_source = wc if wc.custom_data else wc.workcenter
if data_source.op_number > 0 and workorder.hour:
product = workorder.workcenter_id.product_id
if not product:
raise exceptions.Warning(
_("There is at least this workcenter without "
"product: %s") % workorder.workcenter_id.name)
journal = self.env.ref('mrp.analytic_journal_operators', False)
name = (_('%s-%s-%s') %
name = ('%s-%s-%s' %
(prod.name, workorder.routing_wc_line.operation.code,
product.name))
cost = wc.op_avg_cost
qty = workorder.hour * wc.op_number
cost = data_source.op_avg_cost
qty = workorder.hour * data_source.op_number
vals = self._prepare_estimated_cost_analytic_line(
journal, name, prod, product, workorder=workorder, qty=qty,
std_cost=cost, avg_cost=cost)
@@ -284,13 +245,11 @@ class MrpProduction(models.Model):
cond = [('mrp_production_id', '=', record.id)]
analytic_line_obj.search(cond).unlink()
for product_line in record.product_lines:
self._create_material_estimated_cost(
record, product_line)
self._create_material_estimated_cost(record, product_line)
for line in record.workcenter_lines:
op_wc_lines = line.routing_wc_line.op_wc_lines
wc = op_wc_lines.filtered(lambda r: r.workcenter ==
line.workcenter_id) or \
line.workcenter_id
wc = op_wc_lines.filtered(
lambda r: r.workcenter == line.workcenter_id)
self._create_pre_operation_estimated_cost(record, wc, line)
self._create_post_operation_estimated_cost(record, wc, line)
done = self._create_worcenter_cycles_estimated_cost(
@@ -302,10 +261,10 @@ class MrpProduction(models.Model):
@api.multi
def load_product_std_price(self):
for record in self:
product = record.product_id
if record.unit_std_cost:
product.manual_standard_cost = record.unit_std_cost
for production in self:
if production.unit_std_cost:
production.product_id.manual_standard_cost = (
production.unit_std_cost)
@api.multi
def _get_min_qty_for_production(self, routing=False):

View File

@@ -0,0 +1,15 @@
# -*- coding: utf-8 -*-
# (c) 2014-2015 Avanzosc
# (c) 2014-2015 Pedro M. Baeza
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from openerp import models, fields
import openerp.addons.decimal_precision as dp
class ProductTemplate(models.Model):
_inherit = 'product.template'
manual_standard_cost = fields.Float(
string='Manual Standard Cost', digits=dp.get_precision('Product Price')
)

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
# © 2015 Pedro M. Baeza
# © 2015 Antiun Ingeniería
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from . import test_mrp_production_estimated_cost

View File

@@ -0,0 +1,33 @@
# -*- coding: utf-8 -*-
# © 2015 Pedro M. Baeza
# © 2015 Antiun Ingeniería
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from openerp.tests import common
class TestMrpProductionEstimatedCost(common.TransactionCase):
def setUp(self):
super(TestMrpProductionEstimatedCost, self).setUp()
self.production = self.env.ref(
'mrp_operations_extension.mrp_production_opeext')
self.journal_materials = self.env.ref('mrp.analytic_journal_materials')
self.journal_machines = self.env.ref('mrp.analytic_journal_machines')
self.journal_operators = self.env.ref('mrp.analytic_journal_operators')
def test_flow(self):
self.production.action_compute()
self.production.workcenter_lines[0].op_number = 1
self.production.signal_workflow('button_confirm')
self.production.force_production()
self.assertTrue(self.production.analytic_line_ids.filtered(
lambda x: x.journal_id == self.journal_materials))
self.assertTrue(self.production.analytic_line_ids.filtered(
lambda x: x.journal_id == self.journal_machines))
self.assertTrue(self.production.analytic_line_ids.filtered(
lambda x: x.journal_id == self.journal_operators))
self.assertEqual(self.production.created_estimated_cost, 11)
def test_show_action(self):
action = self.production.action_show_estimated_costs
self.assertTrue(action)

View File

@@ -1,12 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="mrp_production_project_form_view_inh_estimatedcost" model="ir.ui.view">
<field name="name">mrp.production.project.form.view.inh.estimatedcost</field>
<record id="mrp_production_form_view" model="ir.ui.view">
<field name="name">Manufacturing order form (active field)</field>
<field name="model">mrp.production</field>
<field name="inherit_id" ref="mrp_project_link.mrp_production_project_form_view"/>
<field name="inherit_id" ref="mrp.mrp_production_form_view"/>
<field name="arch" type="xml">
<field name="project_id" position="after">
<field name="product_id" position="before">
<field name="active" />
</field>
</field>
@@ -18,23 +19,30 @@
<field name="inherit_id" ref="mrp.mrp_production_form_view"/>
<field name="arch" type="xml">
<page string="Extra Information" position="inside">
<group string="Manufacturing costs">
</group>
<group string="Manufacturing costs" name="group_manufacturing_cost"/>
</page>
</field>
</record>
<record id="mrp_production_form_view_inh_estimatedcost" model="ir.ui.view">
<field name="name">mrp.production.form.view.inh.estimatedcost</field>
<field name="model">mrp.production</field>
<field name="inherit_id" ref="mrp.mrp_production_form_view_costs"/>
<field name="arch" type="xml">
<button name="button_confirm" position="attributes">
<attribute name="states"></attribute>
<attribute name="attrs">{'invisible':['|',('active','=',False),('state','!=','draft')]}</attribute>
<attribute name="states"/>
<attribute name="attrs">{'invisible': ['|', ('active','=',False), ('state','!=','draft')]}</attribute>
</button>
<button name="action_cancel" position="after">
<button name="calculate_production_estimated_cost" states="draft,ready,in_production" string="Create Estimated Costs" type="object"/>
<button name="load_product_std_price" string="Load Estimated Cost on Product" type="object" attrs="{'invisible':[('std_cost', '=', 0)]}"/>
<button name="calculate_production_estimated_cost"
states="draft,ready,in_production"
string="Create Estimated Costs" type="object"
/>
<button name="load_product_std_price"
string="Load Estimated Cost on Product"
type="object"
attrs="{'invisible':[('std_cost', '=', 0)]}"
/>
</button>
<group string="Manufacturing costs" position="inside">
<group>
@@ -48,8 +56,6 @@
<field name="product_manual_cost"/>
</group>
</group>
<xpath expr="//field[@name='product_uom']/.." position="after">
</xpath>
</field>
</record>
@@ -67,7 +73,7 @@
</record>
<record id="action_estimated_costs_per_production" model="ir.actions.act_window">
<field name="name">Estimated costs from production order</field>
<field name="name">Estimated costs from manufacturing order</field>
<field name="res_model">account.analytic.line</field>
<field name="view_mode">tree,form</field>
<field name="domain">[('mrp_production_id','=',active_id),('task_id','=',False)]</field>
@@ -79,8 +85,7 @@
<field name="inherit_id" ref="mrp.mrp_production_form_view" />
<field name="arch" type="xml">
<div class="oe_title" position="after">
<div class="oe_right oe_button_box" name="buttons">
</div>
<div class="oe_right oe_button_box" name="buttons"/>
</div>
</field>
</record>
@@ -95,20 +100,18 @@
type="object"
string="Costs analysis"
name="action_show_estimated_costs"
icon="fa-bar-chart">
</button>
icon="fa-bar-chart"/>
<button class="oe_inline oe_stat_button"
type="action"
string="Production Costs"
name="%(action_show_production_anaytic_lines)d"
icon="fa-list">
</button>
icon="fa-list"/>
</div>
</field>
</record>
<record id="mrp_fictitious_production_action" model="ir.actions.act_window">
<field name="name">Fictitious Manufacturing Orders to estimate costs</field>
<record id="mrp_virtual_production_action" model="ir.actions.act_window">
<field name="name">Virtual Manufacturing Orders to estimate costs</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">mrp.production</field>
<field name="view_type">form</field>
@@ -119,8 +122,10 @@
<field name="domain">[('active','=',False)]</field>
</record>
<menuitem action="mrp_fictitious_production_action" id="menu_mrp_fictitious_production_action"
parent="mrp.menu_mrp_manufacturing" sequence="10"/>
<menuitem action="mrp_virtual_production_action"
id="menu_mrp_virtual_production_action"
parent="mrp.menu_mrp_manufacturing" sequence="10"
/>
</data>
</openerp>

View File

@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="product_template_form_view_inh_estimatedcost" model="ir.ui.view">
<field name="name">product.template.form.view.inh.estimatedcost</field>
<field name="model">product.template</field>
@@ -11,31 +12,36 @@
</field>
</field>
</record>
<record id="product_product_form_view_bom_button_inh_estimatedcost" model="ir.ui.view">
<field name="name">product.product.form.view.bom.button.inh.estimatedcost</field>
<field name="model">product.product</field>
<field name="inherit_id" ref="mrp.product_product_form_view_bom_button"/>
<field name="arch" type="xml">
<button name="action_view_bom" position="after">
<button class="oe_inline oe_stat_button"
name="%(act_product_create_fictitious_of)d"
string="Create Fictitious MO" type="action"
attrs="{'invisible':[('type', '=', 'service')]}" icon="fa-flask" />
<button class="oe_inline oe_stat_button"
name="%(act_product_create_virtual_mo)d"
string="Create Virtual MO" type="action"
attrs="{'invisible':[('type', '=', 'service')]}" icon="fa-flask"
/>
</button>
</field>
</record>
<record id="product_template_form_view_bom_button_inh_estimatedcost" model="ir.ui.view">
<field name="name">product.template.form.view.bom.button.inh.estimatedcost</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="mrp.product_template_form_view_bom_button"/>
<field name="arch" type="xml">
<button name="action_view_mos" position="before">
<button class="oe_inline oe_stat_button"
name="%(act_product_create_fictitious_of)d"
string="Create Fictitious MO" type="action"
attrs="{'invisible':[('type', '=', 'service')]}" icon="fa-flask" />
<button class="oe_inline oe_stat_button"
name="%(act_product_create_virtual_mo)d"
attrs="{'invisible':[('type', '=', 'service')]}" icon="fa-flask"
string="Create Virtual MO" type="action"
/>
</button>
</field>
</record>
</data>
</openerp>

View File

@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
# (c) 2014-2015 Avanzosc
# (c) 2014-2015 Pedro M. Baeza
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from . import wiz_create_virtual_mo

View File

@@ -0,0 +1,66 @@
# -*- coding: utf-8 -*-
# (c) 2014-2015 Avanzosc
# (c) 2014-2015 Pedro M. Baeza
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from openerp import api, fields, models
class WizCreateVirtualMo(models.TransientModel):
_name = "wiz.create.virtual.mo"
date_planned = fields.Datetime(
string='Scheduled Date', required=True, default=fields.Datetime.now)
load_on_product = fields.Boolean("Load cost on product")
analytic_account_id = fields.Many2one(
comodel_name="account.analytic.account", string="Analytic account")
@api.multi
def do_create_virtual_mo(self):
self.ensure_one()
production_obj = self.env['mrp.production']
product_obj = self.env['product.product']
routing_obj = self.env['mrp.routing']
active_ids = self.env.context['active_ids']
if self.env.context['active_model'] == 'product.template':
cond = [('product_tmpl_id', 'in', active_ids)]
products = product_obj.search(cond)
else:
products = product_obj.browse(active_ids)
productions = self.env['mrp.production']
for product in products:
vals = {
'product_id': product.id,
'product_template': product.product_tmpl_id.id,
'product_qty': 1,
'date_planned': self.date_planned,
'user_id': self._uid,
'active': False,
'product_uom': product.uom_id.id,
'analytic_account_id': self.analytic_account_id.id,
}
vals.update(production_obj.product_id_change(
product.id, 1)['value'])
if 'routing_id' in vals:
routing = routing_obj.browse(vals['routing_id'])
product_qty = production_obj._get_min_qty_for_production(
routing) or 1
vals['product_qty'] = product_qty
prod_vals = production_obj.product_id_change(
product.id, product_qty)['value']
vals.update(prod_vals)
vals['product_attributes'] = [tuple([0, 0, line]) for line in
vals.get('product_attributes', [])]
new_production = production_obj.create(vals)
new_production.action_compute()
productions |= new_production
if self.load_on_product:
productions.load_product_std_price()
return {
'view_type': 'form',
'view_mode': 'tree,form',
'res_model': 'mrp.production',
'type': 'ir.actions.act_window',
'domain': ("[('id', 'in', %s), ('active','=',False)]" %
productions.ids)
}

View File

@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="wiz_create_virtual_mo_view" model="ir.ui.view">
<field name="name">wiz.create.virtual.mo.view</field>
<field name="model">wiz.create.virtual.mo</field>
<field name="arch" type="xml">
<form string="Create virtual MO">
<group string="Create virtual MO">
<field name="date_planned" />
<field name="load_on_product" />
<field name="analytic_account_id" />
</group>
<footer>
<button name="do_create_virtual_mo"
type="object"
string="Create virtual MO"
class="oe_highlight"
/>
or
<button string="Cancel"
class="oe_link"
special="cancel"
/>
</footer>
</form>
</field>
</record>
<record id="act_product_create_virtual_mo" model="ir.actions.act_window">
<field name="name">Create virtual MO</field>
<field name="res_model">wiz.create.virtual.mo</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="view_id" ref="wiz_create_virtual_mo_view" />
<field name="target">new</field>
</record>
<act_window name="Create virtual MO"
res_model="wiz.create.virtual.mo"
src_model="product.product"
view_mode="form"
target="new"
key2="client_action_multi"
id="action_run_create_virtual_mo"/>
<act_window name="Create virtual MO"
res_model="wiz.create.virtual.mo"
src_model="product.template"
view_mode="form"
target="new"
key2="client_action_multi"
id="action_run_template_create_virtual_mo"/>
</data>
</openerp>

View File

@@ -1,29 +0,0 @@
Estimated costs in manufacturing orders
=======================================
Thanks to this module, when a Manufacturing Order is confirmed, analytic lines
are automatically generated in order to estimate the costs of the production
order.
At the same time, the estimated allocation of raw materials, machine operators
time and costs will be made as followed:
* Raw Material cost: an analytic line will be generated for each material to
be consumed in the order.
* Operators time: One line will be generated for the time recorded by the
operators in each operation, so that the number of lines will be equal to
the number of operators in the operation.
* Cost associated to machines: two analytic lines for each operation will be
created in the associated routing, one for hourly cost and the other for per
cycle cost.
A new menu is available "Virtual Manufacturing Orders for cost estimation"
where the user can managed virtual MO:
* When a new MO is created and the new field "active" is false, the MO will be
considered virtual. It is only used for cost estimation and can not be
confirmed.
* To estimate the cost of the MO, the user has to press the button "Compute
data" in the tab "Work Orders".
* These virtual MO have a separate sequence number.
* The user can create a virtual MO directly from the product form.

View File

@@ -1,19 +0,0 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see http://www.gnu.org/licenses/.
#
##############################################################################
from . import models
from . import wizard

View File

@@ -1,51 +0,0 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see http://www.gnu.org/licenses/.
#
##############################################################################
{
"name": "Estimated costs in manufacturing orders",
"version": "1.0",
"category": "Manufacturing",
"author": "OdooMRP team,"
"AvanzOSC,"
"Serv. Tecnol. Avanzados - Pedro M. Baeza",
"website": "http://www.odoomrp.com",
"contributors": [
"Alfredo de la Fuente <alfredodelafuente@avanzosc.es>",
"Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>",
"Ana Juaristi <ajuaristio@gmail.com>",
"Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>",
],
"depends": [
"product",
"analytic",
"mrp",
"mrp_operations_extension",
"mrp_project_link",
"product_variant_cost"
],
"data": [
"data/analytic_journal_data.xml",
"data/fictitious_mrp_production_sequence.xml",
"wizard/wiz_create_fictitious_of_view.xml",
"views/account_analytic_line_view.xml",
"views/mrp_production_view.xml",
"views/product_view.xml",
"views/mrp_bom_view.xml"
],
"installable": True,
}

View File

@@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data noupdate="1">
<record id="fictitious_mrp_production_code" model="ir.sequence.type">
<field name="name">Fictitious MRP Production</field>
<field name="code">fictitious.mrp.production</field>
</record>
<record id="fictitious_mrp_production" model="ir.sequence">
<field name="name">Fictitious MRP Production</field>
<field name="code">fictitious.mrp.production</field>
<field eval="6" name="padding"/>
<field name="prefix">FMO</field>
</record>
</data>
</openerp>

View File

@@ -1,291 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_production_project_estimated_cost
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: odoomrp-wip (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-20 18:10+0000\n"
"PO-Revision-Date: 2015-11-20 18:13+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Spanish (http://www.transifex.com/oca/odoomrp-wip-8-0/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:207
#, python-format
msgid "%s-%s"
msgstr "%s-%s"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:240
#, python-format
msgid "%s-%s Post-operation"
msgstr "%s-%s Post-operación"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:224
#, python-format
msgid "%s-%s Pre-operation"
msgstr "%s-%s Pre-operación"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:292
#, python-format
msgid "%s-%s-%s"
msgstr "%s-%s-%s"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:256
#, python-format
msgid "%s-%s-C-%s"
msgstr "%s-%s-C-%s"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:274
#, python-format
msgid "%s-%s-H-%s"
msgstr "%s-%s-H-%s"
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,active:0
msgid "Active"
msgstr "Activa"
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_account_analytic_line
msgid "Analytic Line"
msgstr "Línea analítica"
#. module: mrp_production_project_estimated_cost
#: field:project.project,automatic_creation:0
msgid "Automatic Creation"
msgstr "Creación automática"
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_bom
msgid "Bill of Material"
msgstr "Lista de material"
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Cancel"
msgstr "Cancelar"
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,analytic_line_ids:0
msgid "Cost Lines"
msgstr "Líneas de costes"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Costs analysis"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Create Estimated Costs"
msgstr "Crear costes estimados"
#. module: mrp_production_project_estimated_cost
#: view:product.product:mrp_production_project_estimated_cost.product_product_form_view_bom_button_inh_estimatedcost
#: view:product.template:mrp_production_project_estimated_cost.product_template_form_view_bom_button_inh_estimatedcost
msgid "Create Fictitious MO"
msgstr "Crea OF ficticia"
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.act_product_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_template_create_fictitious_of
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitious MO"
msgstr "CrearOF ficticia"
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitius MO"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_date:0
msgid "Created on"
msgstr "Creado el"
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. AVG"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. STD"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_avg_cost:0
#: field:mrp.production,avg_cost:0
msgid "Estimated Average Cost"
msgstr "Coste medio estimado"
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_avg_cost:0
msgid "Estimated Average Unit Cost"
msgstr "Coste medio estimado por unidad"
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
msgid "Estimated Costs"
msgstr "Costes estimados"
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_std_cost:0
#: field:mrp.production,std_cost:0
msgid "Estimated Standard Cost"
msgstr "Coste estándar estimado"
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_std_cost:0
msgid "Estimated Standard Unit Cost"
msgstr "Coste estándar estimado por unidad"
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_estimated_costs_per_production
msgid "Estimated costs from production order"
msgstr "Costes estimados desde orden de producción"
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.mrp_fictitious_production_action
#: model:ir.ui.menu,name:mrp_production_project_estimated_cost.menu_mrp_fictitious_production_action
msgid "Fictitious Manufacturing Orders to estimate costs"
msgstr "Órdenes de producción ficiticias para estimar costes"
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "General Accounting"
msgstr "Contabilidad general"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,id:0
msgid "ID"
msgstr "ID"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_uid:0
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_date:0
msgid "Last Updated on"
msgstr "Última actualización el"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Load Estimated Cost on Product"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,load_on_product:0
msgid "Load cost on product"
msgstr "Cargar coste en el producto"
#. module: mrp_production_project_estimated_cost
#: field:product.template,manual_standard_cost:0
msgid "Manual Standard Cost"
msgstr "Coste estándar manual"
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_production
msgid "Manufacturing Order"
msgstr "Órden de producción"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Manufacturing costs"
msgstr "Costes de fabricación"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:205
#, python-format
msgid "One consume line has no product assigned."
msgstr "Una de las líneas de consumo no tiene producto asignado."
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_product_template
msgid "Product Template"
msgstr "Plantilla de producto"
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_show_production_anaytic_lines
msgid "Production Analytic Lines"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Production Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "Production Information"
msgstr "Información de la fabricación"
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_project_project
#: field:wiz.create.fictitious.of,project_id:0
msgid "Project"
msgstr "Proyecto"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,date_planned:0
msgid "Scheduled Date"
msgstr "Fecha programada"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:254
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:271
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:289
#, python-format
msgid "There is at least this workcenter without product: %s"
msgstr "Esta máquina no tiene un producto asignado: %s"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:237
#, python-format
msgid "Workcenter '%s' doesn't have post-operation costing product."
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:221
#, python-format
msgid "Workcenter '%s' doesn't have pre-operation costing product."
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:181
#, python-format
msgid "You must define one Analytic Account for this MO: %s"
msgstr "Debe definir una cuenta analítica para esta MO: %s"
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "or"
msgstr "o"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "{'invisible':['|',('active','=',False),('state','!=','draft')]}"
msgstr "{'invisible':['|',('active','=',False),('state','!=','draft')]}"

View File

@@ -1,279 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_production_project_estimated_cost
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: odoomrp-wip (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-07 10:44+0000\n"
"PO-Revision-Date: 2015-10-04 00:01+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: French (http://www.transifex.com/oca/odoomrp-wip-8-0/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:207
#, python-format
msgid "%s-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:240
#, python-format
msgid "%s-%s Post-operation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:224
#, python-format
msgid "%s-%s Pre-operation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:292
#, python-format
msgid "%s-%s-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:256
#, python-format
msgid "%s-%s-C-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:274
#, python-format
msgid "%s-%s-H-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,active:0
msgid "Active"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_account_analytic_line
msgid "Analytic Line"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:project.project,automatic_creation:0
msgid "Automatic Creation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_bom
msgid "Bill of Material"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Cancel"
msgstr "Annuler"
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,analytic_line_ids:0
msgid "Cost Lines"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Costs analysis"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Create Estimated Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:product.product:mrp_production_project_estimated_cost.product_product_form_view_bom_button_inh_estimatedcost
#: view:product.template:mrp_production_project_estimated_cost.product_template_form_view_bom_button_inh_estimatedcost
msgid "Create Fictitious MO"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.act_product_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_template_create_fictitious_of
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitious MO"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitius MO"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_uid:0
msgid "Created by"
msgstr "Créé par"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_date:0
msgid "Created on"
msgstr "Créé le"
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_avg_cost:0
#: field:mrp.production,avg_cost:0
msgid "Estimated Average Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_avg_cost:0
msgid "Estimated Average Unit Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
msgid "Estimated Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_std_cost:0
#: field:mrp.production,std_cost:0
msgid "Estimated Standard Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_std_cost:0
msgid "Estimated Standard Unit Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_estimated_costs_per_production
msgid "Estimated costs from production order"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.mrp_fictitious_production_action
#: model:ir.ui.menu,name:mrp_production_project_estimated_cost.menu_mrp_fictitious_production_action
msgid "Fictitious Manufacturing Orders to estimate costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "General Accounting"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,id:0
msgid "ID"
msgstr "Id."
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_uid:0
msgid "Last Updated by"
msgstr "Mis à jour par"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_date:0
msgid "Last Updated on"
msgstr "Mis à jour le"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Load Cost on Product"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,load_on_product:0
msgid "Load cost on product"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:product.template,manual_standard_cost:0
msgid "Manual Standard Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_production
msgid "Manufacturing Order"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Manufacturing costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:205
#, python-format
msgid "One consume line has no product assigned."
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_product_template
msgid "Product Template"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_show_production_anaytic_lines
msgid "Production Analytic Lines"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Production Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "Production Information"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_project_project
#: field:wiz.create.fictitious.of,project_id:0
msgid "Project"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,date_planned:0
msgid "Scheduled Date"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:254
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:271
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:289
#, python-format
msgid "There is at least this workcenter without product: %s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:237
#, python-format
msgid "Workcenter '%s' doesn't have post-operation costing product."
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:221
#, python-format
msgid "Workcenter '%s' doesn't have pre-operation costing product."
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:181
#, python-format
msgid "You must define one Analytic Account for this MO: %s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "or"
msgstr "ou"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "{'invisible':['|',('active','=',False),('state','!=','draft')]}"
msgstr ""

View File

@@ -1,291 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_production_project_estimated_cost
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: odoomrp-wip (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-20 18:10+0000\n"
"PO-Revision-Date: 2015-11-19 16:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Italian (http://www.transifex.com/oca/odoomrp-wip-8-0/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:207
#, python-format
msgid "%s-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:240
#, python-format
msgid "%s-%s Post-operation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:224
#, python-format
msgid "%s-%s Pre-operation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:292
#, python-format
msgid "%s-%s-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:256
#, python-format
msgid "%s-%s-C-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:274
#, python-format
msgid "%s-%s-H-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,active:0
msgid "Active"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_account_analytic_line
msgid "Analytic Line"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:project.project,automatic_creation:0
msgid "Automatic Creation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_bom
msgid "Bill of Material"
msgstr "Distinta base"
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Cancel"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,analytic_line_ids:0
msgid "Cost Lines"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Costs analysis"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Create Estimated Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:product.product:mrp_production_project_estimated_cost.product_product_form_view_bom_button_inh_estimatedcost
#: view:product.template:mrp_production_project_estimated_cost.product_template_form_view_bom_button_inh_estimatedcost
msgid "Create Fictitious MO"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.act_product_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_template_create_fictitious_of
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitious MO"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitius MO"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_uid:0
msgid "Created by"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_date:0
msgid "Created on"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. AVG"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. STD"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_avg_cost:0
#: field:mrp.production,avg_cost:0
msgid "Estimated Average Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_avg_cost:0
msgid "Estimated Average Unit Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
msgid "Estimated Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_std_cost:0
#: field:mrp.production,std_cost:0
msgid "Estimated Standard Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_std_cost:0
msgid "Estimated Standard Unit Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_estimated_costs_per_production
msgid "Estimated costs from production order"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.mrp_fictitious_production_action
#: model:ir.ui.menu,name:mrp_production_project_estimated_cost.menu_mrp_fictitious_production_action
msgid "Fictitious Manufacturing Orders to estimate costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "General Accounting"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,id:0
msgid "ID"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_uid:0
msgid "Last Updated by"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_date:0
msgid "Last Updated on"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Load Estimated Cost on Product"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,load_on_product:0
msgid "Load cost on product"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:product.template,manual_standard_cost:0
msgid "Manual Standard Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_production
msgid "Manufacturing Order"
msgstr "Ordine di produzione"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Manufacturing costs"
msgstr "Costi di produzione"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:205
#, python-format
msgid "One consume line has no product assigned."
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_product_template
msgid "Product Template"
msgstr "Template prodotto"
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_show_production_anaytic_lines
msgid "Production Analytic Lines"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Production Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "Production Information"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_project_project
#: field:wiz.create.fictitious.of,project_id:0
msgid "Project"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,date_planned:0
msgid "Scheduled Date"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:254
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:271
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:289
#, python-format
msgid "There is at least this workcenter without product: %s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:237
#, python-format
msgid "Workcenter '%s' doesn't have post-operation costing product."
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:221
#, python-format
msgid "Workcenter '%s' doesn't have pre-operation costing product."
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:181
#, python-format
msgid "You must define one Analytic Account for this MO: %s"
msgstr "Bisogna definire un conto analitico per questo MO: %s"
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "or"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "{'invisible':['|',('active','=',False),('state','!=','draft')]}"
msgstr ""

View File

@@ -1,267 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_production_project_estimated_cost
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-02-24 15:18+0000\n"
"PO-Revision-Date: 2015-02-24 15:18+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:165
#, python-format
msgid "%s-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:187
#, python-format
msgid "%s-%s Post-operation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:178
#, python-format
msgid "%s-%s Pre-operation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:238
#, python-format
msgid "%s-%s-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:200
#, python-format
msgid "%s-%s-C-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:215
#, python-format
msgid "%s-%s-H-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,active:0
msgid "Active"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_account_analytic_line
msgid "Analytic Line"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:project.project,automatic_creation:0
msgid "Automatic Creation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_bom
msgid "Bill of Material"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Cancel"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,analytic_line_ids:0
msgid "Cost Lines"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Create Estimated Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:product.product:mrp_production_project_estimated_cost.product_product_form_view_bom_button_inh_estimatedcost
#: view:product.template:mrp_production_project_estimated_cost.product_template_form_view_bom_button_inh_estimatedcost
msgid "Create Fictitious MO"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.act_product_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_template_create_fictitious_of
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitious MO"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_uid:0
msgid "Created by"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_date:0
msgid "Created on"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,partner:0
msgid "Customer"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Estim. Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_avg_cost:0
#: field:mrp.production,avg_cost:0
msgid "Estimated Average Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_avg_cost:0
msgid "Estimated Average Unit Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
msgid "Estimated Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_std_cost:0
#: field:mrp.production,std_cost:0
msgid "Estimated Standard Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_std_cost:0
msgid "Estimated Standard Unit Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_estimated_costs_per_production
msgid "Estimated costs from production order"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Extra Information"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.mrp_fictitious_production_action
#: model:ir.ui.menu,name:mrp_production_project_estimated_cost.menu_mrp_fictitious_production_action
msgid "Fictitious Manufacturing Orders to estimate costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "General Accounting"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,id:0
msgid "ID"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_uid:0
msgid "Last Updated by"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_date:0
msgid "Last Updated on"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Load Cost on Product"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,load_on_product:0
msgid "Load cost on product"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:product.template,manual_standard_cost:0
msgid "Manual Standard Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_production
msgid "Manufacturing Order"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Manufacturing costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:164
#, python-format
msgid "One consume line has no product assigned."
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_product_template
msgid "Product Template"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "Production Information"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_project_project
#: field:wiz.create.fictitious.of,project_id:0
msgid "Project"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,date_planned:0
msgid "Scheduled Date"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:198
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:213
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:233
#, python-format
msgid "There is at least this workcenter without product: %s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:257
#, python-format
msgid "You must define Income account in the product \"%s\", or in the product category"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:261
#, python-format
msgid "You must define one Analytic Account for this MO: %s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "or"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "{'invisible':['|',('active','=',False),('state','!=','draft')]}"
msgstr ""

View File

@@ -1,291 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_production_project_estimated_cost
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: odoomrp-wip (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-20 18:10+0000\n"
"PO-Revision-Date: 2015-11-19 16:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/odoomrp-wip-8-0/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:207
#, python-format
msgid "%s-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:240
#, python-format
msgid "%s-%s Post-operation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:224
#, python-format
msgid "%s-%s Pre-operation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:292
#, python-format
msgid "%s-%s-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:256
#, python-format
msgid "%s-%s-C-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:274
#, python-format
msgid "%s-%s-H-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,active:0
msgid "Active"
msgstr "Ativo"
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_account_analytic_line
msgid "Analytic Line"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:project.project,automatic_creation:0
msgid "Automatic Creation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_bom
msgid "Bill of Material"
msgstr "Lista de materiais"
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Cancel"
msgstr "Cancelar"
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,analytic_line_ids:0
msgid "Cost Lines"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Costs analysis"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Create Estimated Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:product.product:mrp_production_project_estimated_cost.product_product_form_view_bom_button_inh_estimatedcost
#: view:product.template:mrp_production_project_estimated_cost.product_template_form_view_bom_button_inh_estimatedcost
msgid "Create Fictitious MO"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.act_product_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_template_create_fictitious_of
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitious MO"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitius MO"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_uid:0
msgid "Created by"
msgstr "Criado por"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_date:0
msgid "Created on"
msgstr "Criado em"
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. AVG"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. STD"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_avg_cost:0
#: field:mrp.production,avg_cost:0
msgid "Estimated Average Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_avg_cost:0
msgid "Estimated Average Unit Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
msgid "Estimated Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_std_cost:0
#: field:mrp.production,std_cost:0
msgid "Estimated Standard Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_std_cost:0
msgid "Estimated Standard Unit Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_estimated_costs_per_production
msgid "Estimated costs from production order"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.mrp_fictitious_production_action
#: model:ir.ui.menu,name:mrp_production_project_estimated_cost.menu_mrp_fictitious_production_action
msgid "Fictitious Manufacturing Orders to estimate costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "General Accounting"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,id:0
msgid "ID"
msgstr "ID"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_uid:0
msgid "Last Updated by"
msgstr "Última atualização por"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_date:0
msgid "Last Updated on"
msgstr "Última atualização em"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Load Estimated Cost on Product"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,load_on_product:0
msgid "Load cost on product"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:product.template,manual_standard_cost:0
msgid "Manual Standard Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_production
msgid "Manufacturing Order"
msgstr "Ordem de Produção"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Manufacturing costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:205
#, python-format
msgid "One consume line has no product assigned."
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_product_template
msgid "Product Template"
msgstr "Produto Modelo"
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_show_production_anaytic_lines
msgid "Production Analytic Lines"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Production Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "Production Information"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_project_project
#: field:wiz.create.fictitious.of,project_id:0
msgid "Project"
msgstr "Projeto"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,date_planned:0
msgid "Scheduled Date"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:254
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:271
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:289
#, python-format
msgid "There is at least this workcenter without product: %s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:237
#, python-format
msgid "Workcenter '%s' doesn't have post-operation costing product."
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:221
#, python-format
msgid "Workcenter '%s' doesn't have pre-operation costing product."
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:181
#, python-format
msgid "You must define one Analytic Account for this MO: %s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "or"
msgstr "ou"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "{'invisible':['|',('active','=',False),('state','!=','draft')]}"
msgstr ""

View File

@@ -1,291 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_production_project_estimated_cost
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: odoomrp-wip (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-20 18:10+0000\n"
"PO-Revision-Date: 2015-11-19 16:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Romanian (http://www.transifex.com/oca/odoomrp-wip-8-0/language/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ro\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:207
#, python-format
msgid "%s-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:240
#, python-format
msgid "%s-%s Post-operation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:224
#, python-format
msgid "%s-%s Pre-operation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:292
#, python-format
msgid "%s-%s-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:256
#, python-format
msgid "%s-%s-C-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:274
#, python-format
msgid "%s-%s-H-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,active:0
msgid "Active"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_account_analytic_line
msgid "Analytic Line"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:project.project,automatic_creation:0
msgid "Automatic Creation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_bom
msgid "Bill of Material"
msgstr "Listă de materiale"
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Cancel"
msgstr "Anulare"
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,analytic_line_ids:0
msgid "Cost Lines"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Costs analysis"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Create Estimated Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:product.product:mrp_production_project_estimated_cost.product_product_form_view_bom_button_inh_estimatedcost
#: view:product.template:mrp_production_project_estimated_cost.product_template_form_view_bom_button_inh_estimatedcost
msgid "Create Fictitious MO"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.act_product_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_template_create_fictitious_of
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitious MO"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitius MO"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_uid:0
msgid "Created by"
msgstr "Creat de"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_date:0
msgid "Created on"
msgstr "Creat în"
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. AVG"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. STD"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_avg_cost:0
#: field:mrp.production,avg_cost:0
msgid "Estimated Average Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_avg_cost:0
msgid "Estimated Average Unit Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
msgid "Estimated Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_std_cost:0
#: field:mrp.production,std_cost:0
msgid "Estimated Standard Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_std_cost:0
msgid "Estimated Standard Unit Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_estimated_costs_per_production
msgid "Estimated costs from production order"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.mrp_fictitious_production_action
#: model:ir.ui.menu,name:mrp_production_project_estimated_cost.menu_mrp_fictitious_production_action
msgid "Fictitious Manufacturing Orders to estimate costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "General Accounting"
msgstr "Contabilitate generală"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,id:0
msgid "ID"
msgstr "ID"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_uid:0
msgid "Last Updated by"
msgstr "Ultima actualizare de"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_date:0
msgid "Last Updated on"
msgstr "Ultima actualizare în"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Load Estimated Cost on Product"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,load_on_product:0
msgid "Load cost on product"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:product.template,manual_standard_cost:0
msgid "Manual Standard Cost"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_production
msgid "Manufacturing Order"
msgstr "Comandă fabricație"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Manufacturing costs"
msgstr "Costuri fabricație"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:205
#, python-format
msgid "One consume line has no product assigned."
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_product_template
msgid "Product Template"
msgstr "Produs șablon"
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_show_production_anaytic_lines
msgid "Production Analytic Lines"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Production Costs"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "Production Information"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_project_project
#: field:wiz.create.fictitious.of,project_id:0
msgid "Project"
msgstr "Proiect"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,date_planned:0
msgid "Scheduled Date"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:254
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:271
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:289
#, python-format
msgid "There is at least this workcenter without product: %s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:237
#, python-format
msgid "Workcenter '%s' doesn't have post-operation costing product."
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:221
#, python-format
msgid "Workcenter '%s' doesn't have pre-operation costing product."
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:181
#, python-format
msgid "You must define one Analytic Account for this MO: %s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "or"
msgstr "sau"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "{'invisible':['|',('active','=',False),('state','!=','draft')]}"
msgstr ""

View File

@@ -1,292 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_production_project_estimated_cost
#
# Translators:
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
msgid ""
msgstr ""
"Project-Id-Version: odoomrp-wip (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-20 18:10+0000\n"
"PO-Revision-Date: 2015-11-19 16:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Slovenian (http://www.transifex.com/oca/odoomrp-wip-8-0/language/sl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sl\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:207
#, python-format
msgid "%s-%s"
msgstr "%s-%s"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:240
#, python-format
msgid "%s-%s Post-operation"
msgstr "%s-%s po operaciji"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:224
#, python-format
msgid "%s-%s Pre-operation"
msgstr "%s-%s pred operacijo"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:292
#, python-format
msgid "%s-%s-%s"
msgstr "%s-%s-%s"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:256
#, python-format
msgid "%s-%s-C-%s"
msgstr "%s-%s-C-%s"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:274
#, python-format
msgid "%s-%s-H-%s"
msgstr "%s-%s-H-%s"
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,active:0
msgid "Active"
msgstr "Aktivno"
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_account_analytic_line
msgid "Analytic Line"
msgstr "Analitična postavka"
#. module: mrp_production_project_estimated_cost
#: field:project.project,automatic_creation:0
msgid "Automatic Creation"
msgstr "Samodejno ustvarjanje"
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_bom
msgid "Bill of Material"
msgstr "Kosovnica"
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Cancel"
msgstr "Preklic"
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,analytic_line_ids:0
msgid "Cost Lines"
msgstr "Stroškovne postavke"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Costs analysis"
msgstr "Analiza stroškov"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Create Estimated Costs"
msgstr "Ustvari oceno stroškov"
#. module: mrp_production_project_estimated_cost
#: view:product.product:mrp_production_project_estimated_cost.product_product_form_view_bom_button_inh_estimatedcost
#: view:product.template:mrp_production_project_estimated_cost.product_template_form_view_bom_button_inh_estimatedcost
msgid "Create Fictitious MO"
msgstr "Ustvari navidezni proizvodni nalog"
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.act_product_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_template_create_fictitious_of
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitious MO"
msgstr "Ustvari navidezni proizvodni nalog"
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitius MO"
msgstr "Ustvari fiktiven proizvodni nalog"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_uid:0
msgid "Created by"
msgstr "Ustvaril"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_date:0
msgid "Created on"
msgstr "Ustvarjeno"
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. AVG"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_tree_inh_estimatedcost
msgid "Estim. STD"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_avg_cost:0
#: field:mrp.production,avg_cost:0
msgid "Estimated Average Cost"
msgstr "Ocena povprečnih stroškov"
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_avg_cost:0
msgid "Estimated Average Unit Cost"
msgstr "Ocena povprečnega stroška enote"
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
msgid "Estimated Costs"
msgstr "Ocena stroškov"
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_std_cost:0
#: field:mrp.production,std_cost:0
msgid "Estimated Standard Cost"
msgstr "Ocena standardnih stroškov"
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_std_cost:0
msgid "Estimated Standard Unit Cost"
msgstr "Ocena stroška standardne enote"
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_estimated_costs_per_production
msgid "Estimated costs from production order"
msgstr "Ocena stroškov iz proizvodnega naloga"
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.mrp_fictitious_production_action
#: model:ir.ui.menu,name:mrp_production_project_estimated_cost.menu_mrp_fictitious_production_action
msgid "Fictitious Manufacturing Orders to estimate costs"
msgstr "Navidezni proizvodni nalogi za oceno stroškov"
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "General Accounting"
msgstr "Glavna knjiga"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,id:0
msgid "ID"
msgstr "ID"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_uid:0
msgid "Last Updated by"
msgstr "Zadnjič posodobil"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_date:0
msgid "Last Updated on"
msgstr "Zadnjič posodobljeno"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Load Estimated Cost on Product"
msgstr "Zadnja ocena stroška proizvoda"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,load_on_product:0
msgid "Load cost on product"
msgstr "Naloži strošek na proizvod"
#. module: mrp_production_project_estimated_cost
#: field:product.template,manual_standard_cost:0
msgid "Manual Standard Cost"
msgstr "Standardni strošek ročno"
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_production
msgid "Manufacturing Order"
msgstr "Proizvodni nalog"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Manufacturing costs"
msgstr "Proizvodni stroški"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:205
#, python-format
msgid "One consume line has no product assigned."
msgstr "Ena postavka porabe nima dodeljenega proizvoda."
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_product_template
msgid "Product Template"
msgstr "Predloga proizvoda"
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_show_production_anaytic_lines
msgid "Production Analytic Lines"
msgstr "Proizvodne analitične postavke"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Production Costs"
msgstr "Proizvodni stroški"
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "Production Information"
msgstr "Informacije o proizvodnji"
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_project_project
#: field:wiz.create.fictitious.of,project_id:0
msgid "Project"
msgstr "Projekt"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,date_planned:0
msgid "Scheduled Date"
msgstr "Načrtovani datum"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:254
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:271
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:289
#, python-format
msgid "There is at least this workcenter without product: %s"
msgstr "Vsaj ta delovni center nima proizvoda: %s"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:237
#, python-format
msgid "Workcenter '%s' doesn't have post-operation costing product."
msgstr "Delovni center '%s' nima po-operativnega stroškovnega proizvoda."
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:221
#, python-format
msgid "Workcenter '%s' doesn't have pre-operation costing product."
msgstr "Delovni center '%s' nima pred operativnega stroškovnega proizvoda."
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:181
#, python-format
msgid "You must define one Analytic Account for this MO: %s"
msgstr "Potrebno je določiti analitični konto za proizvodni nalog: %s"
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "or"
msgstr "ali"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "{'invisible':['|',('active','=',False),('state','!=','draft')]}"
msgstr "{'invisible':['|',('active','=',False),('state','!=','draft')]}"

View File

@@ -1,278 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_production_project_estimated_cost
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-28 09:13+0000\n"
"PO-Revision-Date: 2015-11-28 09:13+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:207
#, python-format
msgid "%s-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:240
#, python-format
msgid "%s-%s Post-operation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:224
#, python-format
msgid "%s-%s Pre-operation"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:292
#, python-format
msgid "%s-%s-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:256
#, python-format
msgid "%s-%s-C-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:274
#, python-format
msgid "%s-%s-H-%s"
msgstr ""
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,active:0
msgid "Active"
msgstr "Có hiệu lực"
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_account_analytic_line
msgid "Analytic Line"
msgstr "Analytic Line"
#. module: mrp_production_project_estimated_cost
#: field:project.project,automatic_creation:0
msgid "Automatic Creation"
msgstr "Tạo dự động"
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_bom
msgid "Bill of Material"
msgstr "Định mức Nguyên liệu"
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Cancel"
msgstr "Hủy"
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,analytic_line_ids:0
msgid "Cost Lines"
msgstr "Chi tiết chi phí"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Costs analysis"
msgstr "Phân tích chi phí"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Create Estimated Costs"
msgstr "Tạo chi phí dự kiến"
#. module: mrp_production_project_estimated_cost
#: view:product.product:mrp_production_project_estimated_cost.product_product_form_view_bom_button_inh_estimatedcost
#: view:product.template:mrp_production_project_estimated_cost.product_template_form_view_bom_button_inh_estimatedcost
msgid "Create Fictitious MO"
msgstr "Tạo Lệnh sản xuất giả lập"
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.act_product_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_create_fictitious_of
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_run_template_create_fictitious_of
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitious MO"
msgstr "Tạo Lệnh sản xuất giả lập"
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "Create fictitius MO"
msgstr "Tạo Lệnh sản xuất giả lập"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_uid:0
msgid "Created by"
msgstr "Tạo bởi"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,create_date:0
msgid "Created on"
msgstr "Tạo vào"
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_avg_cost:0
#: field:mrp.production,avg_cost:0
msgid "Estimated Average Cost"
msgstr "Chi phí trung bình dự kiến"
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_avg_cost:0
msgid "Estimated Average Unit Cost"
msgstr "Chi phí đơn vị trung bình dự kiến"
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.estimated_cost_list_view
msgid "Estimated Costs"
msgstr "Chi phí dự kiến"
#. module: mrp_production_project_estimated_cost
#: field:account.analytic.line,estim_std_cost:0
#: field:mrp.production,std_cost:0
msgid "Estimated Standard Cost"
msgstr "Chi phí tiêu chuẩn dự kiến"
#. module: mrp_production_project_estimated_cost
#: field:mrp.production,unit_std_cost:0
msgid "Estimated Standard Unit Cost"
msgstr "Chi phí đơn vị tiêu chuẩn dự kiến"
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_estimated_costs_per_production
msgid "Estimated costs from production order"
msgstr "Chi phí dự kiến từ các lệnh sản xuất"
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.mrp_fictitious_production_action
#: model:ir.ui.menu,name:mrp_production_project_estimated_cost.menu_mrp_fictitious_production_action
msgid "Fictitious Manufacturing Orders to estimate costs"
msgstr "Lệnh sản xuất giả lập để dự toán chi phí"
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "General Accounting"
msgstr "Kế toán Tổng hợp"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,id:0
msgid "ID"
msgstr "ID"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_uid:0
msgid "Last Updated by"
msgstr "Cập nhật lần cuối bởi"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,write_date:0
msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Load Estimated Cost on Product"
msgstr "Load Estimated Cost on Product"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,load_on_product:0
msgid "Load cost on product"
msgstr "Lấy giá vốn từ sản phẩm"
#. module: mrp_production_project_estimated_cost
#: field:product.template,manual_standard_cost:0
msgid "Manual Standard Cost"
msgstr "Giá tiêu chuẩn (tính thủ công)"
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_mrp_production
msgid "Manufacturing Order"
msgstr "Lệnh sản xuất"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "Manufacturing costs"
msgstr "Chi phí sản xuất"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:205
#, python-format
msgid "One consume line has no product assigned."
msgstr "Một dòng tiêu thụ không có sản phẩm nào được gán."
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_product_template
msgid "Product Template"
msgstr "Mẫu sản phẩm"
#. module: mrp_production_project_estimated_cost
#: model:ir.actions.act_window,name:mrp_production_project_estimated_cost.action_show_production_anaytic_lines
msgid "Production Analytic Lines"
msgstr "Production Analytic Lines"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_buttons_inh_estimatedcost
msgid "Production Costs"
msgstr "Chi phí sản xuất"
#. module: mrp_production_project_estimated_cost
#: view:account.analytic.line:mrp_production_project_estimated_cost.view_account_analytic_line_form_inh_estimatedcost
msgid "Production Information"
msgstr "Thông tin sản xuất"
#. module: mrp_production_project_estimated_cost
#: model:ir.model,name:mrp_production_project_estimated_cost.model_project_project
#: field:wiz.create.fictitious.of,project_id:0
msgid "Project"
msgstr "Dự án"
#. module: mrp_production_project_estimated_cost
#: field:wiz.create.fictitious.of,date_planned:0
msgid "Scheduled Date"
msgstr "Ngày theo kế hoạch"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:254
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:271
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:289
#, python-format
msgid "There is at least this workcenter without product: %s"
msgstr "There is at least this workcenter without product: %s"
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:237
#, python-format
msgid "Workcenter '%s' doesn't have post-operation costing product."
msgstr "Workcenter '%s' doesn't have post-operation costing product."
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:221
#, python-format
msgid "Workcenter '%s' doesn't have pre-operation costing product."
msgstr "Workcenter '%s' doesn't have pre-operation costing product."
#. module: mrp_production_project_estimated_cost
#: code:addons/mrp_production_project_estimated_cost/models/mrp_production.py:181
#, python-format
msgid "You must define one Analytic Account for this MO: %s"
msgstr "Bạn phải định nghĩa một Tài khoản quản trị cho MO này: %s"
#. module: mrp_production_project_estimated_cost
#: view:wiz.create.fictitious.of:mrp_production_project_estimated_cost.wiz_create_fictitious_of_view
msgid "or"
msgstr "hoặc"
#. module: mrp_production_project_estimated_cost
#: view:mrp.production:mrp_production_project_estimated_cost.mrp_production_form_view_inh_estimatedcost
msgid "{'invisible':['|',('active','=',False),('state','!=','draft')]}"
msgstr "{'invisible':['|',('active','=',False),('state','!=','draft')]}"

View File

@@ -1,21 +0,0 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see http://www.gnu.org/licenses/.
#
##############################################################################
from . import account_analytic_line
from . import mrp_production
from . import product
from . import mrp_bom

View File

@@ -1,28 +0,0 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see http://www.gnu.org/licenses/.
#
##############################################################################
from openerp import models, fields
import openerp.addons.decimal_precision as dp
class AccountAnalyticLine(models.Model):
_inherit = 'account.analytic.line'
estim_std_cost = fields.Float(string='Estimated Standard Cost',
digits=dp.get_precision('Product Price'))
estim_avg_cost = fields.Float(string='Estimated Average Cost',
digits=dp.get_precision('Product Price'))

View File

@@ -1,30 +0,0 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see http://www.gnu.org/licenses/.
#
##############################################################################
from openerp import models, fields
class MrpBom(models.Model):
_inherit = "mrp.bom"
product_standard_price = fields.Float(string="Product Standard Price",
related="product_id.cost_price")
product_manual_standard_price = fields.Float(
string="Product Manual Standard Price",
related="product_id.manual_standard_cost")

View File

@@ -1,28 +0,0 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see http://www.gnu.org/licenses/.
#
##############################################################################
from openerp import models, fields
import openerp.addons.decimal_precision as dp
class ProductTemplate(models.Model):
_inherit = 'product.template'
manual_standard_cost = fields.Float(
string='Manual Standard Cost', digits=dp.get_precision('Product Price')
)

View File

@@ -1,30 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data>
<record id="mrp.mrp_bom_tree_parent_view" model="ir.ui.view">
<field name="name">mrp.bom.tree.parent.view</field>
<field name="model">mrp.bom</field>
<field name="arch" type="xml">
<tree string="MRP BoMs">
<field name="code"/>
<field name="name"/>
</tree>
</field>
</record>
<record id="mrp_bom_product_tree_view" model="ir.ui.view">
<field name="name">mrp.bom.product.tree.view</field>
<field name="model">mrp.bom</field>
<field name="inherit_id" ref="mrp.mrp_bom_tree_parent_view"/>
<field name="arch" type="xml">
<field name="name" position="after">
<field name="product_id"/>
<field name="product_qty"/>
<field name="product_uom"/>
<field name="product_standard_price"/>
<field name="product_manual_standard_price"/>
</field>
</field>
</record>
</data>
</openerp>

View File

@@ -1,18 +0,0 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see http://www.gnu.org/licenses/.
#
##############################################################################
from . import wiz_create_fictitious_of

View File

@@ -1,72 +0,0 @@
# -*- coding: utf-8 -*-
##############################################################################
# For copyright and license notices, see __openerp__.py file in root directory
##############################################################################
from openerp import models, fields, api
class WizCreateFictitiousOf(models.TransientModel):
_name = "wiz.create.fictitious.of"
date_planned = fields.Datetime(
string='Scheduled Date', required=True, default=fields.Datetime.now)
load_on_product = fields.Boolean("Load cost on product")
project_id = fields.Many2one("project.project", string="Project")
@api.multi
def do_create_fictitious_of(self):
production_obj = self.env['mrp.production']
product_obj = self.env['product.product']
routing_obj = self.env['mrp.routing']
self.ensure_one()
active_ids = self.env.context['active_ids']
active_model = self.env.context['active_model']
production_list = []
if active_model == 'product.template':
cond = [('product_tmpl_id', 'in', active_ids)]
product_list = product_obj.search(cond)
else:
product_list = product_obj.browse(active_ids)
for product in product_list:
vals = {'product_id': product.id,
'product_template': product.product_tmpl_id.id,
'product_qty': 1,
'date_planned': self.date_planned,
'user_id': self._uid,
'active': False,
'product_uom': product.uom_id.id,
'project_id': self.project_id.id,
'analytic_account_id': (
self.project_id.analytic_account_id.id)
}
prod_vals = production_obj.product_id_change(product.id,
1)['value']
vals.update(prod_vals)
if 'routing_id' in vals:
routing = routing_obj.browse(vals['routing_id'])
product_qty = production_obj._get_min_qty_for_production(
routing) or 1
vals['product_qty'] = product_qty
prod_vals = production_obj.product_id_change(
product.id, product_qty)['value']
vals.update(prod_vals)
vals['product_attributes'] = [tuple([0, 0, line]) for line in
vals.get('product_attributes', [])]
new_production = production_obj.create(vals)
new_production.action_compute()
new_production.calculate_production_estimated_cost()
production_list.append(new_production.id)
if self.load_on_product:
for production_id in production_list:
try:
production = production_obj.browse(production_id)
production.load_product_std_price()
except:
continue
return {'view_type': 'form',
'view_mode': 'tree,form',
'res_model': 'mrp.production',
'type': 'ir.actions.act_window',
'domain': "[('id','in'," + str(production_list) + "), "
"('active','=',False)]"
}

View File

@@ -1,45 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="wiz_create_fictitious_of_view" model="ir.ui.view">
<field name="name">wiz.create.fictitious.of.view</field>
<field name="model">wiz.create.fictitious.of</field>
<field name="arch" type="xml">
<form string="Create fictitious MO">
<group string="Create fictitious MO">
<field name="date_planned" />
<field name="load_on_product" />
<field name="project_id" />
</group>
<footer>
<button name="do_create_fictitious_of" type="object" string="Create fictitius MO" class="oe_highlight" />
or
<button string="Cancel" class="oe_link" special="cancel" />
</footer>
</form>
</field>
</record>
<record id="act_product_create_fictitious_of" model="ir.actions.act_window">
<field name="name">Create fictitious MO</field>
<field name="res_model">wiz.create.fictitious.of</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="view_id" ref="wiz_create_fictitious_of_view" />
<field name="target">new</field>
</record>
<act_window name="Create fictitious MO"
res_model="wiz.create.fictitious.of"
src_model="product.product"
view_mode="form"
target="new"
key2="client_action_multi"
id="action_run_create_fictitious_of"/>
<act_window name="Create fictitious MO"
res_model="wiz.create.fictitious.of"
src_model="product.template"
view_mode="form"
target="new"
key2="client_action_multi"
id="action_run_template_create_fictitious_of"/>
</data>
</openerp>

View File

@@ -3,4 +3,3 @@
product-attribute
account-analytic
product-variant