From 8da242ce157ab56a6ba0c513d56c504b7285f1e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lionel=20Sausin=20=28Num=C3=A9rigraphe=29?= Date: Fri, 27 Feb 2015 13:43:56 +0100 Subject: [PATCH 01/34] [ADD] stock_available Generic module to compute the stock quantity available to promise using several implementations. stock_available_immediatly is changed to become the first optional implementation. Cherry pick of commit 0b060f619fa5d60f9fb343afe1154acd5c730148 from the v7 branch [IMP] stock_available* uses new API [ADD] stock_available_mrp Module to take immediate manufaturing capability into account in the stock quantity available to promise. Conflicts: stock_available/res_config.py [DEL] move stock_available_mrp to __unported__ [ADD] stock_available_sale Take sale quotations into account in the stock quantity available to promise Cherry-picked from 497068f5f5f1d65fdd4a6e90a787eba37b4e3232 Conflicts: stock_available/res_config.py [DEL] move stock_available_sale to __unported__ [IMP] READMEs and TODOs Cherry-picked from v7 at 8add4bea7e91924983fb29966e14a1f0d4d5332e Conflicts: __unported__/stock_available_mrp/__openerp__.py stock_available/__openerp__.py stock_available_immediately/__openerp__.py [IMP] respect product decimal precision https://github.com/odoo/odoo/issues/5512 and https://github.com/odoo-dev/odoo/commit/b3e5a940e3b67021173d07eb0c71c981a2fb9c78 makes it clear the standard intends to support decimal precision on the product form. --- stock_available/README.rst | 47 ++++++++++++ stock_available/__init__.py | 22 ++++++ stock_available/__openerp__.py | 32 ++++++++ stock_available/i18n/fr.po | 98 ++++++++++++++++++++++++ stock_available/i18n/stock_available.pot | 92 ++++++++++++++++++++++ stock_available/product.py | 51 ++++++++++++ stock_available/product_view.xml | 43 +++++++++++ stock_available/res_config.py | 49 ++++++++++++ stock_available/res_config_view.xml | 33 ++++++++ 9 files changed, 467 insertions(+) create mode 100644 stock_available/README.rst create mode 100644 stock_available/__init__.py create mode 100644 stock_available/__openerp__.py create mode 100644 stock_available/i18n/fr.po create mode 100644 stock_available/i18n/stock_available.pot create mode 100644 stock_available/product.py create mode 100644 stock_available/product_view.xml create mode 100644 stock_available/res_config.py create mode 100644 stock_available/res_config_view.xml diff --git a/stock_available/README.rst b/stock_available/README.rst new file mode 100644 index 000000000..e2b71b3be --- /dev/null +++ b/stock_available/README.rst @@ -0,0 +1,47 @@ +Stock available to promise +========================== + +This module proposes several options to compute the quantity available to +promise for each product. +This quantity is based on the projected stock and, depending on the +configuration, it can account for various data such as sales quotations or +immediate production capacity. +This can be configured in the menu Settings > Configuration > Warehouse. + +Configuration +============= + +By default, this module computes the stock available to promise as the virtual +stock. +To take davantage of the additional features, you must which information you +want to base the computation, by checking one or more boxes in the settings: +`Configuration` > `Warehouse` > `Stock available to promise`. + +Usage +===== + +This module adds a field named `Available for sale` on the Product form. +Various additional fields may be added, depending on which information you +chose to base the computation on. + +Credits +======= + +Contributors +------------ + +* Lionel Sausin (Numérigraphe) +* many others contributed to sub-modules, please refer to each sub-module's credits + +Maintainer +---------- + +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://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 http://odoo-community.org. diff --git a/stock_available/__init__.py b/stock_available/__init__.py new file mode 100644 index 000000000..6dff1269a --- /dev/null +++ b/stock_available/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# This module is copyright (C) 2014 Numérigraphe SARL. All Rights Reserved. +# +# 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 . +# +############################################################################## + +from . import product +from . import res_config diff --git a/stock_available/__openerp__.py b/stock_available/__openerp__.py new file mode 100644 index 000000000..608e6b8f4 --- /dev/null +++ b/stock_available/__openerp__.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# This module is copyright (C) 2014 Numérigraphe SARL. All Rights Reserved. +# +# 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 . +# +############################################################################## + +{ + 'name': 'Stock available to promise', + 'version': '8.0.2.0.0', + "author": u"Numérigraphe,Odoo Community Association (OCA)", + 'category': 'Warehouse', + 'depends': ['stock'], + 'license': 'AGPL-3', + 'data': [ + 'product_view.xml', + 'res_config_view.xml', + ] +} diff --git a/stock_available/i18n/fr.po b/stock_available/i18n/fr.po new file mode 100644 index 000000000..6c8e4c244 --- /dev/null +++ b/stock_available/i18n/fr.po @@ -0,0 +1,98 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * stock_available +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-30 16:42+0000\n" +"PO-Revision-Date: 2014-07-30 16:42+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: stock_available +#: field:product.product,immediately_usable_qty:0 +msgid "Available to promise" +msgstr "Disponible à la vente" + +#. module: stock_available +#: view:product.product:0 +msgid "Available to promise:" +msgstr "Disponible à la vente:" + +#. module: stock_available +#: field:stock.config.settings,module_stock_available_sale:0 +msgid "Exclude goods already in sale quotations" +msgstr "Exclure les marchandises qui sont déjà dans les devis" + +#. module: stock_available +#: field:stock.config.settings,module_stock_available_immediately:0 +msgid "Exclude incoming goods" +msgstr "Exclure les receptions attendues" + +#. module: stock_available +#: field:stock.config.settings,module_stock_available_mrp:0 +msgid "Include the production potential" +msgstr "Inclure la production potentielle" + +#. module: stock_available +#: code:_description:0 +#: model:ir.model,name:stock_available.model_product_product +#, python-format +msgid "Product" +msgstr "Article" + +#. module: stock_available +#: view:stock.config.settings:0 +msgid "Stock available to promise" +msgstr "Stock disponible à la vente" + +#. module: stock_available +#: help:product.product,immediately_usable_qty:0 +msgid "Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "Stock de cet article qui peut sans risque être proposé à la vente aux clients.\n" +"La définition de cette valeur est paramétrable selon vos besoins" + +#. module: stock_available +#: help:stock.config.settings,module_stock_available_mrp:0 +msgid "This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "Ceci ajoute les quantités de marchandises qui peuvent être immédiatement fabriquées, aux quantitiés disponibles à la vente.\n" +"Ceci installe le module stock_available_mrp.\n" +"Si le module mrp n'est pas encore installé, il le sera aussi" + +#. module: stock_available +#: help:stock.config.settings,module_stock_available_immediately:0 +msgid "This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "Ceci soustrait les réceptions attendues des quantitiés disponibles à la vente.\n" +"Ceci installe le module stock_available_immediately." + +#. module: stock_available +#: help:stock.config.settings,module_stock_available_sale:0 +msgid "This will subtract quantities from the sale quotations from the quantities available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will install them too" +msgstr "Ceci soustrait les quantités des devis de vente des quantitiés disponibles à la vente.\n" +"Ceci installe le modules stock_available_sale.\n" +"Si les modules sale et sale_delivery_date ne sont pas encore installés, ils le seront également" + +#. module: stock_available +#: view:product.product:0 +msgid "red:immediately_usable_qty<0;blue:immediately_usable_qty>=0 and state in ('draft', 'end', 'obsolete');black:immediately_usable_qty>=0 and state not in ('draft', 'end', 'obsolete')" +msgstr "red:immediately_usable_qty<0;blue:immediately_usable_qty>=0 and state in ('draft', 'end', 'obsolete');black:immediately_usable_qty>=0 and state not in ('draft', 'end', 'obsolete')" + +#. module: stock_available +#: code:_description:0 +#: model:ir.model,name:stock_available.model_stock_config_settings +#, python-format +msgid "stock.config.settings" +msgstr "stock.config.settings" + diff --git a/stock_available/i18n/stock_available.pot b/stock_available/i18n/stock_available.pot new file mode 100644 index 000000000..6eed1c952 --- /dev/null +++ b/stock_available/i18n/stock_available.pot @@ -0,0 +1,92 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * stock_available +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-30 16:48+0000\n" +"PO-Revision-Date: 2014-07-30 16:48+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: stock_available +#: field:product.product,immediately_usable_qty:0 +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: view:product.product:0 +msgid "Available to promise:" +msgstr "" + +#. module: stock_available +#: field:stock.config.settings,module_stock_available_sale:0 +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: field:stock.config.settings,module_stock_available_immediately:0 +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: field:stock.config.settings,module_stock_available_mrp:0 +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: code:_description:0 +#: model:ir.model,name:stock_available.model_product_product +#, python-format +msgid "Product" +msgstr "" + +#. module: stock_available +#: view:stock.config.settings:0 +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: help:product.product,immediately_usable_qty:0 +msgid "Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: help:stock.config.settings,module_stock_available_mrp:0 +msgid "This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: help:stock.config.settings,module_stock_available_immediately:0 +msgid "This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: help:stock.config.settings,module_stock_available_sale:0 +msgid "This will subtract quantities from the sale quotations from the quantities available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will install them too" +msgstr "" + +#. module: stock_available +#: view:product.product:0 +msgid "red:immediately_usable_qty<0;blue:immediately_usable_qty>=0 and state in ('draft', 'end', 'obsolete');black:immediately_usable_qty>=0 and state not in ('draft', 'end', 'obsolete')" +msgstr "" + +#. module: stock_available +#: code:_description:0 +#: model:ir.model,name:stock_available.model_stock_config_settings +#, python-format +msgid "stock.config.settings" +msgstr "" + diff --git a/stock_available/product.py b/stock_available/product.py new file mode 100644 index 000000000..1a3b72a59 --- /dev/null +++ b/stock_available/product.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# This module is copyright (C) 2014 Numérigraphe SARL. All Rights Reserved. +# +# 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 . +# +############################################################################## + +from openerp import models, fields, api +from openerp.addons import decimal_precision as dp + + +class ProductTemplate(models.Model): + """Add a field for the stock available to promise. + + Useful implementations need to be installed through the Settings menu or by + installing one of the modules stock_available_* + """ + _inherit = 'product.template' + + @api.depends('virtual_available') + def _product_available(self): + """No-op implementation of the stock available to promise. + + By default, available to promise = forecasted quantity. + + Must be overridden by another module that actually implement + computations.""" + for product in self: + product.immediately_usable_qty = product.virtual_available + + immediately_usable_qty = fields.Float( + digits=dp.get_precision('Product Unit of Measure'), + compute='_product_available', + string='Available to promise', + help="Stock for this Product that can be safely proposed " + "for sale to Customers.\n" + "The definition of this value can be configured to suit " + "your needs") diff --git a/stock_available/product_view.xml b/stock_available/product_view.xml new file mode 100644 index 000000000..d05270f75 --- /dev/null +++ b/stock_available/product_view.xml @@ -0,0 +1,43 @@ + + + + + Quantity available to promise (form) + product.template + + + + + + + + + + + Quantity available to promise (tree) + product.template + + + + + red:immediately_usable_qty<0;blue:immediately_usable_qty>=0 and state in ('draft', 'end', 'obsolete');black:immediately_usable_qty>=0 and state not in ('draft', 'end', 'obsolete') + + + + + + + + + + Quantity available to promise (kanban) + product.template + + + +
  • Available to promise:
  • +
    +
    +
    +
    +
    diff --git a/stock_available/res_config.py b/stock_available/res_config.py new file mode 100644 index 000000000..a07c9552a --- /dev/null +++ b/stock_available/res_config.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# This module is copyright (C) 2014 Numérigraphe SARL. All Rights Reserved. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp import models, fields + + +class StockConfig(models.TransientModel): + """Add options to easily install the submodules""" + _inherit = 'stock.config.settings' + + module_stock_available_immediately = fields.Boolean( + string='Exclude incoming goods', + help="This will subtract incoming quantities from the quantities " + "available to promise.\n" + "This installs the module stock_available_immediately.") + +# module_stock_available_sale = fields.Boolean( +# string='Exclude goods already in sale quotations', +# help="This will subtract quantities from the sale quotations from " +# "the quantities available to promise.\n" +# "This installs the modules stock_available_sale.\n" +# "If the modules sale and sale_delivery_date are not " +# "installed, this will install them too") + +# module_stock_available_mrp = fields.Boolean( +# string='Include the production potential', +# help="This will add the quantities of goods that can be " +# "immediately manufactured, to the quantities available to " +# "promise.\n" +# "This installs the module stock_available_mrp.\n" +# "If the module mrp is not installed, this will install it " +# "too") diff --git a/stock_available/res_config_view.xml b/stock_available/res_config_view.xml new file mode 100644 index 000000000..850355b67 --- /dev/null +++ b/stock_available/res_config_view.xml @@ -0,0 +1,33 @@ + + + + + Stock settings: quantity available to promise + stock.config.settings + + + + + + + + + + + + \ No newline at end of file From c3519850dffc2bb3d3c719febcbd45807be8b727 Mon Sep 17 00:00:00 2001 From: gfcapalbo Date: Wed, 18 Mar 2015 13:20:03 +0100 Subject: [PATCH 02/34] [FIX] corrected calculation of immediately_usable_qty on product.product and product.template, now takes in account variants and correctly displays value. [FLAKE8] Removing duplicate modules and moving README.rst into __unported__ [ADD} location calculations [FIX] typo --- stock_available/product.py | 41 +++++++++++++++++++++----------- stock_available/product_view.xml | 4 ++-- 2 files changed, 29 insertions(+), 16 deletions(-) diff --git a/stock_available/product.py b/stock_available/product.py index 1a3b72a59..dd7c6bb93 100644 --- a/stock_available/product.py +++ b/stock_available/product.py @@ -1,4 +1,4 @@ -# -*- coding: utf-8 -*- +#-*- coding: utf-8 -*- ############################################################################## # # This module is copyright (C) 2014 Numérigraphe SARL. All Rights Reserved. @@ -24,28 +24,41 @@ from openerp.addons import decimal_precision as dp class ProductTemplate(models.Model): """Add a field for the stock available to promise. - Useful implementations need to be installed through the Settings menu or by installing one of the modules stock_available_* """ _inherit = 'product.template' + # immediately usable quantity caluculated with the quant method + @api.multi @api.depends('virtual_available') - def _product_available(self): - """No-op implementation of the stock available to promise. - - By default, available to promise = forecasted quantity. - - Must be overridden by another module that actually implement - computations.""" - for product in self: - product.immediately_usable_qty = product.virtual_available + def _immediately_usable_qty(self): + stock_location_obj = self.env['stock.location'] + internal_locations = stock_location_obj.search([ + ('usage', '=', 'internal')]) + sublocation_ids = [] + for location in internal_locations: + sublocation_ids.append(self.env['stock.location'].search( + [('id', 'child_of', location.id)]).ids) + for product_template in self: + quant_obj = self.env['stock.quant'] + quants = quant_obj.search([ + ('location_id', 'in', sublocation_ids), + ('product_id', 'in', product_template.ids), + ('reservation_id', '=', False)]) + availability = 0 + if quants: + for quant in quants: + availability += quant.qty + product_template.immediately_usable_qty = availability immediately_usable_qty = fields.Float( digits=dp.get_precision('Product Unit of Measure'), - compute='_product_available', - string='Available to promise', + compute='_immediately_usable_qty', + string='Available to promise (quant calculation)', help="Stock for this Product that can be safely proposed " "for sale to Customers.\n" "The definition of this value can be configured to suit " - "your needs") + "your needs , this number is obtained by using the new odoo 8 " + "quants, so it gives us the actual curren quants minus reserved" + "quants") diff --git a/stock_available/product_view.xml b/stock_available/product_view.xml index d05270f75..2b2ee78be 100644 --- a/stock_available/product_view.xml +++ b/stock_available/product_view.xml @@ -22,8 +22,8 @@ red:immediately_usable_qty<0;blue:immediately_usable_qty>=0 and state in ('draft', 'end', 'obsolete');black:immediately_usable_qty>=0 and state not in ('draft', 'end', 'obsolete') - - + + From 374ce93a817cfc337ae313796eb2ad15a314d5c3 Mon Sep 17 00:00:00 2001 From: Giovanni francesco Capalbo Date: Thu, 16 Jul 2015 15:23:57 +0200 Subject: [PATCH 03/34] [FIX] searching on products, leaving full calculations not using internal qty_available that seems not to take in consideration reserved quants. [ADD] Tests --- stock_available/product.py | 6 +- stock_available/tests/test_stock_available.py | 120 ++++++++++++++++++ 2 files changed, 124 insertions(+), 2 deletions(-) create mode 100644 stock_available/tests/test_stock_available.py diff --git a/stock_available/product.py b/stock_available/product.py index dd7c6bb93..b94b6d076 100644 --- a/stock_available/product.py +++ b/stock_available/product.py @@ -41,10 +41,12 @@ class ProductTemplate(models.Model): sublocation_ids.append(self.env['stock.location'].search( [('id', 'child_of', location.id)]).ids) for product_template in self: + products = self.env['product.product'].search([ + ('product_tmpl_id', '=', product_template.id)]) quant_obj = self.env['stock.quant'] quants = quant_obj.search([ ('location_id', 'in', sublocation_ids), - ('product_id', 'in', product_template.ids), + ('product_id', 'in', products.ids), ('reservation_id', '=', False)]) availability = 0 if quants: @@ -60,5 +62,5 @@ class ProductTemplate(models.Model): "for sale to Customers.\n" "The definition of this value can be configured to suit " "your needs , this number is obtained by using the new odoo 8 " - "quants, so it gives us the actual curren quants minus reserved" + "quants, so it gives us the actual current quants minus reserved" "quants") diff --git a/stock_available/tests/test_stock_available.py b/stock_available/tests/test_stock_available.py new file mode 100644 index 000000000..2c46f6460 --- /dev/null +++ b/stock_available/tests/test_stock_available.py @@ -0,0 +1,120 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Copyright (C) 2015 Therp BV +# +# 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 . +# +############################################################################## +from openerp.tests.common import TransactionCase + + +class testStockLogisticsWarehouse(TransactionCase): + + def test01_stock_levels(self): + """checking that immediately_usable_qty actually reflects \ +the variations in stock, both on product and template""" + moveObj = self.env['stock.move'] + productObj = self.env['product.product'] + templateObj = self.env['product.template'] + supplier_location = self.env.ref('stock.stock_location_suppliers') + stock_location = self.env.ref('stock.stock_location_stock') + customer_location = self.env.ref('stock.stock_location_customers') + uom_unit = self.env.ref('product.product_uom_unit') + + # Create product template + templateAB = templateObj.create( + {'name': 'templAB', + 'uom_id': uom_unit.id, + }) + + # Create product A and B + productA = productObj.create( + {'name': 'product A', + 'standard_price': 1, + 'type': 'product', + 'uom_id': uom_unit.id, + 'default_code': 'A', + 'product_tmpl_id': templateAB.id, + }) + + productB = productObj.create( + {'name': 'product B', + 'standard_price': 1, + 'type': 'product', + 'uom_id': uom_unit.id, + 'default_code': 'B', + 'product_tmpl_id': templateAB.id, + }) + + # Create a stock move from INCOMING to STOCK + stockMoveInA = moveObj.create( + {'location_id': supplier_location.id, + 'location_dest_id': stock_location.id, + 'name': 'MOVE INCOMING -> STOCK ', + 'product_id': productA.id, + 'product_uom': productA.uom_id.id, + 'product_uom_qty': 2, + }) + + stockMoveInB = moveObj.create( + {'location_id': supplier_location.id, + 'location_dest_id': stock_location.id, + 'name': 'MOVE INCOMING -> STOCK ', + 'product_id': productB.id, + 'product_uom': productB.uom_id.id, + 'product_uom_qty': 3, + }) + + def compare_product_usable_qty(product, value): + # Refresh, because the function field is not recalculated between + # transactions + product.refresh() + self.assertEqual(product.immediately_usable_qty, value) + + compare_product_usable_qty(productA, 0) + compare_product_usable_qty(templateAB, 0) + + stockMoveInA.action_confirm() + compare_product_usable_qty(productA, 0) + compare_product_usable_qty(templateAB, 0) + + stockMoveInA.action_assign() + compare_product_usable_qty(productA, 0) + compare_product_usable_qty(templateAB, 0) + + stockMoveInA.action_done() + compare_product_usable_qty(productA, 2) + compare_product_usable_qty(templateAB, 2) + + # will directly trigger action_done on productB + stockMoveInB.action_done() + compare_product_usable_qty(productA, 2) + compare_product_usable_qty(productB, 3) + compare_product_usable_qty(templateAB, 5) + + # Create a stock move from STOCK to CUSTOMER + stockMoveOutA = moveObj.create( + {'location_id': stock_location.id, + 'location_dest_id': customer_location.id, + 'name': ' STOCK --> CUSTOMER ', + 'product_id': productA.id, + 'product_uom': productA.uom_id.id, + 'product_uom_qty': 1, + 'state': 'confirmed', + }) + + stockMoveOutA.action_done() + compare_product_usable_qty(productA, 1) + compare_product_usable_qty(templateAB, 4) From 10f7643fe2905f1b65f5efc270c88124ed938257 Mon Sep 17 00:00:00 2001 From: Laetitia Gangloff Date: Wed, 5 Aug 2015 11:18:12 +0200 Subject: [PATCH 04/34] [FIX] stock_available : update sublocations computation --- stock_available/product.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stock_available/product.py b/stock_available/product.py index b94b6d076..2a0f6c598 100644 --- a/stock_available/product.py +++ b/stock_available/product.py @@ -36,16 +36,16 @@ class ProductTemplate(models.Model): stock_location_obj = self.env['stock.location'] internal_locations = stock_location_obj.search([ ('usage', '=', 'internal')]) - sublocation_ids = [] + sublocations = self.env['stock.location'] for location in internal_locations: - sublocation_ids.append(self.env['stock.location'].search( - [('id', 'child_of', location.id)]).ids) + sublocations += stock_location_obj.search( + [('id', 'child_of', location.id)]) for product_template in self: products = self.env['product.product'].search([ ('product_tmpl_id', '=', product_template.id)]) quant_obj = self.env['stock.quant'] quants = quant_obj.search([ - ('location_id', 'in', sublocation_ids), + ('location_id', 'in', sublocations.ids), ('product_id', 'in', products.ids), ('reservation_id', '=', False)]) availability = 0 From 8cabcc04f37b8490a6031f046ef872c74ab325ac Mon Sep 17 00:00:00 2001 From: Lionel Sausin Date: Tue, 8 Sep 2015 18:06:12 +0200 Subject: [PATCH 05/34] Revert changes to computation of _immediately_usable_qty Commit 6c16913 changed the way we compute the immediately_usable_qty: instead of using the virtual stock, we used the sum of quants without reservations. But a quant may actually be reserved and still be available (for example it may be reserved for an internal move). Fixes https://github.com/OCA/stock-logistics-warehouse/issues/79 Remove loop and use correct decorator Restore the features of stock_available_immediately The previous fix restored stock_available but then there was no way to exclude the incomming moves from the count. This belongs in stock_available_immediately, restoring it cleanly. This commit also takes care to respect the distinction between templates and variants, so it should fix https://github.com/OCA/stock-logistics-warehouse/issues/73 too. Restore the qty avail. to promise on variant treeview PEP8 --- stock_available/__init__.py | 3 +- stock_available/__openerp__.py | 7 +- stock_available/models/__init__.py | 23 ++++ .../{product.py => models/product_product.py} | 40 ++---- stock_available/models/product_template.py | 42 ++++++ stock_available/{ => models}/res_config.py | 0 stock_available/tests/test_stock_available.py | 120 ------------------ .../views/product_product_view.xml | 20 +++ .../product_template_view.xml} | 0 .../{ => views}/res_config_view.xml | 0 10 files changed, 102 insertions(+), 153 deletions(-) create mode 100644 stock_available/models/__init__.py rename stock_available/{product.py => models/product_product.py} (54%) create mode 100644 stock_available/models/product_template.py rename stock_available/{ => models}/res_config.py (100%) delete mode 100644 stock_available/tests/test_stock_available.py create mode 100644 stock_available/views/product_product_view.xml rename stock_available/{product_view.xml => views/product_template_view.xml} (100%) rename stock_available/{ => views}/res_config_view.xml (100%) diff --git a/stock_available/__init__.py b/stock_available/__init__.py index 6dff1269a..036bf665c 100644 --- a/stock_available/__init__.py +++ b/stock_available/__init__.py @@ -18,5 +18,4 @@ # ############################################################################## -from . import product -from . import res_config +from . import models diff --git a/stock_available/__openerp__.py b/stock_available/__openerp__.py index 608e6b8f4..027c5c02a 100644 --- a/stock_available/__openerp__.py +++ b/stock_available/__openerp__.py @@ -26,7 +26,8 @@ 'depends': ['stock'], 'license': 'AGPL-3', 'data': [ - 'product_view.xml', - 'res_config_view.xml', - ] + 'views/product_template_view.xml', + 'views/product_product_view.xml', + 'views/res_config_view.xml', + ], } diff --git a/stock_available/models/__init__.py b/stock_available/models/__init__.py new file mode 100644 index 000000000..bf26a289f --- /dev/null +++ b/stock_available/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# This module is copyright (C) 2014 Numérigraphe SARL. All Rights Reserved. +# +# 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 . +# +############################################################################## + +from . import product_template +from . import product_product +from . import res_config diff --git a/stock_available/product.py b/stock_available/models/product_product.py similarity index 54% rename from stock_available/product.py rename to stock_available/models/product_product.py index 2a0f6c598..7335f641a 100644 --- a/stock_available/product.py +++ b/stock_available/models/product_product.py @@ -22,45 +22,29 @@ from openerp import models, fields, api from openerp.addons import decimal_precision as dp -class ProductTemplate(models.Model): +class ProductProduct(models.Model): """Add a field for the stock available to promise. Useful implementations need to be installed through the Settings menu or by installing one of the modules stock_available_* """ - _inherit = 'product.template' + _inherit = 'product.product' - # immediately usable quantity caluculated with the quant method - @api.multi + @api.one @api.depends('virtual_available') def _immediately_usable_qty(self): - stock_location_obj = self.env['stock.location'] - internal_locations = stock_location_obj.search([ - ('usage', '=', 'internal')]) - sublocations = self.env['stock.location'] - for location in internal_locations: - sublocations += stock_location_obj.search( - [('id', 'child_of', location.id)]) - for product_template in self: - products = self.env['product.product'].search([ - ('product_tmpl_id', '=', product_template.id)]) - quant_obj = self.env['stock.quant'] - quants = quant_obj.search([ - ('location_id', 'in', sublocations.ids), - ('product_id', 'in', products.ids), - ('reservation_id', '=', False)]) - availability = 0 - if quants: - for quant in quants: - availability += quant.qty - product_template.immediately_usable_qty = availability + """No-op implementation of the stock available to promise. + + By default, available to promise = forecasted quantity. + + Must be overridden by another module that actually implement + computations.""" + self.immediately_usable_qty = self.virtual_available immediately_usable_qty = fields.Float( digits=dp.get_precision('Product Unit of Measure'), compute='_immediately_usable_qty', - string='Available to promise (quant calculation)', + string='Available to promise', help="Stock for this Product that can be safely proposed " "for sale to Customers.\n" "The definition of this value can be configured to suit " - "your needs , this number is obtained by using the new odoo 8 " - "quants, so it gives us the actual current quants minus reserved" - "quants") + "your needs") diff --git a/stock_available/models/product_template.py b/stock_available/models/product_template.py new file mode 100644 index 000000000..fe55ecc47 --- /dev/null +++ b/stock_available/models/product_template.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# This module is copyright (C) 2014 Numérigraphe SARL. All Rights Reserved. +# +# 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 . +# +############################################################################## + +from openerp import models, fields, api +from openerp.addons import decimal_precision as dp + + +class ProductTemplate(models.Model): + _inherit = 'product.template' + + @api.one + @api.depends('virtual_available') + def _immediately_usable_qty(self): + """Compute the quantity using all the variants""" + self.immediately_usable_qty = sum( + [v.immediately_usable_qty for v in self.product_variant_ids]) + + immediately_usable_qty = fields.Float( + digits=dp.get_precision('Product Unit of Measure'), + compute='_immediately_usable_qty', + string='Available to promise', + help="Stock for this Product that can be safely proposed " + "for sale to Customers.\n" + "The definition of this value can be configured to suit " + "your needs") diff --git a/stock_available/res_config.py b/stock_available/models/res_config.py similarity index 100% rename from stock_available/res_config.py rename to stock_available/models/res_config.py diff --git a/stock_available/tests/test_stock_available.py b/stock_available/tests/test_stock_available.py deleted file mode 100644 index 2c46f6460..000000000 --- a/stock_available/tests/test_stock_available.py +++ /dev/null @@ -1,120 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (C) 2015 Therp BV -# -# 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 . -# -############################################################################## -from openerp.tests.common import TransactionCase - - -class testStockLogisticsWarehouse(TransactionCase): - - def test01_stock_levels(self): - """checking that immediately_usable_qty actually reflects \ -the variations in stock, both on product and template""" - moveObj = self.env['stock.move'] - productObj = self.env['product.product'] - templateObj = self.env['product.template'] - supplier_location = self.env.ref('stock.stock_location_suppliers') - stock_location = self.env.ref('stock.stock_location_stock') - customer_location = self.env.ref('stock.stock_location_customers') - uom_unit = self.env.ref('product.product_uom_unit') - - # Create product template - templateAB = templateObj.create( - {'name': 'templAB', - 'uom_id': uom_unit.id, - }) - - # Create product A and B - productA = productObj.create( - {'name': 'product A', - 'standard_price': 1, - 'type': 'product', - 'uom_id': uom_unit.id, - 'default_code': 'A', - 'product_tmpl_id': templateAB.id, - }) - - productB = productObj.create( - {'name': 'product B', - 'standard_price': 1, - 'type': 'product', - 'uom_id': uom_unit.id, - 'default_code': 'B', - 'product_tmpl_id': templateAB.id, - }) - - # Create a stock move from INCOMING to STOCK - stockMoveInA = moveObj.create( - {'location_id': supplier_location.id, - 'location_dest_id': stock_location.id, - 'name': 'MOVE INCOMING -> STOCK ', - 'product_id': productA.id, - 'product_uom': productA.uom_id.id, - 'product_uom_qty': 2, - }) - - stockMoveInB = moveObj.create( - {'location_id': supplier_location.id, - 'location_dest_id': stock_location.id, - 'name': 'MOVE INCOMING -> STOCK ', - 'product_id': productB.id, - 'product_uom': productB.uom_id.id, - 'product_uom_qty': 3, - }) - - def compare_product_usable_qty(product, value): - # Refresh, because the function field is not recalculated between - # transactions - product.refresh() - self.assertEqual(product.immediately_usable_qty, value) - - compare_product_usable_qty(productA, 0) - compare_product_usable_qty(templateAB, 0) - - stockMoveInA.action_confirm() - compare_product_usable_qty(productA, 0) - compare_product_usable_qty(templateAB, 0) - - stockMoveInA.action_assign() - compare_product_usable_qty(productA, 0) - compare_product_usable_qty(templateAB, 0) - - stockMoveInA.action_done() - compare_product_usable_qty(productA, 2) - compare_product_usable_qty(templateAB, 2) - - # will directly trigger action_done on productB - stockMoveInB.action_done() - compare_product_usable_qty(productA, 2) - compare_product_usable_qty(productB, 3) - compare_product_usable_qty(templateAB, 5) - - # Create a stock move from STOCK to CUSTOMER - stockMoveOutA = moveObj.create( - {'location_id': stock_location.id, - 'location_dest_id': customer_location.id, - 'name': ' STOCK --> CUSTOMER ', - 'product_id': productA.id, - 'product_uom': productA.uom_id.id, - 'product_uom_qty': 1, - 'state': 'confirmed', - }) - - stockMoveOutA.action_done() - compare_product_usable_qty(productA, 1) - compare_product_usable_qty(templateAB, 4) diff --git a/stock_available/views/product_product_view.xml b/stock_available/views/product_product_view.xml new file mode 100644 index 000000000..22dd36b2e --- /dev/null +++ b/stock_available/views/product_product_view.xml @@ -0,0 +1,20 @@ + + + + + Quantity available to promise (variant tree) + product.product + + + + + red:immediately_usable_qty<0;blue:immediately_usable_qty>=0 and state in ('draft', 'end', 'obsolete');black:immediately_usable_qty>=0 and state not in ('draft', 'end', 'obsolete') + + + + + + + + + diff --git a/stock_available/product_view.xml b/stock_available/views/product_template_view.xml similarity index 100% rename from stock_available/product_view.xml rename to stock_available/views/product_template_view.xml diff --git a/stock_available/res_config_view.xml b/stock_available/views/res_config_view.xml similarity index 100% rename from stock_available/res_config_view.xml rename to stock_available/views/res_config_view.xml From 12c9c3a2412018ba2b30d16d816669986e9ab0c0 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Mon, 5 Oct 2015 06:16:20 -0400 Subject: [PATCH 06/34] OCA Transbot updated translations from Transifex --- stock_available/i18n/ca.po | 129 +++++++++++++++++++++++++++ stock_available/i18n/cs_CZ.po | 161 ++++++++++++++++++++++++++++++++++ stock_available/i18n/de.po | 76 ++++++++++++++++ stock_available/i18n/el_GR.po | 129 +++++++++++++++++++++++++++ stock_available/i18n/es.po | 143 ++++++++++++++++++++++++++++++ stock_available/i18n/es_ES.po | 129 +++++++++++++++++++++++++++ stock_available/i18n/es_MX.po | 129 +++++++++++++++++++++++++++ stock_available/i18n/eu.po | 129 +++++++++++++++++++++++++++ stock_available/i18n/fi.po | 59 +++++++++++++ stock_available/i18n/fr.po | 108 +++++++++-------------- stock_available/i18n/fr_CH.po | 129 +++++++++++++++++++++++++++ stock_available/i18n/fr_FR.po | 129 +++++++++++++++++++++++++++ stock_available/i18n/gl.po | 129 +++++++++++++++++++++++++++ stock_available/i18n/hr.po | 143 ++++++++++++++++++++++++++++++ stock_available/i18n/hr_HR.po | 145 ++++++++++++++++++++++++++++++ stock_available/i18n/it.po | 129 +++++++++++++++++++++++++++ stock_available/i18n/nl.po | 142 ++++++++++++++++++++++++++++++ stock_available/i18n/nl_NL.po | 130 +++++++++++++++++++++++++++ stock_available/i18n/pt.po | 129 +++++++++++++++++++++++++++ stock_available/i18n/pt_BR.po | 102 +++++++++++++++++++++ stock_available/i18n/ro.po | 129 +++++++++++++++++++++++++++ stock_available/i18n/ru.po | 142 ++++++++++++++++++++++++++++++ stock_available/i18n/sl.po | 101 +++++++++++++++++++++ stock_available/i18n/tr.po | 130 +++++++++++++++++++++++++++ stock_available/i18n/tr_TR.po | 129 +++++++++++++++++++++++++++ stock_available/i18n/vi_VN.po | 129 +++++++++++++++++++++++++++ stock_available/i18n/zh_CN.po | 102 +++++++++++++++++++++ 27 files changed, 3296 insertions(+), 65 deletions(-) create mode 100644 stock_available/i18n/ca.po create mode 100644 stock_available/i18n/cs_CZ.po create mode 100644 stock_available/i18n/de.po create mode 100644 stock_available/i18n/el_GR.po create mode 100644 stock_available/i18n/es.po create mode 100644 stock_available/i18n/es_ES.po create mode 100644 stock_available/i18n/es_MX.po create mode 100644 stock_available/i18n/eu.po create mode 100644 stock_available/i18n/fi.po create mode 100644 stock_available/i18n/fr_CH.po create mode 100644 stock_available/i18n/fr_FR.po create mode 100644 stock_available/i18n/gl.po create mode 100644 stock_available/i18n/hr.po create mode 100644 stock_available/i18n/hr_HR.po create mode 100644 stock_available/i18n/it.po create mode 100644 stock_available/i18n/nl.po create mode 100644 stock_available/i18n/nl_NL.po create mode 100644 stock_available/i18n/pt.po create mode 100644 stock_available/i18n/pt_BR.po create mode 100644 stock_available/i18n/ro.po create mode 100644 stock_available/i18n/ru.po create mode 100644 stock_available/i18n/sl.po create mode 100644 stock_available/i18n/tr.po create mode 100644 stock_available/i18n/tr_TR.po create mode 100644 stock_available/i18n/vi_VN.po create mode 100644 stock_available/i18n/zh_CN.po diff --git a/stock_available/i18n/ca.po b/stock_available/i18n/ca.po new file mode 100644 index 000000000..325a133e8 --- /dev/null +++ b/stock_available/i18n/ca.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-03 01:23+0000\n" +"PO-Revision-Date: 2017-06-03 01:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Producte" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Plantilla del producte" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/cs_CZ.po b/stock_available/i18n/cs_CZ.po new file mode 100644 index 000000000..3450cbc7c --- /dev/null +++ b/stock_available/i18n/cs_CZ.po @@ -0,0 +1,161 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# Lukáš Spurný , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-27 11:37+0000\n" +"PO-Revision-Date: 2018-02-27 11:37+0000\n" +"Last-Translator: Lukáš Spurný , 2018\n" +"Language-Team: Czech (Czech Republic) (https://www.transifex.com/oca/teams/23907/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "K dispozici 1" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "Potenciál 1" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "K dispozici pro slib:" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "K dispozici na slib" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" +"Zvolit pole produktu, který bude použit pro výpočet potenciálu. • Pokud je " +"prázdný, použije se množství On Hand. • Pouze množství polí má význam pro " +"výpočet zásob" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "Vyloučení zboží již v nabídkách prodeje" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "Vylučte příchozí zboží" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "Zahrnout výrobní potenciál" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "Potenciál" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Produkt" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Šablona produktu" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" +"Množství tohoto výrobku, které by mohlo být vyrobeno z materiálů, které jsou" +" již k dispozici." + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" +"Množství tohoto výrobku, které by mohlo být vyrobeno z materiálů, které jsou" +" již k dispozici. Pokud má produkt několik variant, bude to největší " +"množství, které lze vyrobit pro libovolnou variantu." + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "Zásoby k dispozici" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" +"Sklad pro tento produkt, který může být bezpečně navržen k prodeji " +"zákazníkům. Definice této hodnoty může být konfigurována tak, aby vyhovovala" +" vašim potřebám" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" +"Tím se přidá množství zboží, které lze okamžitě vyrobit, na množství, která " +"je k dispozici pro slib. \"Instaluje modul stock_available_mrp.\" Pokud " +"modul mrp není nainstalován, instaluje se taky" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" +"Tím se odečtou příchozí veličiny z množství, která je k dispozici pro slib. " +"\"Instaluje modul stock_available_immediately." + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will install them too" +msgstr "" +"Tím se odečtou množství z prodejních kotací z množství, která je k dispozici" +" pro slib. \"Instaluje moduly stock_available_sale.\" Pokud nejsou " +"nainstalovány moduly prodeje a sales_delivery_date, nainstalují se je také" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "na základě" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "stock.config.settings" diff --git a/stock_available/i18n/de.po b/stock_available/i18n/de.po new file mode 100644 index 000000000..6301f22f4 --- /dev/null +++ b/stock_available/i18n/de.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# Rudolf Schnapka , 2016 +msgid "" +msgstr "" +"Project-Id-Version: stock-logistics-warehouse (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-04-14 12:02+0000\n" +"PO-Revision-Date: 2016-04-22 09:17+0000\n" +"Last-Translator: Rudolf Schnapka \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-stock-logistics-warehouse-9-0/language/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "Verfügbar" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "Verfügbar für Zusage:" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "Verfügbar für Lieferversprechen" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "Warenzugänge ausschließen" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Produkt" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Produktvorlage" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "Bestand für Lieferversprechen verfügbar" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "Bestand dieses Produkts, der sicher einem Kunden verkauft werden kann.\nDie Definition dieses Werts kann an Ihre Bedürfnisse angepasst werden" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "Warenzugänge werden von dem für Lieferversprechen verfügbaren Bestand abgezogen.\nDas Modul stock_available_immediately wird installiert." + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "stock.config.settings" diff --git a/stock_available/i18n/el_GR.po b/stock_available/i18n/el_GR.po new file mode 100644 index 000000000..97df20eee --- /dev/null +++ b/stock_available/i18n/el_GR.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-03 01:23+0000\n" +"PO-Revision-Date: 2017-06-03 01:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Προϊόν" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/es.po b/stock_available/i18n/es.po new file mode 100644 index 000000000..063e0f6a6 --- /dev/null +++ b/stock_available/i18n/es.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +# enjolras , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-27 11:37+0000\n" +"PO-Revision-Date: 2018-02-27 11:37+0000\n" +"Last-Translator: enjolras , 2018\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/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: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "Disponible" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "Potencial" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "Potencial" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Producto" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Plantilla de producto" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "stock.config.settings" diff --git a/stock_available/i18n/es_ES.po b/stock_available/i18n/es_ES.po new file mode 100644 index 000000000..cbe2f751a --- /dev/null +++ b/stock_available/i18n/es_ES.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-03 01:23+0000\n" +"PO-Revision-Date: 2017-06-03 01:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Producto" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/es_MX.po b/stock_available/i18n/es_MX.po new file mode 100644 index 000000000..a7072e204 --- /dev/null +++ b/stock_available/i18n/es_MX.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-03 01:23+0000\n" +"PO-Revision-Date: 2017-06-03 01:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Plantilla del producto" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/eu.po b/stock_available/i18n/eu.po new file mode 100644 index 000000000..72e70af94 --- /dev/null +++ b/stock_available/i18n/eu.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-03 01:23+0000\n" +"PO-Revision-Date: 2017-06-03 01:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Produktua" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/fi.po b/stock_available/i18n/fi.po new file mode 100644 index 000000000..be5a3ab6e --- /dev/null +++ b/stock_available/i18n/fi.po @@ -0,0 +1,59 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: stock-logistics-warehouse (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-23 20:23+0000\n" +"PO-Revision-Date: 2015-09-15 13:04+0000\n" +"Last-Translator: <>\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-stock-logistics-warehouse-8-0/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available +#: view:product.template:stock_available.view_stock_available_kanban +msgid "Available to promise:" +msgstr "" + +#. module: stock_available +#: field:stock.config.settings,module_stock_available_immediately:0 +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Tuote" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Tuotteen malli" + +#. module: stock_available +#: view:stock.config.settings:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: help:stock.config.settings,module_stock_available_immediately:0 +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: view:product.product:stock_available.view_stock_available_tree_variant +#: view:product.template:stock_available.view_stock_available_tree +msgid "" +"red:immediately_usable_qty<0;blue:immediately_usable_qty>=0 and state in " +"('draft', 'end', 'obsolete');black:immediately_usable_qty>=0 and state not " +"in ('draft', 'end', 'obsolete')" +msgstr "" diff --git a/stock_available/i18n/fr.po b/stock_available/i18n/fr.po index 6c8e4c244..ea9bb8893 100644 --- a/stock_available/i18n/fr.po +++ b/stock_available/i18n/fr.po @@ -1,98 +1,76 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: -# * stock_available -# +# * stock_available +# +# Translators: +# Pierre Verkest , 2015 msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0\n" +"Project-Id-Version: stock-logistics-warehouse (9.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-07-30 16:42+0000\n" -"PO-Revision-Date: 2014-07-30 16:42+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" +"POT-Creation-Date: 2016-02-27 01:43+0000\n" +"PO-Revision-Date: 2016-02-26 16:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (http://www.transifex.com/oca/OCA-stock-logistics-warehouse-9-0/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available -#: field:product.product,immediately_usable_qty:0 +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty msgid "Available to promise" -msgstr "Disponible à la vente" +msgstr "" #. module: stock_available -#: view:product.product:0 -msgid "Available to promise:" -msgstr "Disponible à la vente:" - -#. module: stock_available -#: field:stock.config.settings,module_stock_available_sale:0 -msgid "Exclude goods already in sale quotations" -msgstr "Exclure les marchandises qui sont déjà dans les devis" - -#. module: stock_available -#: field:stock.config.settings,module_stock_available_immediately:0 +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "Exclure les receptions attendues" #. module: stock_available -#: field:stock.config.settings,module_stock_available_mrp:0 -msgid "Include the production potential" -msgstr "Inclure la production potentielle" - -#. module: stock_available -#: code:_description:0 #: model:ir.model,name:stock_available.model_product_product -#, python-format msgid "Product" msgstr "Article" #. module: stock_available -#: view:stock.config.settings:0 +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Modèle de produit" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "Stock disponible à la vente" #. module: stock_available -#: help:product.product,immediately_usable_qty:0 -msgid "Stock for this Product that can be safely proposed for sale to Customers.\n" +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" -msgstr "Stock de cet article qui peut sans risque être proposé à la vente aux clients.\n" -"La définition de cette valeur est paramétrable selon vos besoins" +msgstr "" #. module: stock_available -#: help:stock.config.settings,module_stock_available_mrp:0 -msgid "This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" -"This installs the module stock_available_mrp.\n" -"If the module mrp is not installed, this will install it too" -msgstr "Ceci ajoute les quantités de marchandises qui peuvent être immédiatement fabriquées, aux quantitiés disponibles à la vente.\n" -"Ceci installe le module stock_available_mrp.\n" -"Si le module mrp n'est pas encore installé, il le sera aussi" - -#. module: stock_available -#: help:stock.config.settings,module_stock_available_immediately:0 -msgid "This will subtract incoming quantities from the quantities available to promise.\n" +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" "This installs the module stock_available_immediately." -msgstr "Ceci soustrait les réceptions attendues des quantitiés disponibles à la vente.\n" -"Ceci installe le module stock_available_immediately." +msgstr "Ceci soustrait les réceptions attendues des quantitiés disponibles à la vente.\nCeci installe le module stock_available_immediately." #. module: stock_available -#: help:stock.config.settings,module_stock_available_sale:0 -msgid "This will subtract quantities from the sale quotations from the quantities available to promise.\n" -"This installs the modules stock_available_sale.\n" -"If the modules sale and sale_delivery_date are not installed, this will install them too" -msgstr "Ceci soustrait les quantités des devis de vente des quantitiés disponibles à la vente.\n" -"Ceci installe le modules stock_available_sale.\n" -"Si les modules sale et sale_delivery_date ne sont pas encore installés, ils le seront également" - -#. module: stock_available -#: view:product.product:0 -msgid "red:immediately_usable_qty<0;blue:immediately_usable_qty>=0 and state in ('draft', 'end', 'obsolete');black:immediately_usable_qty>=0 and state not in ('draft', 'end', 'obsolete')" -msgstr "red:immediately_usable_qty<0;blue:immediately_usable_qty>=0 and state in ('draft', 'end', 'obsolete');black:immediately_usable_qty>=0 and state not in ('draft', 'end', 'obsolete')" - -#. module: stock_available -#: code:_description:0 #: model:ir.model,name:stock_available.model_stock_config_settings -#, python-format msgid "stock.config.settings" -msgstr "stock.config.settings" - +msgstr "" diff --git a/stock_available/i18n/fr_CH.po b/stock_available/i18n/fr_CH.po new file mode 100644 index 000000000..67135ac78 --- /dev/null +++ b/stock_available/i18n/fr_CH.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-03 01:23+0000\n" +"PO-Revision-Date: 2017-06-03 01:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Produit" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Template de produit" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/fr_FR.po b/stock_available/i18n/fr_FR.po new file mode 100644 index 000000000..838006cd8 --- /dev/null +++ b/stock_available/i18n/fr_FR.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-03 01:23+0000\n" +"PO-Revision-Date: 2017-06-03 01:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Produit" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/gl.po b/stock_available/i18n/gl.po new file mode 100644 index 000000000..587917d93 --- /dev/null +++ b/stock_available/i18n/gl.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-03 01:23+0000\n" +"PO-Revision-Date: 2017-06-03 01:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Produto" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/hr.po b/stock_available/i18n/hr.po new file mode 100644 index 000000000..a00dbcb48 --- /dev/null +++ b/stock_available/i18n/hr.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-27 11:37+0000\n" +"PO-Revision-Date: 2018-02-27 11:37+0000\n" +"Last-Translator: Bole , 2018\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "Raspoloživo" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "Potencijalno" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "Raspoloživo za obećati:" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "Raspoloživo za obećati" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "Isključi dobra već u prodajnim nalozima" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "Isključi robu u dolasku" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "Isključi potencijal proizvodnje" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "Potencijal" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Proizvod" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Predložak proizvoda" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "Zaliha raspoloživa za obećati" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "bazirano na" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "stock.config.settings" diff --git a/stock_available/i18n/hr_HR.po b/stock_available/i18n/hr_HR.po new file mode 100644 index 000000000..79e40591a --- /dev/null +++ b/stock_available/i18n/hr_HR.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2016 +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-02 00:35+0000\n" +"PO-Revision-Date: 2017-05-02 00:35+0000\n" +"Last-Translator: Bole , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "Dostupno" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "Potencijal" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "Dostupno za rezervirati:" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "Dostupno za rezervirati:" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" +"Izaberite polje na proizvodu koje će se koristiti za izračun potencijala.\n" +"Ukoliko je prazno, koristi se količina na raspolaganju.\n" +"Samo polja količine imaju značaj pri izračunu zalihe." + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "Isključi robu u dolasku" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "Uključi potencijale proizvodnje" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "Potencijal" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Proizvod" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Predložak proizvoda" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" +"Količina ovog proizvoda koja može biti proizvoedena korištenjem trenutno " +"raspoloživih materijala." + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" +"Količina ovog proizvoda koja može biti proizvedena korištenjem trenutno " +"raspoloživih materijala. Ukoliko proizvoda ima više varijanti, ovo će " +"pokazati najveću količinu koja može biti proizvoedena za bilokoju varijantu." + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "Zaliha dostupna za rezervacije" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" +"Zaliha ovog proizvoda koja može biti predložena za prodaju kupcima.\n" +"Definicija ove vrijednosti može biti podešena da odgovara vašim potrebama." + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" +"Ovo će dodati količinu robe koja može biti odmah proizvedena, količinama raspoloživim za rezervacije.\n" +"Ovo instalira modul stock_available_mrp.\n" +"Ukoliko modul mrp nije instaliran, instalirati će i njega." + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" +"Ovo će oduzeti količine robe u dolasku od količina raspoloživih za rezervacije.\n" +"Ovo instalira modul_stock_available_emediatly." + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "bazirano na" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "stock.config.settings" diff --git a/stock_available/i18n/it.po b/stock_available/i18n/it.po new file mode 100644 index 000000000..ab9407ed5 --- /dev/null +++ b/stock_available/i18n/it.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-03 01:23+0000\n" +"PO-Revision-Date: 2017-06-03 01:23+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/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: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Prodotto" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Template Prodotto" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/nl.po b/stock_available/i18n/nl.po new file mode 100644 index 000000000..05cda51d8 --- /dev/null +++ b/stock_available/i18n/nl.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-16 14:35+0000\n" +"PO-Revision-Date: 2018-01-16 14:35+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Product" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Productsjabloon" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/nl_NL.po b/stock_available/i18n/nl_NL.po new file mode 100644 index 000000000..b59d117f8 --- /dev/null +++ b/stock_available/i18n/nl_NL.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-23 00:57+0000\n" +"PO-Revision-Date: 2017-06-23 00:57+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "Beschikbaar" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "Vrije Voorraad:" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "Vrije Voorraad" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "Inkomende goederen uitzonderen" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Product" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Productsjabloon" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "Vrije voorraad" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "Gebaseerd op" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "stock.config.settings" diff --git a/stock_available/i18n/pt.po b/stock_available/i18n/pt.po new file mode 100644 index 000000000..7b06bcb97 --- /dev/null +++ b/stock_available/i18n/pt.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-03 01:23+0000\n" +"PO-Revision-Date: 2017-06-03 01:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Produto" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/pt_BR.po b/stock_available/i18n/pt_BR.po new file mode 100644 index 000000000..68514329e --- /dev/null +++ b/stock_available/i18n/pt_BR.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# Claudio Araujo Santos , 2016 +msgid "" +msgstr "" +"Project-Id-Version: stock-logistics-warehouse (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-03 20:56+0000\n" +"PO-Revision-Date: 2016-07-07 19:37+0000\n" +"Last-Translator: Claudio Araujo Santos \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-stock-logistics-warehouse-9-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: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "Disponível" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "Disponível a prometer" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "Disponível a prometer" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "Escolha do campo do produto que vai ser utilizado para calcular potencial.\nSe vazio, quantidade disponível é utilizada.\nSomente os campos de quantidade têm significado para computação estoque" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "Excluir entrada de mercadorias" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "Incluir o potencial de produção" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Produto" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Modelo Produto" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "Estoque disponível para prometer" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "Estoque para este produto que pode ser proposto com segurança para a venda aos clientes.\nA definição deste valor pode ser configurado para atender às suas necessidades" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "Isto irá adicionar as quantidades de produtos que podem ser fabricados de imediato, para as quantidades disponíveis para prometer.\nIsso instala o stock_available_mrp módulo.\nSe o MRP módulo não está instalado, este irá instalar-lo também" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "Isto irá subtrair quantidades recebidas a partir das quantidades disponíveis para prometer.\nIsso instala o módulo stock_available_immediately." + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "Baseado em" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "stock.config.settings" diff --git a/stock_available/i18n/ro.po b/stock_available/i18n/ro.po new file mode 100644 index 000000000..2b964c8c4 --- /dev/null +++ b/stock_available/i18n/ro.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-03 01:23+0000\n" +"PO-Revision-Date: 2017-06-03 01:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/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: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Produs" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Produs șablon" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/ru.po b/stock_available/i18n/ru.po new file mode 100644 index 000000000..789971e5d --- /dev/null +++ b/stock_available/i18n/ru.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-16 14:35+0000\n" +"PO-Revision-Date: 2018-01-16 14:35+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Товар/Услуга" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/sl.po b/stock_available/i18n/sl.po new file mode 100644 index 000000000..af3df45bc --- /dev/null +++ b/stock_available/i18n/sl.po @@ -0,0 +1,101 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: stock-logistics-warehouse (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-04-30 03:10+0000\n" +"PO-Revision-Date: 2016-04-27 11:10+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-stock-logistics-warehouse-9-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: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Proizvod" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Predloga proizvoda" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/tr.po b/stock_available/i18n/tr.po new file mode 100644 index 000000000..dd03191dd --- /dev/null +++ b/stock_available/i18n/tr.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +# Ediz Duman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-03 01:23+0000\n" +"PO-Revision-Date: 2017-06-03 01:23+0000\n" +"Last-Translator: Ediz Duman , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "Mevcut" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "Potansiyel" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "Potansiyel" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Ürün" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Ürün Şablonu" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/tr_TR.po b/stock_available/i18n/tr_TR.po new file mode 100644 index 000000000..ed0e7655f --- /dev/null +++ b/stock_available/i18n/tr_TR.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-03 01:23+0000\n" +"PO-Revision-Date: 2017-06-03 01:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Ürün" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Ürün şablonu" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/vi_VN.po b/stock_available/i18n/vi_VN.po new file mode 100644 index 000000000..ddf8ffdd3 --- /dev/null +++ b/stock_available/i18n/vi_VN.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-03 01:23+0000\n" +"PO-Revision-Date: 2017-06-03 01:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "Sản phẩm" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "Mẫu sản phẩm" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" diff --git a/stock_available/i18n/zh_CN.po b/stock_available/i18n/zh_CN.po new file mode 100644 index 000000000..1d423f790 --- /dev/null +++ b/stock_available/i18n/zh_CN.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +# Translators: +# Jeffery Chenn , 2016 +msgid "" +msgstr "" +"Project-Id-Version: stock-logistics-warehouse (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-28 10:00+0000\n" +"PO-Revision-Date: 2016-09-04 06:06+0000\n" +"Last-Translator: Jeffery Chenn \n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-stock-logistics-warehouse-9-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "可用" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "产品" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "产品模板" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "基于" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" From 94d1fb7ac68cd0f03e9b49867d719001d2f22a05 Mon Sep 17 00:00:00 2001 From: "Atchuthan, Sodexis" Date: Wed, 10 Feb 2016 11:41:48 +0530 Subject: [PATCH 07/34] [9.0][PORT] Stock available --- stock_available/README.rst | 1 + stock_available/__init__.py | 20 +-------- stock_available/__openerp__.py | 25 +++-------- stock_available/models/__init__.py | 24 ++-------- stock_available/models/product_product.py | 23 ++-------- stock_available/models/product_template.py | 20 +-------- stock_available/models/res_config.py | 21 ++------- .../views/product_product_view.xml | 29 +++++++----- .../views/product_template_view.xml | 45 +++++++++++-------- stock_available/views/res_config_view.xml | 6 ++- 10 files changed, 69 insertions(+), 145 deletions(-) diff --git a/stock_available/README.rst b/stock_available/README.rst index e2b71b3be..e2fd42825 100644 --- a/stock_available/README.rst +++ b/stock_available/README.rst @@ -31,6 +31,7 @@ Contributors ------------ * Lionel Sausin (Numérigraphe) +* Sodexis * many others contributed to sub-modules, please refer to each sub-module's credits Maintainer diff --git a/stock_available/__init__.py b/stock_available/__init__.py index 036bf665c..4016a3092 100644 --- a/stock_available/__init__.py +++ b/stock_available/__init__.py @@ -1,21 +1,5 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# This module is copyright (C) 2014 Numérigraphe SARL. All Rights Reserved. -# -# 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 . -# -############################################################################## +# © 2014 Numérigraphe, Sodexis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import models diff --git a/stock_available/__openerp__.py b/stock_available/__openerp__.py index 027c5c02a..14dcb7397 100644 --- a/stock_available/__openerp__.py +++ b/stock_available/__openerp__.py @@ -1,27 +1,11 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# This module is copyright (C) 2014 Numérigraphe SARL. All Rights Reserved. -# -# 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 . -# -############################################################################## +# © 2014 Numérigraphe, Sodexis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { 'name': 'Stock available to promise', - 'version': '8.0.2.0.0', - "author": u"Numérigraphe,Odoo Community Association (OCA)", + 'version': '9.0.1.0.0', + "author": "Numérigraphe, Sodexis, Odoo Community Association (OCA)", 'category': 'Warehouse', 'depends': ['stock'], 'license': 'AGPL-3', @@ -30,4 +14,5 @@ 'views/product_product_view.xml', 'views/res_config_view.xml', ], + 'installable': True, } diff --git a/stock_available/models/__init__.py b/stock_available/models/__init__.py index bf26a289f..c74571e26 100644 --- a/stock_available/models/__init__.py +++ b/stock_available/models/__init__.py @@ -1,23 +1,5 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# This module is copyright (C) 2014 Numérigraphe SARL. All Rights Reserved. -# -# 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 . -# -############################################################################## +# © 2014 Numérigraphe, Sodexis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from . import product_template -from . import product_product -from . import res_config +from . import product_template, product_product, res_config diff --git a/stock_available/models/product_product.py b/stock_available/models/product_product.py index 7335f641a..e9fe960e4 100644 --- a/stock_available/models/product_product.py +++ b/stock_available/models/product_product.py @@ -1,28 +1,13 @@ -#-*- coding: utf-8 -*- -############################################################################## -# -# This module is copyright (C) 2014 Numérigraphe SARL. All Rights Reserved. -# -# 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 . -# -############################################################################## +# -*- coding: utf-8 -*- +# © 2014 Numérigraphe, Sodexis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import models, fields, api from openerp.addons import decimal_precision as dp class ProductProduct(models.Model): + """Add a field for the stock available to promise. Useful implementations need to be installed through the Settings menu or by installing one of the modules stock_available_* diff --git a/stock_available/models/product_template.py b/stock_available/models/product_template.py index fe55ecc47..cdff1f35e 100644 --- a/stock_available/models/product_template.py +++ b/stock_available/models/product_template.py @@ -1,22 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# This module is copyright (C) 2014 Numérigraphe SARL. All Rights Reserved. -# -# 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 . -# -############################################################################## +# © 2014 Numérigraphe, Sodexis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import models, fields, api from openerp.addons import decimal_precision as dp diff --git a/stock_available/models/res_config.py b/stock_available/models/res_config.py index a07c9552a..11cc77614 100644 --- a/stock_available/models/res_config.py +++ b/stock_available/models/res_config.py @@ -1,27 +1,12 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# This module is copyright (C) 2014 Numérigraphe SARL. All Rights Reserved. -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -# -############################################################################## +# © 2014 Numérigraphe, Sodexis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import models, fields class StockConfig(models.TransientModel): + """Add options to easily install the submodules""" _inherit = 'stock.config.settings' diff --git a/stock_available/views/product_product_view.xml b/stock_available/views/product_product_view.xml index 22dd36b2e..3c0a2c8bb 100644 --- a/stock_available/views/product_product_view.xml +++ b/stock_available/views/product_product_view.xml @@ -1,20 +1,27 @@ + + - + Quantity available to promise (variant tree) product.product - + - - - red:immediately_usable_qty<0;blue:immediately_usable_qty>=0 and state in ('draft', 'end', 'obsolete');black:immediately_usable_qty>=0 and state not in ('draft', 'end', 'obsolete') - - - - - + + + - + \ No newline at end of file diff --git a/stock_available/views/product_template_view.xml b/stock_available/views/product_template_view.xml index 2b2ee78be..d24322f18 100644 --- a/stock_available/views/product_template_view.xml +++ b/stock_available/views/product_template_view.xml @@ -1,43 +1,50 @@ + + Quantity available to promise (form) product.template - + - - - - + + + - Quantity available to promise (tree) product.template - - - red:immediately_usable_qty<0;blue:immediately_usable_qty>=0 and state in ('draft', 'end', 'obsolete');black:immediately_usable_qty>=0 and state not in ('draft', 'end', 'obsolete') - - - - - + + red:immediately_usable_qty<0;blue:immediately_usable_qty>=0 and state in ('draft', 'end', 'obsolete');black:immediately_usable_qty>=0 and state not in ('draft', 'end', 'obsolete') + + + + - Quantity available to promise (kanban) product.template - -
  • Available to promise:
  • -
    +
      +
    • Available to Promise:
    • +
    -
    + \ No newline at end of file diff --git a/stock_available/views/res_config_view.xml b/stock_available/views/res_config_view.xml index 850355b67..51eaca46f 100644 --- a/stock_available/views/res_config_view.xml +++ b/stock_available/views/res_config_view.xml @@ -1,4 +1,7 @@ + + @@ -12,7 +15,8 @@
    - - \ No newline at end of file + diff --git a/stock_available/views/product_template_view.xml b/stock_available/views/product_template_view.xml index d24322f18..e5705d63f 100644 --- a/stock_available/views/product_template_view.xml +++ b/stock_available/views/product_template_view.xml @@ -1,9 +1,9 @@ - - - + Quantity available to promise (form) product.template @@ -12,7 +12,7 @@ +
    @@ -29,7 +38,8 @@ - red:immediately_usable_qty<0;blue:immediately_usable_qty>=0 and state in ('draft', 'end', 'obsolete');black:immediately_usable_qty>=0 and state not in ('draft', 'end', 'obsolete') + virtual_available<0 or immediately_usable_qty<0 + virtual_available>=0 or immediately_usable_qty>0 @@ -46,5 +56,4 @@ - - \ No newline at end of file + diff --git a/stock_available/views/res_config_view.xml b/stock_available/views/res_config_view.xml index d9b06a564..95b68e371 100644 --- a/stock_available/views/res_config_view.xml +++ b/stock_available/views/res_config_view.xml @@ -1,9 +1,9 @@ - - - + Stock settings: quantity available to promise stock.config.settings @@ -35,5 +35,4 @@ - - \ No newline at end of file + From 4988d742183f801d95da642bfa2234ec1d9f3eb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Pigeon?= Date: Tue, 9 May 2017 12:35:23 +0200 Subject: [PATCH 13/34] [10.0]stock_available: improve computation performance [CHG] improve code regarding code review [ADD] add test [CHG] optimize stock computation by avoiding to call useless compute --- stock_available/README.rst | 3 +- stock_available/models/product_product.py | 38 +++---- stock_available/models/product_template.py | 56 +++++----- stock_available/tests/test_stock_available.py | 102 +++++++++++++++++- 4 files changed, 147 insertions(+), 52 deletions(-) diff --git a/stock_available/README.rst b/stock_available/README.rst index d996ef92f..f4085a78c 100644 --- a/stock_available/README.rst +++ b/stock_available/README.rst @@ -58,6 +58,7 @@ Contributors * Lionel Sausin (Numérigraphe) * Sodexis +* Cédric Pigeon Maintainer ---------- @@ -72,4 +73,4 @@ 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. \ No newline at end of file +To contribute to this module, please visit https://odoo-community.org. diff --git a/stock_available/models/product_product.py b/stock_available/models/product_product.py index d908c2ea4..762a69169 100644 --- a/stock_available/models/product_product.py +++ b/stock_available/models/product_product.py @@ -16,39 +16,35 @@ class ProductProduct(models.Model): _inherit = 'product.product' @api.multi - @api.depends('virtual_available') - def _compute_immediately_usable_qty(self): - """No-op implementation of the stock available to promise. - - By default, available to promise = forecasted quantity. - - **Each** sub-module **must** override this method in **both** - `product.product` **and** `product.template`, because we can't - decide in advance how to compute the template's quantity from the - variants. - """ - for prod in self: - prod.immediately_usable_qty = prod.virtual_available + def _compute_available_quantities_dict(self): + res = {} + for product in self: + res[product.id] = {} + res[product.id]['immediately_usable_qty'] = \ + product.virtual_available + res[product.id]['potential_qty'] = 0.0 + return res @api.multi - @api.depends() - def _compute_potential_qty(self): - """Set potential qty to 0.0 to define the field defintion used by - other modules to inherit it - """ + @api.depends('virtual_available') + def _compute_available_quantities(self): + res = self._compute_available_quantities_dict() for product in self: - product.potential_qty = 0.0 + data = res[product.id] + for key, value in data.iteritems(): + if hasattr(product, key): + product[key] = value immediately_usable_qty = fields.Float( digits=dp.get_precision('Product Unit of Measure'), - compute='_compute_immediately_usable_qty', + compute='_compute_available_quantities', string='Available to promise', help="Stock for this Product that can be safely proposed " "for sale to Customers.\n" "The definition of this value can be configured to suit " "your needs") potential_qty = fields.Float( - compute='_compute_potential_qty', + compute='_compute_available_quantities', digits=dp.get_precision('Product Unit of Measure'), string='Potential', help="Quantity of this Product that could be produced using " diff --git a/stock_available/models/product_template.py b/stock_available/models/product_template.py index dc032f0d3..7d23c6c01 100644 --- a/stock_available/models/product_template.py +++ b/stock_available/models/product_template.py @@ -11,46 +11,44 @@ class ProductTemplate(models.Model): _inherit = 'product.template' @api.multi - @api.depends('product_variant_ids.immediately_usable_qty') - def _compute_immediately_usable_qty(self): - """No-op implementation of the stock available to promise. - - By default, available to promise = forecasted quantity. - - **Each** sub-module **must** override this method in **both** - `product.product` **and** `product.template`, because we can't - decide in advance how to compute the template's quantity from the - variants. - """ - for tmpl in self: - tmpl.immediately_usable_qty = tmpl.virtual_available + @api.depends('product_variant_ids.immediately_usable_qty', + 'product_variant_ids.potential_qty') + def _compute_available_quantities(self): + res = self._compute_available_quantities_dict() + for product in self: + data = res[product.id] + for key, value in data.iteritems(): + if key in product._fields: + product[key] = value @api.multi - @api.depends('product_variant_ids.potential_qty') - def _compute_potential_qty(self): - """Compute the potential as the max of all the variants's potential. - - We can't add the potential of variants: if they share components we - may not be able to make all the variants. - So we set the arbitrary rule that we can promise up to the biggest - variant's potential. - """ - for tmpl in self: - if not tmpl.product_variant_ids: - continue - tmpl.potential_qty = max( - [v.potential_qty for v in tmpl.product_variant_ids]) + def _compute_available_quantities_dict(self): + variants_dict = self.mapped( + 'product_variant_ids')._compute_available_quantities_dict() + res = {} + for template in self: + immediately_usable_qty = sum( + [variants_dict[p.id]["immediately_usable_qty"] for p in + template.product_variant_ids]) + potential_qty = max( + [variants_dict[p.id]["potential_qty"] for p in + template.product_variant_ids] or [0.0]) + res[template.id] = { + "immediately_usable_qty": immediately_usable_qty, + "potential_qty": potential_qty, + } + return res immediately_usable_qty = fields.Float( digits=dp.get_precision('Product Unit of Measure'), - compute='_compute_immediately_usable_qty', + compute='_compute_available_quantities', string='Available to promise', help="Stock for this Product that can be safely proposed " "for sale to Customers.\n" "The definition of this value can be configured to suit " "your needs") potential_qty = fields.Float( - compute='_compute_potential_qty', + compute='_compute_available_quantities', digits=dp.get_precision('Product Unit of Measure'), string='Potential', help="Quantity of this Product that could be produced using " diff --git a/stock_available/tests/test_stock_available.py b/stock_available/tests/test_stock_available.py index 1c9dd0626..23025500f 100644 --- a/stock_available/tests/test_stock_available.py +++ b/stock_available/tests/test_stock_available.py @@ -7,7 +7,6 @@ from odoo.tests.common import TransactionCase class TestStockLogisticsWarehouse(TransactionCase): - def test_res_config(self): """Test the config file""" stock_setting = self.env['stock.config.settings'].create({}) @@ -20,3 +19,104 @@ class TestStockLogisticsWarehouse(TransactionCase): self.assertEquals( stock_setting.stock_available_mrp_based_on, 'immediately_usable_qty') + + def test01_stock_levels(self): + """checking that immediately_usable_qty actually reflects \ + the variations in stock, both on product and template""" + moveObj = self.env['stock.move'] + productObj = self.env['product.product'] + templateObj = self.env['product.template'] + supplier_location = self.env.ref('stock.stock_location_suppliers') + stock_location = self.env.ref('stock.stock_location_stock') + customer_location = self.env.ref('stock.stock_location_customers') + uom_unit = self.env.ref('product.product_uom_unit') + + # Create product template + templateAB = templateObj.create( + {'name': 'templAB', + 'uom_id': uom_unit.id, + }) + + # Create product A and B + productA = productObj.create( + {'name': 'product A', + 'standard_price': 1, + 'type': 'product', + 'uom_id': uom_unit.id, + 'default_code': 'A', + 'product_tmpl_id': templateAB.id, + }) + + productB = productObj.create( + {'name': 'product B', + 'standard_price': 1, + 'type': 'product', + 'uom_id': uom_unit.id, + 'default_code': 'B', + 'product_tmpl_id': templateAB.id, + }) + + # Create a stock move from INCOMING to STOCK + stockMoveInA = moveObj.create( + {'location_id': supplier_location.id, + 'location_dest_id': stock_location.id, + 'name': 'MOVE INCOMING -> STOCK ', + 'product_id': productA.id, + 'product_uom': productA.uom_id.id, + 'product_uom_qty': 2, + }) + + stockMoveInB = moveObj.create( + {'location_id': supplier_location.id, + 'location_dest_id': stock_location.id, + 'name': 'MOVE INCOMING -> STOCK ', + 'product_id': productB.id, + 'product_uom': productB.uom_id.id, + 'product_uom_qty': 3, + }) + + def compare_product_usable_qty(product, value): + # Refresh, because the function field is not recalculated between + # transactions + product.refresh() + self.assertEqual(product.immediately_usable_qty, value) + + compare_product_usable_qty(productA, 0) + compare_product_usable_qty(templateAB, 0) + + stockMoveInA.action_confirm() + compare_product_usable_qty(productA, 2) + compare_product_usable_qty(templateAB, 2) + + stockMoveInA.action_assign() + compare_product_usable_qty(productA, 2) + compare_product_usable_qty(templateAB, 2) + + stockMoveInA.action_done() + compare_product_usable_qty(productA, 2) + compare_product_usable_qty(templateAB, 2) + + # will directly trigger action_done on productB + stockMoveInB.action_done() + compare_product_usable_qty(productA, 2) + compare_product_usable_qty(productB, 3) + compare_product_usable_qty(templateAB, 5) + + # Create a stock move from STOCK to CUSTOMER + stockMoveOutA = moveObj.create( + {'location_id': stock_location.id, + 'location_dest_id': customer_location.id, + 'name': ' STOCK --> CUSTOMER ', + 'product_id': productA.id, + 'product_uom': productA.uom_id.id, + 'product_uom_qty': 1, + 'state': 'confirmed', + }) + + stockMoveOutA.action_done() + compare_product_usable_qty(productA, 1) + compare_product_usable_qty(templateAB, 4) + + # Potential Qty is set as 0.0 by default + self.assertEquals(templateAB.potential_qty, 0.0) + self.assertEquals(productA.potential_qty, 0.0) From 1df96ff831cce0bbf2acf1f4f2129b4208ff28bf Mon Sep 17 00:00:00 2001 From: David Vidal Date: Mon, 4 Sep 2017 19:08:56 +0200 Subject: [PATCH 14/34] [MIG] stock_available_sale: Migration to 10.0 --- stock_available/models/res_config.py | 14 +++--- stock_available/views/res_config_view.xml | 58 +++++++++++------------ 2 files changed, 36 insertions(+), 36 deletions(-) diff --git a/stock_available/models/res_config.py b/stock_available/models/res_config.py index aec970a73..6e0afe2aa 100644 --- a/stock_available/models/res_config.py +++ b/stock_available/models/res_config.py @@ -28,13 +28,13 @@ class StockConfig(models.TransientModel): "available to promise.\n" "This installs the module stock_available_immediately.") -# module_stock_available_sale = fields.Boolean( -# string='Exclude goods already in sale quotations', -# help="This will subtract quantities from the sale quotations from " -# "the quantities available to promise.\n" -# "This installs the modules stock_available_sale.\n" -# "If the modules sale and sale_delivery_date are not " -# "installed, this will install them too") + module_stock_available_sale = fields.Boolean( + string='Exclude goods already in sale quotations', + help="This will subtract quantities from the sale quotations from " + "the quantities available to promise.\n" + "This installs the modules stock_available_sale.\n" + "If the modules sale and sale_delivery_date are not " + "installed, this will install them too") module_stock_available_mrp = fields.Boolean( string='Include the production potential', diff --git a/stock_available/views/res_config_view.xml b/stock_available/views/res_config_view.xml index 95b68e371..f270e06ae 100644 --- a/stock_available/views/res_config_view.xml +++ b/stock_available/views/res_config_view.xml @@ -4,35 +4,35 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). --> - - Stock settings: quantity available to promise - stock.config.settings - - - - - - From 4579d28c1c026dbd01b8ffa8e27003a9356e2d56 Mon Sep 17 00:00:00 2001 From: Denis Roussel Date: Wed, 29 Nov 2017 18:13:25 +0100 Subject: [PATCH 15/34] [FIX] stock_available: Some affectations --- stock_available/models/product_product.py | 11 +++++------ stock_available/models/product_template.py | 3 +-- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/stock_available/models/product_product.py b/stock_available/models/product_product.py index 762a69169..fdce30316 100644 --- a/stock_available/models/product_product.py +++ b/stock_available/models/product_product.py @@ -19,10 +19,10 @@ class ProductProduct(models.Model): def _compute_available_quantities_dict(self): res = {} for product in self: - res[product.id] = {} - res[product.id]['immediately_usable_qty'] = \ - product.virtual_available - res[product.id]['potential_qty'] = 0.0 + res[product.id] = { + 'immediately_usable_qty': product.virtual_available, + 'potential_qty': 0.0 + } return res @api.multi @@ -30,8 +30,7 @@ class ProductProduct(models.Model): def _compute_available_quantities(self): res = self._compute_available_quantities_dict() for product in self: - data = res[product.id] - for key, value in data.iteritems(): + for key, value in res[product.id].iteritems(): if hasattr(product, key): product[key] = value diff --git a/stock_available/models/product_template.py b/stock_available/models/product_template.py index 7d23c6c01..55be51f92 100644 --- a/stock_available/models/product_template.py +++ b/stock_available/models/product_template.py @@ -16,8 +16,7 @@ class ProductTemplate(models.Model): def _compute_available_quantities(self): res = self._compute_available_quantities_dict() for product in self: - data = res[product.id] - for key, value in data.iteritems(): + for key, value in res[product.id].iteritems(): if key in product._fields: product[key] = value From cfb618e7881738cb72cd9b118d9203908da932af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Honor=C3=A9?= Date: Wed, 14 Feb 2018 16:23:50 +0100 Subject: [PATCH 16/34] [ADD] Add search function for immediately_usable_qty computed field + related unit test Increase version number of the module --- stock_available/__manifest__.py | 2 +- stock_available/models/product_product.py | 30 +++++++++++++++++++ stock_available/models/product_template.py | 30 +++++++++++++++++++ stock_available/tests/test_stock_available.py | 20 +++++++++++++ 4 files changed, 81 insertions(+), 1 deletion(-) diff --git a/stock_available/__manifest__.py b/stock_available/__manifest__.py index aa40dd404..a42fde78d 100644 --- a/stock_available/__manifest__.py +++ b/stock_available/__manifest__.py @@ -5,7 +5,7 @@ { 'name': 'Stock available to promise', - 'version': '10.0.1.0.0', + 'version': '10.0.1.0.1', "author": "Numérigraphe, Sodexis, Odoo Community Association (OCA)", 'category': 'Warehouse', 'depends': ['stock'], diff --git a/stock_available/models/product_product.py b/stock_available/models/product_product.py index fdce30316..196dff121 100644 --- a/stock_available/models/product_product.py +++ b/stock_available/models/product_product.py @@ -5,6 +5,16 @@ from odoo import models, fields, api from odoo.addons import decimal_precision as dp +import operator as py_operator + +OPERATORS = { + '<': py_operator.lt, + '>': py_operator.gt, + '<=': py_operator.le, + '>=': py_operator.ge, + '=': py_operator.eq, + '!=': py_operator.ne +} class ProductProduct(models.Model): @@ -37,6 +47,7 @@ class ProductProduct(models.Model): immediately_usable_qty = fields.Float( digits=dp.get_precision('Product Unit of Measure'), compute='_compute_available_quantities', + search="_search_immediately_usable_qty", string='Available to promise', help="Stock for this Product that can be safely proposed " "for sale to Customers.\n" @@ -48,3 +59,22 @@ class ProductProduct(models.Model): string='Potential', help="Quantity of this Product that could be produced using " "the materials already at hand.") + + @api.model + def _search_immediately_usable_qty(self, operator, value): + """ + Search function for the immediately_usable_qty field. + The search is quite similar to the Odoo search about quantity available + (addons/stock/models/product.py,253; _search_product_quantity function) + :param operator: str + :param value: str + :return: list of tuple (domain) + """ + products = self.search([]) + # Force prefetch + products.mapped("immediately_usable_qty") + product_ids = [] + for product in products: + if OPERATORS[operator](product.immediately_usable_qty, value): + product_ids.append(product.id) + return [('id', 'in', product_ids)] diff --git a/stock_available/models/product_template.py b/stock_available/models/product_template.py index 55be51f92..53be5c904 100644 --- a/stock_available/models/product_template.py +++ b/stock_available/models/product_template.py @@ -5,6 +5,16 @@ from odoo import models, fields, api from odoo.addons import decimal_precision as dp +import operator as py_operator + +OPERATORS = { + '<': py_operator.lt, + '>': py_operator.gt, + '<=': py_operator.le, + '>=': py_operator.ge, + '=': py_operator.eq, + '!=': py_operator.ne +} class ProductTemplate(models.Model): @@ -41,6 +51,7 @@ class ProductTemplate(models.Model): immediately_usable_qty = fields.Float( digits=dp.get_precision('Product Unit of Measure'), compute='_compute_available_quantities', + search="_search_immediately_usable_qty", string='Available to promise', help="Stock for this Product that can be safely proposed " "for sale to Customers.\n" @@ -54,3 +65,22 @@ class ProductTemplate(models.Model): "the materials already at hand. " "If the product has several variants, this will be the biggest " "quantity that can be made for a any single variant.") + + @api.model + def _search_immediately_usable_qty(self, operator, value): + """ + Search function for the immediately_usable_qty field. + The search is quite similar to the Odoo search about quantity available + (addons/stock/models/product.py,253; _search_product_quantity function) + :param operator: str + :param value: str + :return: list of tuple (domain) + """ + products = self.search([]) + # Force prefetch + products.mapped("immediately_usable_qty") + product_ids = [] + for product in products: + if OPERATORS[operator](product.immediately_usable_qty, value): + product_ids.append(product.id) + return [('id', 'in', product_ids)] diff --git a/stock_available/tests/test_stock_available.py b/stock_available/tests/test_stock_available.py index 23025500f..0d05e786c 100644 --- a/stock_available/tests/test_stock_available.py +++ b/stock_available/tests/test_stock_available.py @@ -76,10 +76,30 @@ class TestStockLogisticsWarehouse(TransactionCase): }) def compare_product_usable_qty(product, value): + """ + Compare the immediately_usable_qty with the given value + Check also the search function for the immediately_usable_qty field + :param product: product (template/product) recordset + :param value: int + :return: + """ # Refresh, because the function field is not recalculated between # transactions product.refresh() self.assertEqual(product.immediately_usable_qty, value) + # Now check search function + domain = [('immediately_usable_qty', '=', value)] + results = self.env[product._name].search(domain) + self.assertIn(product.id, results.ids) + domain = [('immediately_usable_qty', '!=', value)] + results = self.env[product._name].search(domain) + self.assertNotIn(product.id, results.ids) + domain = [('immediately_usable_qty', '>', value-1)] + results = self.env[product._name].search(domain) + self.assertIn(product.id, results.ids) + domain = [('immediately_usable_qty', '<', value+1)] + results = self.env[product._name].search(domain) + self.assertIn(product.id, results.ids) compare_product_usable_qty(productA, 0) compare_product_usable_qty(templateAB, 0) From af5398bef013a2fe7bf54796e6eae250d4bef573 Mon Sep 17 00:00:00 2001 From: Kiko Peiro Date: Tue, 14 Nov 2017 17:24:13 +0100 Subject: [PATCH 17/34] [MIG] stock_available: Migration to 11.0 --- stock_available/README.rst | 6 +- stock_available/__init__.py | 1 - stock_available/__manifest__.py | 5 +- stock_available/models/__init__.py | 3 +- stock_available/models/product_product.py | 1 - stock_available/models/product_template.py | 1 - .../{res_config.py => res_config_settings.py} | 25 ++++--- stock_available/tests/__init__.py | 1 - stock_available/tests/test_stock_available.py | 15 ++-- .../views/res_config_settings_views.xml | 72 +++++++++++++++++++ stock_available/views/res_config_view.xml | 38 ---------- 11 files changed, 97 insertions(+), 71 deletions(-) rename stock_available/models/{res_config.py => res_config_settings.py} (78%) create mode 100644 stock_available/views/res_config_settings_views.xml delete mode 100644 stock_available/views/res_config_view.xml diff --git a/stock_available/README.rst b/stock_available/README.rst index f4085a78c..60406583c 100644 --- a/stock_available/README.rst +++ b/stock_available/README.rst @@ -35,7 +35,7 @@ chose to base the computation on. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/153/10.0 + :target: https://runbot.odoo-community.org/runbot/153/11.0 Bug Tracker =========== @@ -58,7 +58,7 @@ Contributors * Lionel Sausin (Numérigraphe) * Sodexis -* Cédric Pigeon +* Factor Libre - Kiko Peiro Maintainer ---------- @@ -73,4 +73,4 @@ 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. +To contribute to this module, please visit https://odoo-community.org. \ No newline at end of file diff --git a/stock_available/__init__.py b/stock_available/__init__.py index 1c7afe72c..2c1e277e2 100644 --- a/stock_available/__init__.py +++ b/stock_available/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014 Numérigraphe # Copyright 2016 Sodexis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/stock_available/__manifest__.py b/stock_available/__manifest__.py index a42fde78d..ea5963f16 100644 --- a/stock_available/__manifest__.py +++ b/stock_available/__manifest__.py @@ -1,11 +1,10 @@ -# -*- coding: utf-8 -*- # Copyright 2014 Numérigraphe # Copyright 2016 Sodexis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { 'name': 'Stock available to promise', - 'version': '10.0.1.0.1', + 'version': '11.0.1.0.0', "author": "Numérigraphe, Sodexis, Odoo Community Association (OCA)", 'category': 'Warehouse', 'depends': ['stock'], @@ -13,7 +12,7 @@ 'data': [ 'views/product_template_view.xml', 'views/product_product_view.xml', - 'views/res_config_view.xml', + 'views/res_config_settings_views.xml', ], 'installable': True, } diff --git a/stock_available/models/__init__.py b/stock_available/models/__init__.py index ee9f0d3ba..9eef7e687 100644 --- a/stock_available/models/__init__.py +++ b/stock_available/models/__init__.py @@ -1,8 +1,7 @@ -# -*- coding: utf-8 -*- # Copyright 2014 Numérigraphe # Copyright 2016 Sodexis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import product_template from . import product_product -from . import res_config +from . import res_config_settings diff --git a/stock_available/models/product_product.py b/stock_available/models/product_product.py index 196dff121..36a4b3ae7 100644 --- a/stock_available/models/product_product.py +++ b/stock_available/models/product_product.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014 Numérigraphe # Copyright 2016 Sodexis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/stock_available/models/product_template.py b/stock_available/models/product_template.py index 53be5c904..2f81fbff7 100644 --- a/stock_available/models/product_template.py +++ b/stock_available/models/product_template.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014 Numérigraphe # Copyright 2016 Sodexis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/stock_available/models/res_config.py b/stock_available/models/res_config_settings.py similarity index 78% rename from stock_available/models/res_config.py rename to stock_available/models/res_config_settings.py index 6e0afe2aa..870207baa 100644 --- a/stock_available/models/res_config.py +++ b/stock_available/models/res_config_settings.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014 Numérigraphe # Copyright 2016 Sodexis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). @@ -6,10 +5,10 @@ from odoo import api, models, fields -class StockConfig(models.TransientModel): +class ResConfigSettings(models.TransientModel): """Add options to easily install the submodules""" - _inherit = 'stock.config.settings' + _inherit = 'res.config.settings' @api.model def _get_stock_available_mrp_based_on(self): @@ -54,17 +53,17 @@ class StockConfig(models.TransientModel): ) @api.model - def get_default_stock_available_mrp_based_on(self, fields): - res = {} - icp = self.env['ir.config_parameter'] - res['stock_available_mrp_based_on'] = icp.get_param( - 'stock_available_mrp_based_on', 'qty_available' + def get_values(self): + res = super(ResConfigSettings, self).get_values() + res.update(stock_available_mrp_based_on=self.env[ + 'ir.config_parameter'].sudo().get_param( + 'stock_available_mrp_based_on', + 'qty_available') ) return res @api.multi - def set_stock_available_mrp_based_on(self): - if self.stock_available_mrp_based_on: - icp = self.env['ir.config_parameter'] - icp.set_param('stock_available_mrp_based_on', - self.stock_available_mrp_based_on) + def set_values(self): + super(ResConfigSettings, self).set_values() + self.env['ir.config_parameter'].sudo().set_param( + 'stock_available_mrp_based_on', self.stock_available_mrp_based_on) diff --git a/stock_available/tests/__init__.py b/stock_available/tests/__init__.py index 2e7403795..678c94ff7 100644 --- a/stock_available/tests/__init__.py +++ b/stock_available/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014 Numérigraphe # Copyright 2016 Sodexis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/stock_available/tests/test_stock_available.py b/stock_available/tests/test_stock_available.py index 0d05e786c..40fae522d 100644 --- a/stock_available/tests/test_stock_available.py +++ b/stock_available/tests/test_stock_available.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014 Numérigraphe # Copyright 2016 Sodexis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). @@ -9,13 +8,13 @@ from odoo.tests.common import TransactionCase class TestStockLogisticsWarehouse(TransactionCase): def test_res_config(self): """Test the config file""" - stock_setting = self.env['stock.config.settings'].create({}) + stock_setting = self.env['res.config.settings'].create({}) self.assertEquals( stock_setting.stock_available_mrp_based_on, 'qty_available') stock_setting.stock_available_mrp_based_on = 'immediately_usable_qty' - stock_setting.set_stock_available_mrp_based_on() + stock_setting.set_values() self.assertEquals( stock_setting.stock_available_mrp_based_on, 'immediately_usable_qty') @@ -104,20 +103,20 @@ class TestStockLogisticsWarehouse(TransactionCase): compare_product_usable_qty(productA, 0) compare_product_usable_qty(templateAB, 0) - stockMoveInA.action_confirm() + stockMoveInA._action_confirm() compare_product_usable_qty(productA, 2) compare_product_usable_qty(templateAB, 2) - stockMoveInA.action_assign() + stockMoveInA._action_assign() compare_product_usable_qty(productA, 2) compare_product_usable_qty(templateAB, 2) - stockMoveInA.action_done() + stockMoveInA._action_done() compare_product_usable_qty(productA, 2) compare_product_usable_qty(templateAB, 2) # will directly trigger action_done on productB - stockMoveInB.action_done() + stockMoveInB._action_done() compare_product_usable_qty(productA, 2) compare_product_usable_qty(productB, 3) compare_product_usable_qty(templateAB, 5) @@ -133,7 +132,7 @@ class TestStockLogisticsWarehouse(TransactionCase): 'state': 'confirmed', }) - stockMoveOutA.action_done() + stockMoveOutA._action_done() compare_product_usable_qty(productA, 1) compare_product_usable_qty(templateAB, 4) diff --git a/stock_available/views/res_config_settings_views.xml b/stock_available/views/res_config_settings_views.xml new file mode 100644 index 000000000..8a5834629 --- /dev/null +++ b/stock_available/views/res_config_settings_views.xml @@ -0,0 +1,72 @@ + + + + + + Stock settings: quantity available to promise + res.config.settings + + + + +

    Stock available to promise

    +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    + + + + + + +
    +
    +
    +
    +
    +
    diff --git a/stock_available/views/res_config_view.xml b/stock_available/views/res_config_view.xml deleted file mode 100644 index f270e06ae..000000000 --- a/stock_available/views/res_config_view.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - Stock settings: quantity available to promise - stock.config.settings - - - - - - - - - - - From 8cff602b08ad197b5c593ca90e1c55d481ba6675 Mon Sep 17 00:00:00 2001 From: Alexandre Saunier Date: Fri, 20 Apr 2018 17:59:25 +0200 Subject: [PATCH 18/34] [FIX] Improve migration to 11.0 --- stock_available/README.rst | 4 +- stock_available/i18n/ca.po | 49 +++++-- stock_available/i18n/cs_CZ.po | 68 ++++++---- stock_available/i18n/de.po | 119 +++++++++++++++-- stock_available/i18n/el_GR.po | 52 ++++++-- stock_available/i18n/es.po | 45 ++++--- stock_available/i18n/es_ES.po | 52 ++++++-- stock_available/i18n/es_MX.po | 52 ++++++-- stock_available/i18n/eu.po | 49 +++++-- stock_available/i18n/fi.po | 121 ++++++++++++++++-- stock_available/i18n/fr.po | 110 ++++++++++++++-- stock_available/i18n/fr_CH.po | 52 ++++++-- stock_available/i18n/fr_FR.po | 52 ++++++-- stock_available/i18n/gl.po | 49 +++++-- stock_available/i18n/hr.po | 48 ++++--- stock_available/i18n/hr_HR.po | 70 +++++++--- stock_available/i18n/it.po | 49 +++++-- stock_available/i18n/nl.po | 44 ++++--- stock_available/i18n/nl_NL.po | 53 ++++++-- stock_available/i18n/pt.po | 49 +++++-- stock_available/i18n/pt_BR.po | 113 +++++++++++++--- stock_available/i18n/ro.po | 52 ++++++-- stock_available/i18n/ru.po | 48 ++++--- stock_available/i18n/sl.po | 82 +++++++++--- stock_available/i18n/stock_available.pot | 87 +++++++++---- stock_available/i18n/tr.po | 49 +++++-- stock_available/i18n/tr_TR.po | 52 ++++++-- stock_available/i18n/vi_VN.po | 52 ++++++-- stock_available/i18n/zh_CN.po | 80 ++++++++++-- stock_available/models/__init__.py | 2 +- stock_available/models/product_product.py | 11 +- stock_available/models/product_template.py | 5 +- stock_available/models/res_config_settings.py | 2 +- .../views/product_product_view.xml | 56 ++++---- .../views/product_template_view.xml | 102 +++++++-------- .../views/res_config_settings_views.xml | 78 ++++------- 36 files changed, 1487 insertions(+), 571 deletions(-) diff --git a/stock_available/README.rst b/stock_available/README.rst index 60406583c..a687864cc 100644 --- a/stock_available/README.rst +++ b/stock_available/README.rst @@ -20,7 +20,7 @@ Configuration By default, this module computes the stock available to promise as the virtual stock. -To take advantage of the additional features, you must which information you +To take advantage of the additional features, you must define on which information you want to base the computation, by checking one or more boxes in the settings: `Inventory` > `Configuration` > `Settings` > `Stock available to promise`. In case of "Include the production potential", it is also possible to configure @@ -73,4 +73,4 @@ 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. \ No newline at end of file +To contribute to this module, please visit https://odoo-community.org. diff --git a/stock_available/i18n/ca.po b/stock_available/i18n/ca.po index 325a133e8..39a1c75c2 100644 --- a/stock_available/i18n/ca.po +++ b/stock_available/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-03 01:23+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available @@ -42,7 +42,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,12 +50,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -96,7 +101,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -104,26 +108,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/cs_CZ.po b/stock_available/i18n/cs_CZ.po index 3450cbc7c..7fb54aaf4 100644 --- a/stock_available/i18n/cs_CZ.po +++ b/stock_available/i18n/cs_CZ.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # Lukáš Spurný , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-27 11:37+0000\n" "PO-Revision-Date: 2018-02-27 11:37+0000\n" "Last-Translator: Lukáš Spurný , 2018\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/oca/teams/23907/cs_CZ/)\n" +"Language-Team: Czech (Czech Republic) (https://www.transifex.com/oca/" +"teams/23907/cs_CZ/)\n" +"Language: cs_CZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: stock_available @@ -42,7 +43,7 @@ msgid "Available to promise" msgstr "K dispozici na slib" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -53,17 +54,17 @@ msgstr "" "výpočet zásob" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_sale +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "Vyloučení zboží již v nabídkách prodeje" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "Vylučte příchozí zboží" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "Zahrnout výrobní potenciál" @@ -89,8 +90,8 @@ msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" -"Množství tohoto výrobku, které by mohlo být vyrobeno z materiálů, které jsou" -" již k dispozici." +"Množství tohoto výrobku, které by mohlo být vyrobeno z materiálů, které jsou " +"již k dispozici." #. module: stock_available #: model:ir.model.fields,help:stock_available.field_product_template_potential_qty @@ -99,8 +100,8 @@ msgid "" "at hand. If the product has several variants, this will be the biggest " "quantity that can be made for a any single variant." msgstr "" -"Množství tohoto výrobku, které by mohlo být vyrobeno z materiálů, které jsou" -" již k dispozici. Pokud má produkt několik variant, bude to největší " +"Množství tohoto výrobku, které by mohlo být vyrobeno z materiálů, které jsou " +"již k dispozici. Pokud má produkt několik variant, bude to největší " "množství, které lze vyrobit pro libovolnou variantu." #. module: stock_available @@ -109,20 +110,31 @@ msgid "Stock available to promise" msgstr "Zásoby k dispozici" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" "Sklad pro tento produkt, který může být bezpečně navržen k prodeji " -"zákazníkům. Definice této hodnoty může být konfigurována tak, aby vyhovovala" -" vašim potřebám" +"zákazníkům. Definice této hodnoty může být konfigurována tak, aby vyhovovala " +"vašim potřebám" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#, fuzzy msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" +"Sklad pro tento produkt, který může být bezpečně navržen k prodeji " +"zákazníkům. Definice této hodnoty může být konfigurována tak, aby vyhovovala " +"vašim potřebám" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" @@ -131,31 +143,35 @@ msgstr "" "modul mrp není nainstalován, instaluje se taky" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" "Tím se odečtou příchozí veličiny z množství, která je k dispozici pro slib. " "\"Instaluje modul stock_available_immediately." #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale msgid "" -"This will subtract quantities from the sale quotations from the quantities available to promise.\n" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" "This installs the modules stock_available_sale.\n" -"If the modules sale and sale_delivery_date are not installed, this will install them too" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" msgstr "" -"Tím se odečtou množství z prodejních kotací z množství, která je k dispozici" -" pro slib. \"Instaluje moduly stock_available_sale.\" Pokud nejsou " +"Tím se odečtou množství z prodejních kotací z množství, která je k dispozici " +"pro slib. \"Instaluje moduly stock_available_sale.\" Pokud nejsou " "nainstalovány moduly prodeje a sales_delivery_date, nainstalují se je také" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "na základě" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +#, fuzzy +msgid "res.config.settings" msgstr "stock.config.settings" diff --git a/stock_available/i18n/de.po b/stock_available/i18n/de.po index 6301f22f4..0a1516279 100644 --- a/stock_available/i18n/de.po +++ b/stock_available/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # Rudolf Schnapka , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-04-14 12:02+0000\n" "PO-Revision-Date: 2016-04-22 09:17+0000\n" "Last-Translator: Rudolf Schnapka \n" -"Language-Team: German (http://www.transifex.com/oca/OCA-stock-logistics-warehouse-9-0/language/de/)\n" +"Language-Team: German (http://www.transifex.com/oca/OCA-stock-logistics-" +"warehouse-9-0/language/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available @@ -24,6 +25,13 @@ msgstr "" msgid "Available" msgstr "Verfügbar" +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#, fuzzy +msgid "Potential" +msgstr "Verfügbar" + #. module: stock_available #: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" @@ -36,10 +44,34 @@ msgid "Available to promise" msgstr "Verfügbar für Lieferversprechen" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "Warenzugänge ausschließen" +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + #. module: stock_available #: model:ir.model,name:stock_available.model_product_product msgid "Product" @@ -50,27 +82,90 @@ msgstr "Produkt" msgid "Product Template" msgstr "Produktvorlage" +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + #. module: stock_available #: model:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "Bestand für Lieferversprechen verfügbar" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" -msgstr "Bestand dieses Produkts, der sicher einem Kunden verkauft werden kann.\nDie Definition dieses Werts kann an Ihre Bedürfnisse angepasst werden" +msgstr "" +"Bestand dieses Produkts, der sicher einem Kunden verkauft werden kann.\n" +"Die Definition dieses Werts kann an Ihre Bedürfnisse angepasst werden" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#, fuzzy msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" -"This installs the module stock_available_immediately." -msgstr "Warenzugänge werden von dem für Lieferversprechen verfügbaren Bestand abgezogen.\nDas Modul stock_available_immediately wird installiert." +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" +"Bestand dieses Produkts, der sicher einem Kunden verkauft werden kann.\n" +"Die Definition dieses Werts kann an Ihre Bedürfnisse angepasst werden" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#, fuzzy +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" +"Warenzugänge werden von dem für Lieferversprechen verfügbaren Bestand " +"abgezogen.\n" +"Das Modul stock_available_immediately wird installiert." + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" +"This installs the module stock_available_immediately." +msgstr "" +"Warenzugänge werden von dem für Lieferversprechen verfügbaren Bestand " +"abgezogen.\n" +"Das Modul stock_available_immediately wird installiert." + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#, fuzzy +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" +"Warenzugänge werden von dem für Lieferversprechen verfügbaren Bestand " +"abgezogen.\n" +"Das Modul stock_available_immediately wird installiert." + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_res_config_settings +#, fuzzy +msgid "res.config.settings" msgstr "stock.config.settings" diff --git a/stock_available/i18n/el_GR.po b/stock_available/i18n/el_GR.po index 97df20eee..dd749e735 100644 --- a/stock_available/i18n/el_GR.po +++ b/stock_available/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-03 01:23+0000\n" "PO-Revision-Date: 2017-06-03 01:23+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available @@ -42,7 +43,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,12 +51,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -96,7 +102,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -104,26 +109,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/es.po b/stock_available/i18n/es.po index 063e0f6a6..635888354 100644 --- a/stock_available/i18n/es.po +++ b/stock_available/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 # enjolras , 2018 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2018-02-27 11:37+0000\n" "Last-Translator: enjolras , 2018\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"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: stock_available @@ -43,7 +43,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,17 +51,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_sale +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -102,7 +102,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -110,34 +109,46 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale msgid "" -"This will subtract quantities from the sale quotations from the quantities available to promise.\n" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" "This installs the modules stock_available_sale.\n" -"If the modules sale and sale_delivery_date are not installed, this will install them too" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +#, fuzzy +msgid "res.config.settings" msgstr "stock.config.settings" diff --git a/stock_available/i18n/es_ES.po b/stock_available/i18n/es_ES.po index cbe2f751a..3a1cc6256 100644 --- a/stock_available/i18n/es_ES.po +++ b/stock_available/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-03 01:23+0000\n" "PO-Revision-Date: 2017-06-03 01:23+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available @@ -42,7 +43,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,12 +51,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -96,7 +102,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -104,26 +109,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/es_MX.po b/stock_available/i18n/es_MX.po index a7072e204..42c29335e 100644 --- a/stock_available/i18n/es_MX.po +++ b/stock_available/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-03 01:23+0000\n" "PO-Revision-Date: 2017-06-03 01:23+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available @@ -42,7 +43,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,12 +51,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -96,7 +102,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -104,26 +109,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/eu.po b/stock_available/i18n/eu.po index 72e70af94..6b2682549 100644 --- a/stock_available/i18n/eu.po +++ b/stock_available/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-03 01:23+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available @@ -42,7 +42,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,12 +50,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -96,7 +101,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -104,26 +108,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/fi.po b/stock_available/i18n/fi.po index be5a3ab6e..5efb0069c 100644 --- a/stock_available/i18n/fi.po +++ b/stock_available/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: msgid "" msgstr "" @@ -10,23 +10,66 @@ msgstr "" "POT-Creation-Date: 2015-09-23 20:23+0000\n" "PO-Revision-Date: 2015-09-15 13:04+0000\n" "Last-Translator: <>\n" -"Language-Team: Finnish (http://www.transifex.com/oca/OCA-stock-logistics-warehouse-8-0/language/fi/)\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-stock-logistics-" +"warehouse-8-0/language/fi/)\n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available -#: view:product.template:stock_available.view_stock_available_kanban -msgid "Available to promise:" +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" msgstr "" #. module: stock_available -#: field:stock.config.settings,module_stock_available_immediately:0 +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + #. module: stock_available #: model:ir.model,name:stock_available.model_product_product msgid "Product" @@ -38,22 +81,72 @@ msgid "Product Template" msgstr "Tuotteen malli" #. module: stock_available -#: view:stock.config.settings:stock_available.view_stock_configuration +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: help:stock.config.settings,module_stock_available_immediately:0 +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: view:product.product:stock_available.view_stock_available_tree_variant -#: view:product.template:stock_available.view_stock_available_tree +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale msgid "" -"red:immediately_usable_qty<0;blue:immediately_usable_qty>=0 and state in " -"('draft', 'end', 'obsolete');black:immediately_usable_qty>=0 and state not " -"in ('draft', 'end', 'obsolete')" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/fr.po b/stock_available/i18n/fr.po index ea9bb8893..35d11dbf6 100644 --- a/stock_available/i18n/fr.po +++ b/stock_available/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # Pierre Verkest , 2015 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-02-27 01:43+0000\n" "PO-Revision-Date: 2016-02-26 16:56+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: French (http://www.transifex.com/oca/OCA-stock-logistics-warehouse-9-0/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/oca/OCA-stock-logistics-" +"warehouse-9-0/language/fr/)\n" +"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: stock_available @@ -24,6 +25,12 @@ msgstr "" msgid "Available" msgstr "" +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + #. module: stock_available #: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" @@ -36,10 +43,34 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "Exclure les receptions attendues" +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + #. module: stock_available #: model:ir.model,name:stock_available.model_product_product msgid "Product" @@ -50,13 +81,27 @@ msgstr "Article" msgid "Product Template" msgstr "Modèle de produit" +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + #. module: stock_available #: model:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "Stock disponible à la vente" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -64,13 +109,56 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" -"This installs the module stock_available_immediately." -msgstr "Ceci soustrait les réceptions attendues des quantitiés disponibles à la vente.\nCeci installe le module stock_available_immediately." +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#, fuzzy +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" +"Ceci soustrait les réceptions attendues des quantitiés disponibles à la " +"vente.\n" +"Ceci installe le module stock_available_immediately." + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" +"This installs the module stock_available_immediately." +msgstr "" +"Ceci soustrait les réceptions attendues des quantitiés disponibles à la " +"vente.\n" +"Ceci installe le module stock_available_immediately." + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#, fuzzy +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" +"Ceci soustrait les réceptions attendues des quantitiés disponibles à la " +"vente.\n" +"Ceci installe le module stock_available_immediately." + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/fr_CH.po b/stock_available/i18n/fr_CH.po index 67135ac78..b8984a3a0 100644 --- a/stock_available/i18n/fr_CH.po +++ b/stock_available/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-03 01:23+0000\n" "PO-Revision-Date: 2017-06-03 01:23+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available @@ -42,7 +43,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,12 +51,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -96,7 +102,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -104,26 +109,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/fr_FR.po b/stock_available/i18n/fr_FR.po index 838006cd8..30edae958 100644 --- a/stock_available/i18n/fr_FR.po +++ b/stock_available/i18n/fr_FR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-03 01:23+0000\n" "PO-Revision-Date: 2017-06-03 01:23+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/fr_FR/)\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/" +"fr_FR/)\n" +"Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available @@ -42,7 +43,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,12 +51,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -96,7 +102,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -104,26 +109,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/gl.po b/stock_available/i18n/gl.po index 587917d93..e3b1956b3 100644 --- a/stock_available/i18n/gl.po +++ b/stock_available/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-03 01:23+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available @@ -42,7 +42,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,12 +50,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -96,7 +101,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -104,26 +108,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/hr.po b/stock_available/i18n/hr.po index a00dbcb48..10c4e5852 100644 --- a/stock_available/i18n/hr.po +++ b/stock_available/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 # Bole , 2018 @@ -13,11 +13,12 @@ msgstr "" "PO-Revision-Date: 2018-02-27 11:37+0000\n" "Last-Translator: Bole , 2018\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: stock_available #: model:ir.ui.view,arch_db:stock_available.product_normal_form_view @@ -43,7 +44,7 @@ msgid "Available to promise" msgstr "Raspoloživo za obećati" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,17 +52,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_sale +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "Isključi dobra već u prodajnim nalozima" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "Isključi robu u dolasku" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "Isključi potencijal proizvodnje" @@ -102,7 +103,6 @@ msgid "Stock available to promise" msgstr "Zaliha raspoloživa za obećati" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -110,34 +110,46 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale msgid "" -"This will subtract quantities from the sale quotations from the quantities available to promise.\n" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" "This installs the modules stock_available_sale.\n" -"If the modules sale and sale_delivery_date are not installed, this will install them too" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "bazirano na" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +#, fuzzy +msgid "res.config.settings" msgstr "stock.config.settings" diff --git a/stock_available/i18n/hr_HR.po b/stock_available/i18n/hr_HR.po index 79e40591a..03903945c 100644 --- a/stock_available/i18n/hr_HR.po +++ b/stock_available/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2016 # Bole , 2017 @@ -12,12 +12,14 @@ msgstr "" "POT-Creation-Date: 2017-05-02 00:35+0000\n" "PO-Revision-Date: 2017-05-02 00:35+0000\n" "Last-Translator: Bole , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_HR\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: stock_available #: model:ir.ui.view,arch_db:stock_available.product_normal_form_view @@ -43,7 +45,7 @@ msgid "Available to promise" msgstr "Dostupno za rezervirati:" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -54,12 +56,17 @@ msgstr "" "Samo polja količine imaju značaj pri izračunu zalihe." #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "Isključi robu u dolasku" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "Uključi potencijale proizvodnje" @@ -105,7 +112,6 @@ msgid "Stock available to promise" msgstr "Zaliha dostupna za rezervacije" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -115,31 +121,61 @@ msgstr "" "Definicija ove vrijednosti može biti podešena da odgovara vašim potrebama." #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#, fuzzy msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" +"Zaliha ovog proizvoda koja može biti predložena za prodaju kupcima.\n" +"Definicija ove vrijednosti može biti podešena da odgovara vašim potrebama." + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" -"Ovo će dodati količinu robe koja može biti odmah proizvedena, količinama raspoloživim za rezervacije.\n" +"Ovo će dodati količinu robe koja može biti odmah proizvedena, količinama " +"raspoloživim za rezervacije.\n" "Ovo instalira modul stock_available_mrp.\n" "Ukoliko modul mrp nije instaliran, instalirati će i njega." #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" -"Ovo će oduzeti količine robe u dolasku od količina raspoloživih za rezervacije.\n" +"Ovo će oduzeti količine robe u dolasku od količina raspoloživih za " +"rezervacije.\n" "Ovo instalira modul_stock_available_emediatly." #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#, fuzzy +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" +"Ovo će dodati količinu robe koja može biti odmah proizvedena, količinama " +"raspoloživim za rezervacije.\n" +"Ovo instalira modul stock_available_mrp.\n" +"Ukoliko modul mrp nije instaliran, instalirati će i njega." + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "bazirano na" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +#, fuzzy +msgid "res.config.settings" msgstr "stock.config.settings" diff --git a/stock_available/i18n/it.po b/stock_available/i18n/it.po index ab9407ed5..dd148f1a7 100644 --- a/stock_available/i18n/it.po +++ b/stock_available/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-03 01:23+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"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: stock_available @@ -42,7 +42,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,12 +50,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -96,7 +101,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -104,26 +108,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/nl.po b/stock_available/i18n/nl.po index 05cda51d8..063cc2f8c 100644 --- a/stock_available/i18n/nl.po +++ b/stock_available/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available @@ -42,7 +42,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,17 +50,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_sale +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -101,7 +101,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -109,34 +108,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale msgid "" -"This will subtract quantities from the sale quotations from the quantities available to promise.\n" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" "This installs the modules stock_available_sale.\n" -"If the modules sale and sale_delivery_date are not installed, this will install them too" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/nl_NL.po b/stock_available/i18n/nl_NL.po index b59d117f8..dd55babd9 100644 --- a/stock_available/i18n/nl_NL.po +++ b/stock_available/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 # Peter Hageman , 2017 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2017-06-23 00:57+0000\n" "PO-Revision-Date: 2017-06-23 00:57+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available @@ -43,7 +44,7 @@ msgid "Available to promise" msgstr "Vrije Voorraad" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,12 +52,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "Inkomende goederen uitzonderen" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -97,7 +103,6 @@ msgid "Stock available to promise" msgstr "Vrije voorraad" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -105,26 +110,46 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "Gebaseerd op" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +#, fuzzy +msgid "res.config.settings" msgstr "stock.config.settings" diff --git a/stock_available/i18n/pt.po b/stock_available/i18n/pt.po index 7b06bcb97..38d7bda72 100644 --- a/stock_available/i18n/pt.po +++ b/stock_available/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-03 01:23+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available @@ -42,7 +42,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,12 +50,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -96,7 +101,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -104,26 +108,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/pt_BR.po b/stock_available/i18n/pt_BR.po index 68514329e..54831b044 100644 --- a/stock_available/i18n/pt_BR.po +++ b/stock_available/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # Claudio Araujo Santos , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-07-03 20:56+0000\n" "PO-Revision-Date: 2016-07-07 19:37+0000\n" "Last-Translator: Claudio Araujo Santos \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-stock-logistics-warehouse-9-0/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-stock-" +"logistics-warehouse-9-0/language/pt_BR/)\n" +"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: stock_available @@ -24,6 +25,13 @@ msgstr "" msgid "Available" msgstr "Disponível" +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#, fuzzy +msgid "Potential" +msgstr "Disponível" + #. module: stock_available #: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" @@ -36,23 +44,37 @@ msgid "Available to promise" msgstr "Disponível a prometer" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" "Only the quantity fields have meaning for computing stock" -msgstr "Escolha do campo do produto que vai ser utilizado para calcular potencial.\nSe vazio, quantidade disponível é utilizada.\nSomente os campos de quantidade têm significado para computação estoque" +msgstr "" +"Escolha do campo do produto que vai ser utilizado para calcular potencial.\n" +"Se vazio, quantidade disponível é utilizada.\n" +"Somente os campos de quantidade têm significado para computação estoque" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "Excluir entrada de mercadorias" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "Incluir o potencial de produção" +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + #. module: stock_available #: model:ir.model,name:stock_available.model_product_product msgid "Product" @@ -63,40 +85,95 @@ msgstr "Produto" msgid "Product Template" msgstr "Modelo Produto" +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + #. module: stock_available #: model:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "Estoque disponível para prometer" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" -msgstr "Estoque para este produto que pode ser proposto com segurança para a venda aos clientes.\nA definição deste valor pode ser configurado para atender às suas necessidades" +msgstr "" +"Estoque para este produto que pode ser proposto com segurança para a venda " +"aos clientes.\n" +"A definição deste valor pode ser configurado para atender às suas " +"necessidades" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#, fuzzy msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" +"Estoque para este produto que pode ser proposto com segurança para a venda " +"aos clientes.\n" +"A definição deste valor pode ser configurado para atender às suas " +"necessidades" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" -msgstr "Isto irá adicionar as quantidades de produtos que podem ser fabricados de imediato, para as quantidades disponíveis para prometer.\nIsso instala o stock_available_mrp módulo.\nSe o MRP módulo não está instalado, este irá instalar-lo também" +msgstr "" +"Isto irá adicionar as quantidades de produtos que podem ser fabricados de " +"imediato, para as quantidades disponíveis para prometer.\n" +"Isso instala o stock_available_mrp módulo.\n" +"Se o MRP módulo não está instalado, este irá instalar-lo também" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." -msgstr "Isto irá subtrair quantidades recebidas a partir das quantidades disponíveis para prometer.\nIsso instala o módulo stock_available_immediately." +msgstr "" +"Isto irá subtrair quantidades recebidas a partir das quantidades disponíveis " +"para prometer.\n" +"Isso instala o módulo stock_available_immediately." #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#, fuzzy +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" +"Isto irá adicionar as quantidades de produtos que podem ser fabricados de " +"imediato, para as quantidades disponíveis para prometer.\n" +"Isso instala o stock_available_mrp módulo.\n" +"Se o MRP módulo não está instalado, este irá instalar-lo também" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "Baseado em" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +#, fuzzy +msgid "res.config.settings" msgstr "stock.config.settings" diff --git a/stock_available/i18n/ro.po b/stock_available/i18n/ro.po index 2b964c8c4..53b9dbe3d 100644 --- a/stock_available/i18n/ro.po +++ b/stock_available/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-06-03 01:23+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"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" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: stock_available #: model:ir.ui.view,arch_db:stock_available.product_normal_form_view @@ -42,7 +43,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,12 +51,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -96,7 +102,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -104,26 +109,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/ru.po b/stock_available/i18n/ru.po index 789971e5d..f9a130a5a 100644 --- a/stock_available/i18n/ru.po +++ b/stock_available/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #. module: stock_available #: model:ir.ui.view,arch_db:stock_available.product_normal_form_view @@ -42,7 +44,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,17 +52,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_sale +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -101,7 +103,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -109,34 +110,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale msgid "" -"This will subtract quantities from the sale quotations from the quantities available to promise.\n" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" "This installs the modules stock_available_sale.\n" -"If the modules sale and sale_delivery_date are not installed, this will install them too" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/sl.po b/stock_available/i18n/sl.po index af3df45bc..f7a2263b6 100644 --- a/stock_available/i18n/sl.po +++ b/stock_available/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,14 @@ msgstr "" "POT-Creation-Date: 2016-04-30 03:10+0000\n" "PO-Revision-Date: 2016-04-27 11:10+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-stock-logistics-warehouse-9-0/language/sl/)\n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-stock-logistics-" +"warehouse-9-0/language/sl/)\n" +"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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: stock_available #: model:ir.ui.view,arch_db:stock_available.product_normal_form_view @@ -23,6 +25,12 @@ msgstr "" msgid "Available" msgstr "" +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + #. module: stock_available #: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" @@ -35,7 +43,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -43,15 +51,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + #. module: stock_available #: model:ir.model,name:stock_available.model_product_product msgid "Product" @@ -62,13 +81,27 @@ msgstr "Proizvod" msgid "Product Template" msgstr "Predloga proizvoda" +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + #. module: stock_available #: model:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -76,26 +109,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/stock_available.pot b/stock_available/i18n/stock_available.pot index 6eed1c952..46f1a4490 100644 --- a/stock_available/i18n/stock_available.pot +++ b/stock_available/i18n/stock_available.pot @@ -1,13 +1,11 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-07-30 16:48+0000\n" -"PO-Revision-Date: 2014-07-30 16:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,77 +14,120 @@ msgstr "" "Plural-Forms: \n" #. module: stock_available -#: field:product.product,immediately_usable_qty:0 +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: view:product.product:0 -msgid "Available to promise:" +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +msgid "Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" msgstr "" #. module: stock_available -#: field:stock.config.settings,module_stock_available_sale:0 +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: field:stock.config.settings,module_stock_available_immediately:0 +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: field:stock.config.settings,module_stock_available_mrp:0 +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: code:_description:0 +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + +#. module: stock_available #: model:ir.model,name:stock_available.model_product_product -#, python-format msgid "Product" msgstr "" #. module: stock_available -#: view:stock.config.settings:0 +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "Quantity of this Product that could be produced using the materials already at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "Quantity of this Product that could be produced using the materials already at hand. If the product has several variants, this will be the biggest quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: help:product.product,immediately_usable_qty:0 +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: help:stock.config.settings,module_stock_available_mrp:0 +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +msgid "Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp msgid "This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: help:stock.config.settings,module_stock_available_immediately:0 +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "This will subtract incoming quantities from the quantities available to promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: help:stock.config.settings,module_stock_available_sale:0 +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale msgid "This will subtract quantities from the sale quotations from the quantities available to promise.\n" "This installs the modules stock_available_sale.\n" "If the modules sale and sale_delivery_date are not installed, this will install them too" msgstr "" #. module: stock_available -#: view:product.product:0 -msgid "red:immediately_usable_qty<0;blue:immediately_usable_qty>=0 and state in ('draft', 'end', 'obsolete');black:immediately_usable_qty>=0 and state not in ('draft', 'end', 'obsolete')" +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +msgid "based on" msgstr "" #. module: stock_available -#: code:_description:0 -#: model:ir.model,name:stock_available.model_stock_config_settings -#, python-format -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/tr.po b/stock_available/i18n/tr.po index dd03191dd..f6ae370e8 100644 --- a/stock_available/i18n/tr.po +++ b/stock_available/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 # Ediz Duman , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-06-03 01:23+0000\n" "Last-Translator: Ediz Duman , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available @@ -43,7 +43,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,12 +51,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -97,7 +102,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -105,26 +109,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/tr_TR.po b/stock_available/i18n/tr_TR.po index ed0e7655f..5435569ef 100644 --- a/stock_available/i18n/tr_TR.po +++ b/stock_available/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-03 01:23+0000\n" "PO-Revision-Date: 2017-06-03 01:23+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_available @@ -42,7 +43,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,12 +51,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -96,7 +102,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -104,26 +109,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/vi_VN.po b/stock_available/i18n/vi_VN.po index ddf8ffdd3..151b50707 100644 --- a/stock_available/i18n/vi_VN.po +++ b/stock_available/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-03 01:23+0000\n" "PO-Revision-Date: 2017-06-03 01:23+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_available @@ -42,7 +43,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,12 +51,17 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" @@ -96,7 +102,6 @@ msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -104,26 +109,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/i18n/zh_CN.po b/stock_available/i18n/zh_CN.po index 1d423f790..5c723a247 100644 --- a/stock_available/i18n/zh_CN.po +++ b/stock_available/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available -# +# # Translators: # Jeffery Chenn , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-08-28 10:00+0000\n" "PO-Revision-Date: 2016-09-04 06:06+0000\n" "Last-Translator: Jeffery Chenn \n" -"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-stock-logistics-warehouse-9-0/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-stock-" +"logistics-warehouse-9-0/language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_available @@ -24,6 +25,13 @@ msgstr "" msgid "Available" msgstr "可用" +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#, fuzzy +msgid "Potential" +msgstr "可用" + #. module: stock_available #: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" @@ -36,7 +44,7 @@ msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -44,15 +52,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp msgid "Include the production potential" msgstr "" +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "" + #. module: stock_available #: model:ir.model,name:stock_available.model_product_product msgid "Product" @@ -63,13 +82,27 @@ msgstr "产品" msgid "Product Template" msgstr "产品模板" +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." +msgstr "" + #. module: stock_available #: model:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty #: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -77,26 +110,45 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty msgid "" -"This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_stock_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately msgid "" -"This will subtract incoming quantities from the quantities available to promise.\n" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_stock_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on msgid "based on" msgstr "基于" #. module: stock_available -#: model:ir.model,name:stock_available.model_stock_config_settings -msgid "stock.config.settings" +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" msgstr "" diff --git a/stock_available/models/__init__.py b/stock_available/models/__init__.py index 9eef7e687..68ed8c957 100644 --- a/stock_available/models/__init__.py +++ b/stock_available/models/__init__.py @@ -2,6 +2,6 @@ # Copyright 2016 Sodexis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from . import product_template from . import product_product +from . import product_template from . import res_config_settings diff --git a/stock_available/models/product_product.py b/stock_available/models/product_product.py index 36a4b3ae7..8b446b0be 100644 --- a/stock_available/models/product_product.py +++ b/stock_available/models/product_product.py @@ -2,7 +2,7 @@ # Copyright 2016 Sodexis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from odoo import models, fields, api +from odoo import api, fields, models from odoo.addons import decimal_precision as dp import operator as py_operator @@ -18,7 +18,7 @@ OPERATORS = { class ProductProduct(models.Model): - """Add a field for the stock available to promise. + """ Add a field for the stock available to promise. Useful implementations need to be installed through the Settings menu or by installing one of the modules stock_available_* """ @@ -39,7 +39,7 @@ class ProductProduct(models.Model): def _compute_available_quantities(self): res = self._compute_available_quantities_dict() for product in self: - for key, value in res[product.id].iteritems(): + for key, value in res[product.id].items(): if hasattr(product, key): product[key] = value @@ -51,7 +51,7 @@ class ProductProduct(models.Model): help="Stock for this Product that can be safely proposed " "for sale to Customers.\n" "The definition of this value can be configured to suit " - "your needs") + "your needs.") potential_qty = fields.Float( compute='_compute_available_quantities', digits=dp.get_precision('Product Unit of Measure'), @@ -61,8 +61,7 @@ class ProductProduct(models.Model): @api.model def _search_immediately_usable_qty(self, operator, value): - """ - Search function for the immediately_usable_qty field. + """ Search function for the immediately_usable_qty field. The search is quite similar to the Odoo search about quantity available (addons/stock/models/product.py,253; _search_product_quantity function) :param operator: str diff --git a/stock_available/models/product_template.py b/stock_available/models/product_template.py index 2f81fbff7..071a96136 100644 --- a/stock_available/models/product_template.py +++ b/stock_available/models/product_template.py @@ -25,7 +25,7 @@ class ProductTemplate(models.Model): def _compute_available_quantities(self): res = self._compute_available_quantities_dict() for product in self: - for key, value in res[product.id].iteritems(): + for key, value in res[product.id].items(): if key in product._fields: product[key] = value @@ -67,8 +67,7 @@ class ProductTemplate(models.Model): @api.model def _search_immediately_usable_qty(self, operator, value): - """ - Search function for the immediately_usable_qty field. + """ Search function for the immediately_usable_qty field. The search is quite similar to the Odoo search about quantity available (addons/stock/models/product.py,253; _search_product_quantity function) :param operator: str diff --git a/stock_available/models/res_config_settings.py b/stock_available/models/res_config_settings.py index 870207baa..3067791a2 100644 --- a/stock_available/models/res_config_settings.py +++ b/stock_available/models/res_config_settings.py @@ -2,7 +2,7 @@ # Copyright 2016 Sodexis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from odoo import api, models, fields +from odoo import api, fields, models class ResConfigSettings(models.TransientModel): diff --git a/stock_available/views/product_product_view.xml b/stock_available/views/product_product_view.xml index 3f21973c7..f11a27177 100644 --- a/stock_available/views/product_product_view.xml +++ b/stock_available/views/product_product_view.xml @@ -4,32 +4,32 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). --> - - Quantity available to promise (variant tree) - product.product - - - - - - - - + + Quantity available to promise (variant tree) + product.product + + + + + + + + diff --git a/stock_available/views/product_template_view.xml b/stock_available/views/product_template_view.xml index e5705d63f..cb51cb2a1 100644 --- a/stock_available/views/product_template_view.xml +++ b/stock_available/views/product_template_view.xml @@ -4,56 +4,56 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). --> - - Quantity available to promise (form) - product.template - - - - - - + + Quantity available to promise (form) + product.template + + + + + + + + + + Quantity available to promise (tree) + product.template + + + + virtual_available<0 or immediately_usable_qty<0 + virtual_available>=0 or immediately_usable_qty>0 + + + - - - Quantity available to promise (tree) - product.template - - - - virtual_available<0 or immediately_usable_qty<0 - virtual_available>=0 or immediately_usable_qty>0 - - - - - - - - Quantity available to promise (kanban) - product.template - - -
      -
    • Available to Promise:
    • -
    -
    -
    +
    +
    + + Quantity available to promise (kanban) + product.template + + +
      +
    • Available to Promise:
    • +
    +
    +
    diff --git a/stock_available/views/res_config_settings_views.xml b/stock_available/views/res_config_settings_views.xml index 8a5834629..ded35456b 100644 --- a/stock_available/views/res_config_settings_views.xml +++ b/stock_available/views/res_config_settings_views.xml @@ -9,64 +9,32 @@ res.config.settings - - -

    Stock available to promise

    -
    -
    -
    - -
    -
    -
    + +

    Stock available to promise

    +
    +
    +
    +
    -
    -
    - -
    -
    -
    +
    +
    - - - - - -
    - - +
    +
    + +
    +
    +
    +
    +
    + From 5803e0a7ac5def9787fdbb1b9623ec3153de20fd Mon Sep 17 00:00:00 2001 From: Osoul Date: Fri, 29 Jun 2018 04:13:26 +0000 Subject: [PATCH 19/34] Added translation using Weblate (Arabic) Currently translated at 61.9% (13 of 21 strings) Translation: stock-logistics-warehouse-11.0/stock-logistics-warehouse-11.0-stock_available Translate-URL: https://translation.odoo-community.org/projects/stock-logistics-warehouse-11-0/stock-logistics-warehouse-11-0-stock_available/ar/ --- stock_available/i18n/ar.po | 136 +++++++++++++++++++++++++++++++++++++ 1 file changed, 136 insertions(+) create mode 100644 stock_available/i18n/ar.po diff --git a/stock_available/i18n/ar.po b/stock_available/i18n/ar.po new file mode 100644 index 000000000..0212eaa30 --- /dev/null +++ b/stock_available/i18n/ar.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2018-06-29 14:21+0000\n" +"Last-Translator: Osoul \n" +"Language-Team: none\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 3.0.1\n" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Available" +msgstr "المتوفر" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +msgid "Potential" +msgstr "المتوقع" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +msgid "Available to Promise:" +msgstr "القابل للبيع:" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +msgid "Available to promise" +msgstr "القابل للبيع" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +msgid "Choose the field of the product which will be used to compute potential.\n" +"If empty, Quantity On Hand is used.\n" +"Only the quantity fields have meaning for computing stock" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +msgid "Exclude goods already in sale quotations" +msgstr "تجاهل الكميات الموجودة في العروض المبدئية" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +msgid "Exclude incoming goods" +msgstr "تجاهل الكميات الواردة" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "Include the production potential" +msgstr "احتسب المتوقع من التصنيع" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +msgid "Potential" +msgstr "المتوقع" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_product +msgid "Product" +msgstr "المنتج" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_product_template +msgid "Product Template" +msgstr "قالب المنتج" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +msgid "Quantity of this Product that could be produced using the materials already at hand." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +msgid "Quantity of this Product that could be produced using the materials already at hand. If the product has several variants, this will be the biggest quantity that can be made for a any single variant." +msgstr "" + +#. module: stock_available +#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +msgid "Stock available to promise" +msgstr "الكمية القابلة للبيع" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +msgid "Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +msgid "Stock for this Product that can be safely proposed for sale to Customers.\n" +"The definition of this value can be configured to suit your needs." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +msgid "This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +"This installs the module stock_available_mrp.\n" +"If the module mrp is not installed, this will install it too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +msgid "This will subtract incoming quantities from the quantities available to promise.\n" +"This installs the module stock_available_immediately." +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +msgid "This will subtract quantities from the sale quotations from the quantities available to promise.\n" +"This installs the modules stock_available_sale.\n" +"If the modules sale and sale_delivery_date are not installed, this will install them too" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +msgid "based on" +msgstr "مبني على" + +#. module: stock_available +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "res.config.settings" +msgstr "الإعدادات" From 8c6a72e29d0fceceafd8c0de54f7b5cf414ff858 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Pigeon?= Date: Mon, 3 Sep 2018 16:05:00 +0200 Subject: [PATCH 20/34] [10.0][CHG]stock_available...: improve stock methods computation --- stock_available/models/product_product.py | 13 ++++++++++--- stock_available/models/product_template.py | 2 +- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/stock_available/models/product_product.py b/stock_available/models/product_product.py index 8b446b0be..af76f6139 100644 --- a/stock_available/models/product_product.py +++ b/stock_available/models/product_product.py @@ -26,18 +26,25 @@ class ProductProduct(models.Model): @api.multi def _compute_available_quantities_dict(self): + stock_dict = self._compute_quantities_dict( + self._context.get('lot_id'), + self._context.get('owner_id'), + self._context.get('package_id'), + self._context.get('from_date'), + self._context.get('to_date')) res = {} for product in self: res[product.id] = { - 'immediately_usable_qty': product.virtual_available, + 'immediately_usable_qty': stock_dict[product.id][ + 'virtual_available'], 'potential_qty': 0.0 } - return res + return res, stock_dict @api.multi @api.depends('virtual_available') def _compute_available_quantities(self): - res = self._compute_available_quantities_dict() + res, _ = self._compute_available_quantities_dict() for product in self: for key, value in res[product.id].items(): if hasattr(product, key): diff --git a/stock_available/models/product_template.py b/stock_available/models/product_template.py index 071a96136..e02336950 100644 --- a/stock_available/models/product_template.py +++ b/stock_available/models/product_template.py @@ -31,7 +31,7 @@ class ProductTemplate(models.Model): @api.multi def _compute_available_quantities_dict(self): - variants_dict = self.mapped( + variants_dict, _ = self.mapped( 'product_variant_ids')._compute_available_quantities_dict() res = {} for template in self: From 0f6e375a72fce3cff702688bd87ae3f2d07b178a Mon Sep 17 00:00:00 2001 From: Valentino Date: Thu, 21 Feb 2019 13:53:21 -0300 Subject: [PATCH 21/34] [ADD] Use same decorator on product.product as on product.template tree view. --- stock_available/__manifest__.py | 2 +- stock_available/views/product_product_view.xml | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/stock_available/__manifest__.py b/stock_available/__manifest__.py index ea5963f16..40193f198 100644 --- a/stock_available/__manifest__.py +++ b/stock_available/__manifest__.py @@ -4,7 +4,7 @@ { 'name': 'Stock available to promise', - 'version': '11.0.1.0.0', + 'version': '11.0.1.1.0', "author": "Numérigraphe, Sodexis, Odoo Community Association (OCA)", 'category': 'Warehouse', 'depends': ['stock'], diff --git a/stock_available/views/product_product_view.xml b/stock_available/views/product_product_view.xml index f11a27177..b47593220 100644 --- a/stock_available/views/product_product_view.xml +++ b/stock_available/views/product_product_view.xml @@ -32,4 +32,18 @@ + + Quantity available to promise (variant tree) + product.product + + + + virtual_available<0 or immediately_usable_qty<0 + virtual_available>=0 or immediately_usable_qty>0 + + + + + + From 673be5b66f816b7047e7adfe3b9da97895de3542 Mon Sep 17 00:00:00 2001 From: Sergio Teruel Date: Wed, 26 Jun 2019 17:43:11 +0200 Subject: [PATCH 22/34] [MIG] stock_available: Migration to v12.0 --- stock_available/README.rst | 85 +++- stock_available/__init__.py | 2 - stock_available/__manifest__.py | 6 +- stock_available/models/product_product.py | 11 +- stock_available/models/product_template.py | 11 +- stock_available/readme/CONFIGURE.rst | 7 + stock_available/readme/CONTRIBUTORS.rst | 15 + stock_available/readme/DESCRIPTION.rst | 8 + stock_available/readme/USAGE.rst | 3 + stock_available/static/description/index.html | 472 ++++++++++++++++++ stock_available/tests/test_stock_available.py | 2 +- .../views/product_product_view.xml | 24 +- .../views/product_template_view.xml | 20 +- 13 files changed, 599 insertions(+), 67 deletions(-) create mode 100644 stock_available/readme/CONFIGURE.rst create mode 100644 stock_available/readme/CONTRIBUTORS.rst create mode 100644 stock_available/readme/DESCRIPTION.rst create mode 100644 stock_available/readme/USAGE.rst create mode 100644 stock_available/static/description/index.html diff --git a/stock_available/README.rst b/stock_available/README.rst index a687864cc..11c91e313 100644 --- a/stock_available/README.rst +++ b/stock_available/README.rst @@ -1,11 +1,30 @@ -.. 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 - ========================== Stock available to promise ========================== +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--warehouse-lightgray.png?logo=github + :target: https://github.com/OCA/stock-logistics-warehouse/tree/12.0/stock_available + :alt: OCA/stock-logistics-warehouse +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/stock-logistics-warehouse-12-0/stock-logistics-warehouse-12-0-stock_available + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/153/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + This module proposes several options to compute the quantity available to promise for each product. This quantity is based on the projected stock and, depending on the @@ -15,6 +34,11 @@ In case of immediate production capacity, it is possible to configure on which field the potential is computed, by default Quantity On Hand is used. This can be configured in `Inventory` > `Configuration` > `Settings`. +**Table of contents** + +.. contents:: + :local: + Configuration ============= @@ -33,44 +57,57 @@ This module adds a field named `Available for sale` on the Product form. Various additional fields may be added, depending on which information you chose to base the computation on. -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/153/11.0 - Bug Tracker =========== -Bugs are tracked on `GitHub 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. +Bugs are tracked on `GitHub 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 `_. + +Do not contact contributors directly about support or help with technical issues. Credits ======= -Images ------- +Authors +~~~~~~~ -* Odoo Community Association: `Icon `_. +* Numérigraphe +* Sodexis Contributors ------------- +~~~~~~~~~~~~ -* Lionel Sausin (Numérigraphe) -* Sodexis -* Factor Libre - Kiko Peiro +* `Numérigraphe `_: -Maintainer ----------- + * Lionel Sausin + +* `Sodexis `_: + + * Sodexis + +* `Factor Libre `_: + + * Kiko Peiro + +* `Tecnativa `_: + + * Sergio Teruel + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. .. 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. +This module is part of the `OCA/stock-logistics-warehouse `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/stock_available/__init__.py b/stock_available/__init__.py index 2c1e277e2..83e553ac4 100644 --- a/stock_available/__init__.py +++ b/stock_available/__init__.py @@ -1,5 +1,3 @@ -# Copyright 2014 Numérigraphe -# Copyright 2016 Sodexis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import models diff --git a/stock_available/__manifest__.py b/stock_available/__manifest__.py index 40193f198..236da110b 100644 --- a/stock_available/__manifest__.py +++ b/stock_available/__manifest__.py @@ -4,8 +4,10 @@ { 'name': 'Stock available to promise', - 'version': '11.0.1.1.0', - "author": "Numérigraphe, Sodexis, Odoo Community Association (OCA)", + 'version': '12.0.1.0.0', + 'author': 'Numérigraphe, Sodexis, Odoo Community Association (OCA)', + 'website': 'https://github.com/OCA/stock-logistics-warehouse', + 'development_status': 'Production/Stable', 'category': 'Warehouse', 'depends': ['stock'], 'license': 'AGPL-3', diff --git a/stock_available/models/product_product.py b/stock_available/models/product_product.py index af76f6139..f65cd0516 100644 --- a/stock_available/models/product_product.py +++ b/stock_available/models/product_product.py @@ -4,16 +4,7 @@ from odoo import api, fields, models from odoo.addons import decimal_precision as dp -import operator as py_operator - -OPERATORS = { - '<': py_operator.lt, - '>': py_operator.gt, - '<=': py_operator.le, - '>=': py_operator.ge, - '=': py_operator.eq, - '!=': py_operator.ne -} +from odoo.addons.stock.models.product import OPERATORS class ProductProduct(models.Model): diff --git a/stock_available/models/product_template.py b/stock_available/models/product_template.py index e02336950..945f0c541 100644 --- a/stock_available/models/product_template.py +++ b/stock_available/models/product_template.py @@ -4,16 +4,7 @@ from odoo import models, fields, api from odoo.addons import decimal_precision as dp -import operator as py_operator - -OPERATORS = { - '<': py_operator.lt, - '>': py_operator.gt, - '<=': py_operator.le, - '>=': py_operator.ge, - '=': py_operator.eq, - '!=': py_operator.ne -} +from odoo.addons.stock.models.product import OPERATORS class ProductTemplate(models.Model): diff --git a/stock_available/readme/CONFIGURE.rst b/stock_available/readme/CONFIGURE.rst new file mode 100644 index 000000000..e6b596bfd --- /dev/null +++ b/stock_available/readme/CONFIGURE.rst @@ -0,0 +1,7 @@ +By default, this module computes the stock available to promise as the virtual +stock. +To take advantage of the additional features, you must define on which information you +want to base the computation, by checking one or more boxes in the settings: +`Inventory` > `Configuration` > `Settings` > `Stock available to promise`. +In case of "Include the production potential", it is also possible to configure +which field of product to use to compute the production potential. diff --git a/stock_available/readme/CONTRIBUTORS.rst b/stock_available/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..9f854b266 --- /dev/null +++ b/stock_available/readme/CONTRIBUTORS.rst @@ -0,0 +1,15 @@ +* `Numérigraphe `_: + + * Lionel Sausin + +* `Sodexis `_: + + * Sodexis + +* `Factor Libre `_: + + * Kiko Peiro + +* `Tecnativa `_: + + * Sergio Teruel diff --git a/stock_available/readme/DESCRIPTION.rst b/stock_available/readme/DESCRIPTION.rst new file mode 100644 index 000000000..d345320b2 --- /dev/null +++ b/stock_available/readme/DESCRIPTION.rst @@ -0,0 +1,8 @@ +This module proposes several options to compute the quantity available to +promise for each product. +This quantity is based on the projected stock and, depending on the +configuration, it can account for various data such as sales quotations or +immediate production capacity. +In case of immediate production capacity, it is possible to configure on which +field the potential is computed, by default Quantity On Hand is used. +This can be configured in `Inventory` > `Configuration` > `Settings`. diff --git a/stock_available/readme/USAGE.rst b/stock_available/readme/USAGE.rst new file mode 100644 index 000000000..85749174d --- /dev/null +++ b/stock_available/readme/USAGE.rst @@ -0,0 +1,3 @@ +This module adds a field named `Available for sale` on the Product form. +Various additional fields may be added, depending on which information you +chose to base the computation on. diff --git a/stock_available/static/description/index.html b/stock_available/static/description/index.html new file mode 100644 index 000000000..25ec92086 --- /dev/null +++ b/stock_available/static/description/index.html @@ -0,0 +1,472 @@ + + + + + + +Stock available to promise + + + +
    +

    Stock available to promise

    + + +

    Beta License: AGPL-3 OCA/stock-logistics-warehouse Translate me on Weblate Try me on Runbot

    +

    This module proposes several options to compute the quantity available to +promise for each product. +This quantity is based on the projected stock and, depending on the +configuration, it can account for various data such as sales quotations or +immediate production capacity. +In case of immediate production capacity, it is possible to configure on which +field the potential is computed, by default Quantity On Hand is used. +This can be configured in Inventory > Configuration > Settings.

    +

    Table of contents

    + +
    +

    Configuration

    +

    By default, this module computes the stock available to promise as the virtual +stock. +To take advantage of the additional features, you must define on which information you +want to base the computation, by checking one or more boxes in the settings: +Inventory > Configuration > Settings > Stock available to promise. +In case of “Include the production potential”, it is also possible to configure +which field of product to use to compute the production potential.

    +
    +
    +

    Usage

    +

    This module adds a field named Available for sale on the Product form. +Various additional fields may be added, depending on which information you +chose to base the computation on.

    +
    +
    +

    Bug Tracker

    +

    Bugs are tracked on GitHub 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.

    +

    Do not contact contributors directly about support or help with technical issues.

    +
    +
    +

    Credits

    +
    +

    Authors

    +
      +
    • Numérigraphe
    • +
    • Sodexis
    • +
    +
    +
    +

    Contributors

    + +
    +
    +

    Maintainers

    +

    This module is maintained by the OCA.

    +Odoo Community Association +

    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.

    +

    This module is part of the OCA/stock-logistics-warehouse project on GitHub.

    +

    You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

    +
    +
    +
    + + diff --git a/stock_available/tests/test_stock_available.py b/stock_available/tests/test_stock_available.py index 40fae522d..976dd7c5f 100644 --- a/stock_available/tests/test_stock_available.py +++ b/stock_available/tests/test_stock_available.py @@ -28,7 +28,7 @@ class TestStockLogisticsWarehouse(TransactionCase): supplier_location = self.env.ref('stock.stock_location_suppliers') stock_location = self.env.ref('stock.stock_location_stock') customer_location = self.env.ref('stock.stock_location_customers') - uom_unit = self.env.ref('product.product_uom_unit') + uom_unit = self.env.ref('uom.product_uom_unit') # Create product template templateAB = templateObj.create( diff --git a/stock_available/views/product_product_view.xml b/stock_available/views/product_product_view.xml index b47593220..742d98239 100644 --- a/stock_available/views/product_product_view.xml +++ b/stock_available/views/product_product_view.xml @@ -14,20 +14,24 @@ diff --git a/stock_available/views/product_template_view.xml b/stock_available/views/product_template_view.xml index cb51cb2a1..b4543ca95 100644 --- a/stock_available/views/product_template_view.xml +++ b/stock_available/views/product_template_view.xml @@ -14,20 +14,24 @@ From b0d441d9353384617c12339dc26a4c9e7acb1d9e Mon Sep 17 00:00:00 2001 From: oca-travis Date: Fri, 5 Jul 2019 11:07:30 +0000 Subject: [PATCH 23/34] [UPD] Update stock_available.pot --- stock_available/i18n/stock_available.pot | 56 ++++++++++++------------ 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/stock_available/i18n/stock_available.pot b/stock_available/i18n/stock_available.pot index 46f1a4490..e1a016d6f 100644 --- a/stock_available/i18n/stock_available.pot +++ b/stock_available/i18n/stock_available.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 11.0\n" +"Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: <>\n" "Language-Team: \n" @@ -14,53 +14,58 @@ msgstr "" "Plural-Forms: \n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" "Only the quantity fields have meaning for computing stock" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -75,59 +80,54 @@ msgid "Product Template" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "Quantity of this Product that could be produced using the materials already at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "Quantity of this Product that could be produced using the materials already at hand. If the product has several variants, this will be the biggest quantity that can be made for a any single variant." msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "This will subtract incoming quantities from the quantities available to promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "This will subtract quantities from the sale quotations from the quantities available to promise.\n" "This installs the modules stock_available_sale.\n" "If the modules sale and sale_delivery_date are not installed, this will install them too" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" - From 2ab61bc953380b80da2241b0e79885573a258389 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Fri, 5 Jul 2019 12:11:52 +0000 Subject: [PATCH 24/34] [UPD] README.rst --- stock_available/README.rst | 4 ++-- stock_available/static/description/index.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stock_available/README.rst b/stock_available/README.rst index 11c91e313..686c93195 100644 --- a/stock_available/README.rst +++ b/stock_available/README.rst @@ -7,9 +7,9 @@ Stock available to promise !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png +.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png :target: https://odoo-community.org/page/development-status - :alt: Beta + :alt: Production/Stable .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 diff --git a/stock_available/static/description/index.html b/stock_available/static/description/index.html index 25ec92086..8878cf54a 100644 --- a/stock_available/static/description/index.html +++ b/stock_available/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

    Beta License: AGPL-3 OCA/stock-logistics-warehouse Translate me on Weblate Try me on Runbot

    +

    Production/Stable License: AGPL-3 OCA/stock-logistics-warehouse Translate me on Weblate Try me on Runbot

    This module proposes several options to compute the quantity available to promise for each product. This quantity is based on the projected stock and, depending on the From def771f5dc7108b74b2e826e9fc7e4c1a6740354 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 20 Jul 2019 11:53:09 +0000 Subject: [PATCH 25/34] Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: stock-logistics-warehouse-12.0/stock-logistics-warehouse-12.0-stock_available Translate-URL: https://translation.odoo-community.org/projects/stock-logistics-warehouse-12-0/stock-logistics-warehouse-12-0-stock_available/ --- stock_available/i18n/ar.po | 91 +++++++++++++++++++++-------------- stock_available/i18n/ca.po | 54 ++++++++++----------- stock_available/i18n/cs_CZ.po | 56 ++++++++++----------- stock_available/i18n/de.po | 56 ++++++++++----------- stock_available/i18n/el_GR.po | 54 ++++++++++----------- stock_available/i18n/es.po | 56 ++++++++++----------- stock_available/i18n/es_ES.po | 54 ++++++++++----------- stock_available/i18n/es_MX.po | 54 ++++++++++----------- stock_available/i18n/eu.po | 54 ++++++++++----------- stock_available/i18n/fi.po | 54 ++++++++++----------- stock_available/i18n/fr.po | 54 ++++++++++----------- stock_available/i18n/fr_CH.po | 54 ++++++++++----------- stock_available/i18n/fr_FR.po | 54 ++++++++++----------- stock_available/i18n/gl.po | 54 ++++++++++----------- stock_available/i18n/hr.po | 56 ++++++++++----------- stock_available/i18n/hr_HR.po | 56 ++++++++++----------- stock_available/i18n/it.po | 54 ++++++++++----------- stock_available/i18n/nl.po | 54 ++++++++++----------- stock_available/i18n/nl_NL.po | 56 ++++++++++----------- stock_available/i18n/pt.po | 54 ++++++++++----------- stock_available/i18n/pt_BR.po | 56 ++++++++++----------- stock_available/i18n/ro.po | 54 ++++++++++----------- stock_available/i18n/ru.po | 54 ++++++++++----------- stock_available/i18n/sl.po | 54 ++++++++++----------- stock_available/i18n/tr.po | 54 ++++++++++----------- stock_available/i18n/tr_TR.po | 54 ++++++++++----------- stock_available/i18n/vi_VN.po | 54 ++++++++++----------- stock_available/i18n/zh_CN.po | 54 ++++++++++----------- 28 files changed, 790 insertions(+), 773 deletions(-) diff --git a/stock_available/i18n/ar.po b/stock_available/i18n/ar.po index 0212eaa30..bf1e26772 100644 --- a/stock_available/i18n/ar.po +++ b/stock_available/i18n/ar.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * stock_available +# * stock_available # msgid "" msgstr "" @@ -18,53 +18,61 @@ msgstr "" "X-Generator: Weblate 3.0.1\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "المتوفر" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "المتوقع" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "القابل للبيع:" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "القابل للبيع" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on -msgid "Choose the field of the product which will be used to compute potential.\n" +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on +msgid "" +"Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" "Only the quantity fields have meaning for computing stock" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +#, fuzzy +#| msgid "res.config.settings" +msgid "Config Settings" +msgstr "الإعدادات" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "تجاهل الكميات الموجودة في العروض المبدئية" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "تجاهل الكميات الواردة" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "احتسب المتوقع من التصنيع" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "المتوقع" @@ -79,58 +87,67 @@ msgid "Product Template" msgstr "قالب المنتج" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty -msgid "Quantity of this Product that could be produced using the materials already at hand." +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty -msgid "Quantity of this Product that could be produced using the materials already at hand. If the product has several variants, this will be the biggest quantity that can be made for a any single variant." +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty +msgid "" +"Quantity of this Product that could be produced using the materials already " +"at hand. If the product has several variants, this will be the biggest " +"quantity that can be made for a any single variant." msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "الكمية القابلة للبيع" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty -msgid "Stock for this Product that can be safely proposed for sale to Customers.\n" +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty -msgid "Stock for this Product that can be safely proposed for sale to Customers.\n" +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty +msgid "" +"Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp -msgid "This will add the quantities of goods that can be immediately manufactured, to the quantities available to promise.\n" +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp +msgid "" +"This will add the quantities of goods that can be immediately manufactured, " +"to the quantities available to promise.\n" "This installs the module stock_available_mrp.\n" "If the module mrp is not installed, this will install it too" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately -msgid "This will subtract incoming quantities from the quantities available to promise.\n" +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately +msgid "" +"This will subtract incoming quantities from the quantities available to " +"promise.\n" "This installs the module stock_available_immediately." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale -msgid "This will subtract quantities from the sale quotations from the quantities available to promise.\n" +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale +msgid "" +"This will subtract quantities from the sale quotations from the quantities " +"available to promise.\n" "This installs the modules stock_available_sale.\n" -"If the modules sale and sale_delivery_date are not installed, this will install them too" +"If the modules sale and sale_delivery_date are not installed, this will " +"install them too" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "مبني على" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "الإعدادات" diff --git a/stock_available/i18n/ca.po b/stock_available/i18n/ca.po index 39a1c75c2..e2262f795 100644 --- a/stock_available/i18n/ca.po +++ b/stock_available/i18n/ca.po @@ -19,30 +19,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,23 +50,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -81,14 +86,14 @@ msgid "Product Template" msgstr "Plantilla del producte" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -96,26 +101,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -124,7 +129,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -132,7 +137,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -142,11 +147,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/cs_CZ.po b/stock_available/i18n/cs_CZ.po index 7fb54aaf4..74fa375be 100644 --- a/stock_available/i18n/cs_CZ.po +++ b/stock_available/i18n/cs_CZ.po @@ -20,30 +20,30 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "K dispozici 1" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "Potenciál 1" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "K dispozici pro slib:" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "K dispozici na slib" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -54,23 +54,29 @@ msgstr "" "výpočet zásob" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +#, fuzzy +msgid "Config Settings" +msgstr "stock.config.settings" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "Vyloučení zboží již v nabídkách prodeje" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "Vylučte příchozí zboží" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "Zahrnout výrobní potenciál" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "Potenciál" @@ -85,7 +91,7 @@ msgid "Product Template" msgstr "Šablona produktu" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." @@ -94,7 +100,7 @@ msgstr "" "již k dispozici." #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -105,12 +111,12 @@ msgstr "" "množství, které lze vyrobit pro libovolnou variantu." #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "Zásoby k dispozici" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" @@ -120,7 +126,7 @@ msgstr "" "vašim potřebám" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty #, fuzzy msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -131,7 +137,7 @@ msgstr "" "vašim potřebám" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -143,7 +149,7 @@ msgstr "" "modul mrp není nainstalován, instaluje se taky" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -153,7 +159,7 @@ msgstr "" "\"Instaluje modul stock_available_immediately." #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -166,12 +172,6 @@ msgstr "" "nainstalovány moduly prodeje a sales_delivery_date, nainstalují se je také" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "na základě" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -#, fuzzy -msgid "res.config.settings" -msgstr "stock.config.settings" diff --git a/stock_available/i18n/de.po b/stock_available/i18n/de.po index 0a1516279..5645cee1b 100644 --- a/stock_available/i18n/de.po +++ b/stock_available/i18n/de.po @@ -20,31 +20,31 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "Verfügbar" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form #, fuzzy msgid "Potential" msgstr "Verfügbar" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "Verfügbar für Zusage:" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "Verfügbar für Lieferversprechen" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -52,23 +52,29 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +#, fuzzy +msgid "Config Settings" +msgstr "stock.config.settings" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "Warenzugänge ausschließen" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -83,14 +89,14 @@ msgid "Product Template" msgstr "Produktvorlage" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -98,12 +104,12 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "Bestand für Lieferversprechen verfügbar" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" @@ -112,7 +118,7 @@ msgstr "" "Die Definition dieses Werts kann an Ihre Bedürfnisse angepasst werden" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty #, fuzzy msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -122,7 +128,7 @@ msgstr "" "Die Definition dieses Werts kann an Ihre Bedürfnisse angepasst werden" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp #, fuzzy msgid "" "This will add the quantities of goods that can be immediately manufactured, " @@ -135,7 +141,7 @@ msgstr "" "Das Modul stock_available_immediately wird installiert." #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -146,7 +152,7 @@ msgstr "" "Das Modul stock_available_immediately wird installiert." #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale #, fuzzy msgid "" "This will subtract quantities from the sale quotations from the quantities " @@ -160,12 +166,6 @@ msgstr "" "Das Modul stock_available_immediately wird installiert." #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -#, fuzzy -msgid "res.config.settings" -msgstr "stock.config.settings" diff --git a/stock_available/i18n/el_GR.po b/stock_available/i18n/el_GR.po index dd749e735..8b6fa099f 100644 --- a/stock_available/i18n/el_GR.po +++ b/stock_available/i18n/el_GR.po @@ -20,30 +20,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,23 +51,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -82,14 +87,14 @@ msgid "Product Template" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -97,26 +102,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -125,7 +130,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -133,7 +138,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -143,11 +148,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/es.po b/stock_available/i18n/es.po index 635888354..173401315 100644 --- a/stock_available/i18n/es.po +++ b/stock_available/i18n/es.po @@ -20,30 +20,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "Disponible" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "Potencial" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,23 +51,29 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +#, fuzzy +msgid "Config Settings" +msgstr "stock.config.settings" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "Potencial" @@ -82,14 +88,14 @@ msgid "Product Template" msgstr "Plantilla de producto" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -97,26 +103,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -125,7 +131,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -133,7 +139,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -143,12 +149,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -#, fuzzy -msgid "res.config.settings" -msgstr "stock.config.settings" diff --git a/stock_available/i18n/es_ES.po b/stock_available/i18n/es_ES.po index 3a1cc6256..7939d2990 100644 --- a/stock_available/i18n/es_ES.po +++ b/stock_available/i18n/es_ES.po @@ -20,30 +20,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,23 +51,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -82,14 +87,14 @@ msgid "Product Template" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -97,26 +102,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -125,7 +130,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -133,7 +138,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -143,11 +148,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/es_MX.po b/stock_available/i18n/es_MX.po index 42c29335e..433b81255 100644 --- a/stock_available/i18n/es_MX.po +++ b/stock_available/i18n/es_MX.po @@ -20,30 +20,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,23 +51,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -82,14 +87,14 @@ msgid "Product Template" msgstr "Plantilla del producto" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -97,26 +102,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -125,7 +130,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -133,7 +138,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -143,11 +148,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/eu.po b/stock_available/i18n/eu.po index 6b2682549..7391b93c4 100644 --- a/stock_available/i18n/eu.po +++ b/stock_available/i18n/eu.po @@ -19,30 +19,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,23 +50,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -81,14 +86,14 @@ msgid "Product Template" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -96,26 +101,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -124,7 +129,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -132,7 +137,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -142,11 +147,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/fi.po b/stock_available/i18n/fi.po index 5efb0069c..262d0eab5 100644 --- a/stock_available/i18n/fi.po +++ b/stock_available/i18n/fi.po @@ -19,30 +19,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,23 +50,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -81,14 +86,14 @@ msgid "Product Template" msgstr "Tuotteen malli" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -96,26 +101,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -124,7 +129,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -132,7 +137,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -142,11 +147,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/fr.po b/stock_available/i18n/fr.po index 35d11dbf6..b7ce672ac 100644 --- a/stock_available/i18n/fr.po +++ b/stock_available/i18n/fr.po @@ -20,30 +20,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,23 +51,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "Exclure les receptions attendues" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -82,14 +87,14 @@ msgid "Product Template" msgstr "Modèle de produit" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -97,26 +102,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "Stock disponible à la vente" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp #, fuzzy msgid "" "This will add the quantities of goods that can be immediately manufactured, " @@ -129,7 +134,7 @@ msgstr "" "Ceci installe le module stock_available_immediately." #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -140,7 +145,7 @@ msgstr "" "Ceci installe le module stock_available_immediately." #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale #, fuzzy msgid "" "This will subtract quantities from the sale quotations from the quantities " @@ -154,11 +159,6 @@ msgstr "" "Ceci installe le module stock_available_immediately." #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/fr_CH.po b/stock_available/i18n/fr_CH.po index b8984a3a0..2d9851d86 100644 --- a/stock_available/i18n/fr_CH.po +++ b/stock_available/i18n/fr_CH.po @@ -20,30 +20,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,23 +51,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -82,14 +87,14 @@ msgid "Product Template" msgstr "Template de produit" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -97,26 +102,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -125,7 +130,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -133,7 +138,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -143,11 +148,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/fr_FR.po b/stock_available/i18n/fr_FR.po index 30edae958..52abfc500 100644 --- a/stock_available/i18n/fr_FR.po +++ b/stock_available/i18n/fr_FR.po @@ -20,30 +20,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,23 +51,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -82,14 +87,14 @@ msgid "Product Template" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -97,26 +102,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -125,7 +130,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -133,7 +138,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -143,11 +148,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/gl.po b/stock_available/i18n/gl.po index e3b1956b3..e81a097e6 100644 --- a/stock_available/i18n/gl.po +++ b/stock_available/i18n/gl.po @@ -19,30 +19,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,23 +50,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -81,14 +86,14 @@ msgid "Product Template" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -96,26 +101,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -124,7 +129,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -132,7 +137,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -142,11 +147,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/hr.po b/stock_available/i18n/hr.po index 10c4e5852..934bc8f17 100644 --- a/stock_available/i18n/hr.po +++ b/stock_available/i18n/hr.po @@ -21,30 +21,30 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "Raspoloživo" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "Potencijalno" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "Raspoloživo za obećati:" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "Raspoloživo za obećati" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -52,23 +52,29 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +#, fuzzy +msgid "Config Settings" +msgstr "stock.config.settings" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "Isključi dobra već u prodajnim nalozima" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "Isključi robu u dolasku" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "Isključi potencijal proizvodnje" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "Potencijal" @@ -83,14 +89,14 @@ msgid "Product Template" msgstr "Predložak proizvoda" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -98,26 +104,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "Zaliha raspoloživa za obećati" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -126,7 +132,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -134,7 +140,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -144,12 +150,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "bazirano na" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -#, fuzzy -msgid "res.config.settings" -msgstr "stock.config.settings" diff --git a/stock_available/i18n/hr_HR.po b/stock_available/i18n/hr_HR.po index 03903945c..2926e8e28 100644 --- a/stock_available/i18n/hr_HR.po +++ b/stock_available/i18n/hr_HR.po @@ -22,30 +22,30 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "Dostupno" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "Potencijal" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "Dostupno za rezervirati:" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "Dostupno za rezervirati:" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -56,23 +56,29 @@ msgstr "" "Samo polja količine imaju značaj pri izračunu zalihe." #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +#, fuzzy +msgid "Config Settings" +msgstr "stock.config.settings" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "Isključi robu u dolasku" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "Uključi potencijale proizvodnje" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "Potencijal" @@ -87,7 +93,7 @@ msgid "Product Template" msgstr "Predložak proizvoda" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." @@ -96,7 +102,7 @@ msgstr "" "raspoloživih materijala." #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -107,12 +113,12 @@ msgstr "" "pokazati najveću količinu koja može biti proizvoedena za bilokoju varijantu." #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "Zaliha dostupna za rezervacije" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" @@ -121,7 +127,7 @@ msgstr "" "Definicija ove vrijednosti može biti podešena da odgovara vašim potrebama." #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty #, fuzzy msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -131,7 +137,7 @@ msgstr "" "Definicija ove vrijednosti može biti podešena da odgovara vašim potrebama." #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -144,7 +150,7 @@ msgstr "" "Ukoliko modul mrp nije instaliran, instalirati će i njega." #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -155,7 +161,7 @@ msgstr "" "Ovo instalira modul_stock_available_emediatly." #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale #, fuzzy msgid "" "This will subtract quantities from the sale quotations from the quantities " @@ -170,12 +176,6 @@ msgstr "" "Ukoliko modul mrp nije instaliran, instalirati će i njega." #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "bazirano na" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -#, fuzzy -msgid "res.config.settings" -msgstr "stock.config.settings" diff --git a/stock_available/i18n/it.po b/stock_available/i18n/it.po index dd148f1a7..e7ca224f6 100644 --- a/stock_available/i18n/it.po +++ b/stock_available/i18n/it.po @@ -19,30 +19,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,23 +50,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -81,14 +86,14 @@ msgid "Product Template" msgstr "Template Prodotto" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -96,26 +101,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -124,7 +129,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -132,7 +137,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -142,11 +147,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/nl.po b/stock_available/i18n/nl.po index 063cc2f8c..e86c2ea3f 100644 --- a/stock_available/i18n/nl.po +++ b/stock_available/i18n/nl.po @@ -19,30 +19,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,23 +50,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -81,14 +86,14 @@ msgid "Product Template" msgstr "Productsjabloon" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -96,26 +101,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -124,7 +129,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -132,7 +137,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -142,11 +147,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/nl_NL.po b/stock_available/i18n/nl_NL.po index dd55babd9..9c2252305 100644 --- a/stock_available/i18n/nl_NL.po +++ b/stock_available/i18n/nl_NL.po @@ -21,30 +21,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "Beschikbaar" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "Vrije Voorraad:" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "Vrije Voorraad" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -52,23 +52,29 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +#, fuzzy +msgid "Config Settings" +msgstr "stock.config.settings" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "Inkomende goederen uitzonderen" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -83,14 +89,14 @@ msgid "Product Template" msgstr "Productsjabloon" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -98,26 +104,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "Vrije voorraad" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -126,7 +132,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -134,7 +140,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -144,12 +150,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "Gebaseerd op" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -#, fuzzy -msgid "res.config.settings" -msgstr "stock.config.settings" diff --git a/stock_available/i18n/pt.po b/stock_available/i18n/pt.po index 38d7bda72..26910c7e8 100644 --- a/stock_available/i18n/pt.po +++ b/stock_available/i18n/pt.po @@ -19,30 +19,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -50,23 +50,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -81,14 +86,14 @@ msgid "Product Template" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -96,26 +101,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -124,7 +129,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -132,7 +137,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -142,11 +147,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/pt_BR.po b/stock_available/i18n/pt_BR.po index 54831b044..f75a1b3ee 100644 --- a/stock_available/i18n/pt_BR.po +++ b/stock_available/i18n/pt_BR.po @@ -20,31 +20,31 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "Disponível" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form #, fuzzy msgid "Potential" msgstr "Disponível" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "Disponível a prometer" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "Disponível a prometer" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -55,23 +55,29 @@ msgstr "" "Somente os campos de quantidade têm significado para computação estoque" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +#, fuzzy +msgid "Config Settings" +msgstr "stock.config.settings" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "Excluir entrada de mercadorias" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "Incluir o potencial de produção" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -86,14 +92,14 @@ msgid "Product Template" msgstr "Modelo Produto" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -101,12 +107,12 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "Estoque disponível para prometer" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" @@ -117,7 +123,7 @@ msgstr "" "necessidades" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty #, fuzzy msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" @@ -129,7 +135,7 @@ msgstr "" "necessidades" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -142,7 +148,7 @@ msgstr "" "Se o MRP módulo não está instalado, este irá instalar-lo também" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -153,7 +159,7 @@ msgstr "" "Isso instala o módulo stock_available_immediately." #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale #, fuzzy msgid "" "This will subtract quantities from the sale quotations from the quantities " @@ -168,12 +174,6 @@ msgstr "" "Se o MRP módulo não está instalado, este irá instalar-lo também" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "Baseado em" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -#, fuzzy -msgid "res.config.settings" -msgstr "stock.config.settings" diff --git a/stock_available/i18n/ro.po b/stock_available/i18n/ro.po index 53b9dbe3d..95b4eadf3 100644 --- a/stock_available/i18n/ro.po +++ b/stock_available/i18n/ro.po @@ -20,30 +20,30 @@ msgstr "" "2:1));\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,23 +51,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -82,14 +87,14 @@ msgid "Product Template" msgstr "Produs șablon" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -97,26 +102,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -125,7 +130,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -133,7 +138,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -143,11 +148,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/ru.po b/stock_available/i18n/ru.po index f9a130a5a..34f764291 100644 --- a/stock_available/i18n/ru.po +++ b/stock_available/i18n/ru.po @@ -21,30 +21,30 @@ msgstr "" "%100>=11 && n%100<=14)? 2 : 3);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -52,23 +52,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -83,14 +88,14 @@ msgid "Product Template" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -98,26 +103,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -126,7 +131,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -134,7 +139,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -144,11 +149,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/sl.po b/stock_available/i18n/sl.po index f7a2263b6..467f189b8 100644 --- a/stock_available/i18n/sl.po +++ b/stock_available/i18n/sl.po @@ -20,30 +20,30 @@ msgstr "" "%100==4 ? 2 : 3);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,23 +51,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -82,14 +87,14 @@ msgid "Product Template" msgstr "Predloga proizvoda" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -97,26 +102,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -125,7 +130,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -133,7 +138,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -143,11 +148,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/tr.po b/stock_available/i18n/tr.po index f6ae370e8..9fe41da30 100644 --- a/stock_available/i18n/tr.po +++ b/stock_available/i18n/tr.po @@ -20,30 +20,30 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "Mevcut" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "Potansiyel" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,23 +51,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "Potansiyel" @@ -82,14 +87,14 @@ msgid "Product Template" msgstr "Ürün Şablonu" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -97,26 +102,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -125,7 +130,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -133,7 +138,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -143,11 +148,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/tr_TR.po b/stock_available/i18n/tr_TR.po index 5435569ef..ced7dd5cf 100644 --- a/stock_available/i18n/tr_TR.po +++ b/stock_available/i18n/tr_TR.po @@ -20,30 +20,30 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,23 +51,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -82,14 +87,14 @@ msgid "Product Template" msgstr "Ürün şablonu" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -97,26 +102,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -125,7 +130,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -133,7 +138,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -143,11 +148,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/vi_VN.po b/stock_available/i18n/vi_VN.po index 151b50707..088664e6a 100644 --- a/stock_available/i18n/vi_VN.po +++ b/stock_available/i18n/vi_VN.po @@ -20,30 +20,30 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Potential" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -51,23 +51,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -82,14 +87,14 @@ msgid "Product Template" msgstr "Mẫu sản phẩm" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -97,26 +102,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -125,7 +130,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -133,7 +138,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -143,11 +148,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" diff --git a/stock_available/i18n/zh_CN.po b/stock_available/i18n/zh_CN.po index 5c723a247..7c522ed35 100644 --- a/stock_available/i18n/zh_CN.po +++ b/stock_available/i18n/zh_CN.po @@ -20,31 +20,31 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form msgid "Available" msgstr "可用" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.product_normal_form_view -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_form +#: model_terms:ir.ui.view,arch_db:stock_available.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_form #, fuzzy msgid "Potential" msgstr "可用" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_available_kanban +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_available_kanban msgid "Available to Promise:" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_immediately_usable_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__immediately_usable_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__immediately_usable_qty msgid "Available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,help:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "" "Choose the field of the product which will be used to compute potential.\n" "If empty, Quantity On Hand is used.\n" @@ -52,23 +52,28 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model,name:stock_available.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_available +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_sale msgid "Exclude goods already in sale quotations" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_immediately msgid "Exclude incoming goods" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__module_stock_available_mrp msgid "Include the production potential" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_product_product_potential_qty -#: model:ir.model.fields,field_description:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_product__potential_qty +#: model:ir.model.fields,field_description:stock_available.field_product_template__potential_qty msgid "Potential" msgstr "" @@ -83,14 +88,14 @@ msgid "Product Template" msgstr "产品模板" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_product__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_potential_qty +#: model:ir.model.fields,help:stock_available.field_product_template__potential_qty msgid "" "Quantity of this Product that could be produced using the materials already " "at hand. If the product has several variants, this will be the biggest " @@ -98,26 +103,26 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.ui.view,arch_db:stock_available.view_stock_configuration +#: model_terms:ir.ui.view,arch_db:stock_available.view_stock_configuration msgid "Stock available to promise" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_template_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_template__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_product_product_immediately_usable_qty +#: model:ir.model.fields,help:stock_available.field_product_product__immediately_usable_qty msgid "" "Stock for this Product that can be safely proposed for sale to Customers.\n" "The definition of this value can be configured to suit your needs." msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_mrp +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_mrp msgid "" "This will add the quantities of goods that can be immediately manufactured, " "to the quantities available to promise.\n" @@ -126,7 +131,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_immediately +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_immediately msgid "" "This will subtract incoming quantities from the quantities available to " "promise.\n" @@ -134,7 +139,7 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,help:stock_available.field_res_config_settings_module_stock_available_sale +#: model:ir.model.fields,help:stock_available.field_res_config_settings__module_stock_available_sale msgid "" "This will subtract quantities from the sale quotations from the quantities " "available to promise.\n" @@ -144,11 +149,6 @@ msgid "" msgstr "" #. module: stock_available -#: model:ir.model.fields,field_description:stock_available.field_res_config_settings_stock_available_mrp_based_on +#: model:ir.model.fields,field_description:stock_available.field_res_config_settings__stock_available_mrp_based_on msgid "based on" msgstr "基于" - -#. module: stock_available -#: model:ir.model,name:stock_available.model_res_config_settings -msgid "res.config.settings" -msgstr "" From 7575a1bbcfd1aa6201504ba2ee6cbbe8b7a4d817 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 29 Jul 2019 03:43:10 +0000 Subject: [PATCH 26/34] [UPD] README.rst --- stock_available/static/description/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stock_available/static/description/index.html b/stock_available/static/description/index.html index 8878cf54a..d50828330 100644 --- a/stock_available/static/description/index.html +++ b/stock_available/static/description/index.html @@ -3,7 +3,7 @@ - + Stock available to promise