mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
94
stock_available_unreserved/README.rst
Normal file
94
stock_available_unreserved/README.rst
Normal file
@@ -0,0 +1,94 @@
|
||||
==========================
|
||||
Stock Available Unreserved
|
||||
==========================
|
||||
|
||||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Production/Stable
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
|
||||
:alt: License: LGPL-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/13.0/stock_available_unreserved
|
||||
: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-13-0/stock-logistics-warehouse-13-0-stock_available_unreserved
|
||||
: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/13.0
|
||||
:alt: Try me on Runbot
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
This module allows users to check the quantity of a stocked product that is
|
||||
available on-hand, and that has not yet been reserved for use anywhere else.
|
||||
|
||||
This key figure is very important during the monitoring of the warehouse
|
||||
execution, because it assists users to ensure that the flow of products will
|
||||
not be stuck due to a sudden unavailability of stock.
|
||||
|
||||
If the warehouse personnel ensures that the unreserved quantity on hand > 0,
|
||||
then nobody will be stuck in pickings or manufacturing orders waiting for
|
||||
the availability of unreserved stock.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-warehouse/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/stock-logistics-warehouse/issues/new?body=module:%20stock_available_unreserved%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* ForgeFlow
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Jordi Ballester Alomar <jordi.ballester@forgeflow.com>
|
||||
* Stefan Rijnhart <stefan@opener.amsterdam>
|
||||
* Mykhailo Panarin <m.panarin@mobilunity.com>
|
||||
* Atte Isopuro <atte.isopuro@avoin.systems>
|
||||
* Lois Rilo <lois.rilo@forgeflow.com>
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
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.
|
||||
|
||||
.. |maintainer-LoisBForgeFlow| image:: https://github.com/LoisBForgeFlow.png?size=40px
|
||||
:target: https://github.com/LoisBForgeFlow
|
||||
:alt: LoisBForgeFlow
|
||||
|
||||
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
||||
|
||||
|maintainer-LoisBForgeFlow|
|
||||
|
||||
This module is part of the `OCA/stock-logistics-warehouse <https://github.com/OCA/stock-logistics-warehouse/tree/13.0/stock_available_unreserved>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
1
stock_available_unreserved/__init__.py
Normal file
1
stock_available_unreserved/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import models
|
||||
17
stock_available_unreserved/__manifest__.py
Normal file
17
stock_available_unreserved/__manifest__.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Copyright 2018 Camptocamp SA
|
||||
# Copyright 2016-19 ForgeFlow S.L. (https://www.forgeflow.com)
|
||||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
||||
|
||||
{
|
||||
"name": "Stock Available Unreserved",
|
||||
"summary": "Quantity of stock available for immediate use",
|
||||
"version": "13.0.1.0.0",
|
||||
"author": "ForgeFlow, Odoo Community Association (OCA)",
|
||||
"development_status": "Production/Stable",
|
||||
"maintainers": ["LoisRForgeFlow"],
|
||||
"website": "https://github.com/OCA/stock-logistics-warehouse",
|
||||
"category": "Warehouse Management",
|
||||
"depends": ["stock"],
|
||||
"data": ["views/stock_quant_view.xml", "views/product_view.xml"],
|
||||
"license": "LGPL-3",
|
||||
}
|
||||
86
stock_available_unreserved/i18n/ar.po
Normal file
86
stock_available_unreserved/i18n/ar.po
Normal file
@@ -0,0 +1,86 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
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 <baruni@osoul.ly>\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_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr "يحتوي على كميات غير محجوزة"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr "الغير محجوز داخلياً"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "المنتج"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "قالب المنتج"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr "الكمية المتوفرة الغير محجوزة"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr "الكمية في متناول اليد الغير محجوزة"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr "المنتجات القابلة للحجز"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr "الكمية في متناول اليد (غير محجوزة)"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr "غير محجوز"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr "غير محجوز:"
|
||||
87
stock_available_unreserved/i18n/ca.po
Normal file
87
stock_available_unreserved/i18n/ca.po
Normal file
@@ -0,0 +1,87 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: Carles Antoli <carlesantoli@hotmail.com>, 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"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Producte"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla del producte"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
96
stock_available_unreserved/i18n/de.po
Normal file
96
stock_available_unreserved/i18n/de.po
Normal file
@@ -0,0 +1,96 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr "Intern nicht reserviert"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Produktvorlage"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr "Freier Bestand"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr "Nicht reservierte, verfügbare Menge"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr "Freier Bestand (nicht reserv.)"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr "Nicht reserviert"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr "Nicht reserviert:"
|
||||
|
||||
#~ msgid " On Hand"
|
||||
#~ msgstr "Verfügbar"
|
||||
|
||||
#~ msgid "Available per stock"
|
||||
#~ msgstr "Verfügbar nach Bestand"
|
||||
|
||||
#~ msgid "Unreserved stock quantity"
|
||||
#~ msgstr "Nicht reservierte Bestandsmenge"
|
||||
88
stock_available_unreserved/i18n/el_GR.po
Normal file
88
stock_available_unreserved/i18n/el_GR.po
Normal file
@@ -0,0 +1,88 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2017\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"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Προϊόν"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
88
stock_available_unreserved/i18n/es.po
Normal file
88
stock_available_unreserved/i18n/es.po
Normal file
@@ -0,0 +1,88 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2019-11-26 20:14+0000\n"
|
||||
"Last-Translator: Galoperd <jvcsan@gmail.com>\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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.9.1\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr "Contiene producto no reservado"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr "No reservado interno"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr "Operador de dominio inválido %s"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr "Operando de dominio inválido %s"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr "Cant. Disponible No Reservada"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr "Cantidad A Mano No Reservada"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr "Cantidades"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr "Productos Reservables"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr "Stock A Mano (No Reservado)"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr "No reservado"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr "No reservado:"
|
||||
88
stock_available_unreserved/i18n/es_ES.po
Normal file
88
stock_available_unreserved/i18n/es_ES.po
Normal file
@@ -0,0 +1,88 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# Javier García-Panach <panaka7@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: Javier García-Panach <panaka7@gmail.com>, 2017\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"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
88
stock_available_unreserved/i18n/es_MX.po
Normal file
88
stock_available_unreserved/i18n/es_MX.po
Normal file
@@ -0,0 +1,88 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# Juan González <bifomania@protonmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: Juan González <bifomania@protonmail.com>, 2017\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"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla del producto"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
87
stock_available_unreserved/i18n/eu.po
Normal file
87
stock_available_unreserved/i18n/eu.po
Normal file
@@ -0,0 +1,87 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# Esther Martín Menéndez <esthermartin001@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: Esther Martín Menéndez <esthermartin001@gmail.com>, 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"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Produktua"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
87
stock_available_unreserved/i18n/fi.po
Normal file
87
stock_available_unreserved/i18n/fi.po
Normal file
@@ -0,0 +1,87 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Tuote"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Tuotteen malli"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
87
stock_available_unreserved/i18n/fr.po
Normal file
87
stock_available_unreserved/i18n/fr.po
Normal file
@@ -0,0 +1,87 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Article"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Modèle de produit"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
89
stock_available_unreserved/i18n/fr_CH.po
Normal file
89
stock_available_unreserved/i18n/fr_CH.po
Normal file
@@ -0,0 +1,89 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# leemannd <denis.leemann@camptocamp.com>, 2017
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Template de produit"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
88
stock_available_unreserved/i18n/fr_FR.po
Normal file
88
stock_available_unreserved/i18n/fr_FR.po
Normal file
@@ -0,0 +1,88 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
87
stock_available_unreserved/i18n/gl.po
Normal file
87
stock_available_unreserved/i18n/gl.po
Normal file
@@ -0,0 +1,87 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# César Castro Cruz <ulmroan@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: César Castro Cruz <ulmroan@gmail.com>, 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"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
89
stock_available_unreserved/i18n/hr.po
Normal file
89
stock_available_unreserved/i18n/hr.po
Normal file
@@ -0,0 +1,89 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# Bole <bole@dajmi5.com>, 2017
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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"
|
||||
"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_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Predložak proizvoda"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
90
stock_available_unreserved/i18n/hr_HR.po
Normal file
90
stock_available_unreserved/i18n/hr_HR.po
Normal file
@@ -0,0 +1,90 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# Bole <bole@dajmi5.com>, 2017
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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"
|
||||
"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_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Predložak proizvoda"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
88
stock_available_unreserved/i18n/it.po
Normal file
88
stock_available_unreserved/i18n/it.po
Normal file
@@ -0,0 +1,88 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# Paolo Valier <paolo.valier@hotmail.it>, 2017
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Prodotto"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Template Prodotto"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
87
stock_available_unreserved/i18n/nl.po
Normal file
87
stock_available_unreserved/i18n/nl.po
Normal file
@@ -0,0 +1,87 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Productsjabloon"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
89
stock_available_unreserved/i18n/nl_NL.po
Normal file
89
stock_available_unreserved/i18n/nl_NL.po
Normal file
@@ -0,0 +1,89 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Peter Hageman <hageman.p@gmail.com>, 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 <hageman.p@gmail.com>, 2017\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"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Productsjabloon"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
87
stock_available_unreserved/i18n/pt.po
Normal file
87
stock_available_unreserved/i18n/pt.po
Normal file
@@ -0,0 +1,87 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
90
stock_available_unreserved/i18n/pt_BR.po
Normal file
90
stock_available_unreserved/i18n/pt_BR.po
Normal file
@@ -0,0 +1,90 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# Claudio Araujo Santos <claudioaraujosantos@gmail.com>, 2017
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# danimaribeiro <danimaribeiro@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: danimaribeiro <danimaribeiro@gmail.com>, 2017\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/"
|
||||
"teams/23907/pt_BR/)\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Modelo Produto"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr "Desreservar"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
88
stock_available_unreserved/i18n/ro.po
Normal file
88
stock_available_unreserved/i18n/ro.po
Normal file
@@ -0,0 +1,88 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
||||
"2:1));\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Produs"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Produs șablon"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
89
stock_available_unreserved/i18n/ru.po
Normal file
89
stock_available_unreserved/i18n/ru.po
Normal file
@@ -0,0 +1,89 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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"
|
||||
"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_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Товар/Услуга"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
97
stock_available_unreserved/i18n/sl.po
Normal file
97
stock_available_unreserved/i18n/sl.po
Normal file
@@ -0,0 +1,97 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr "Interno ne rezervirano"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Predloga proizvoda"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr "Ne rezervirana količina na voljo"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr "Ne rezervirana količna pri roki"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr "Količina pri roki (ne rezervirana)"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr "Odstranjena rezervacija"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr "Ne rezervirano:"
|
||||
|
||||
#~ msgid " On Hand"
|
||||
#~ msgstr "Na voljo"
|
||||
|
||||
#~ msgid "Available per stock"
|
||||
#~ msgstr "Na voljo po zalogah"
|
||||
|
||||
#~ msgid "Unreserved stock quantity"
|
||||
#~ msgstr "Količina ne rezerviranih zalog"
|
||||
@@ -0,0 +1,83 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 12.0\n"
|
||||
"Report-Msgid-Bugs-To: \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_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
|
||||
88
stock_available_unreserved/i18n/tr.po
Normal file
88
stock_available_unreserved/i18n/tr.po
Normal file
@@ -0,0 +1,88 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# Ediz Duman <neps1192@gmail.com>, 2017
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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: OCA Transbot <transbot@odoo-community.org>, 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"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Ürün"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Ürün Şablonu"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
88
stock_available_unreserved/i18n/tr_TR.po
Normal file
88
stock_available_unreserved/i18n/tr_TR.po
Normal file
@@ -0,0 +1,88 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# Ozge Altinisik <ozge@altinkaya.com.tr>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: Ozge Altinisik <ozge@altinkaya.com.tr>, 2017\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"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Ürün"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Ürün şablonu"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
88
stock_available_unreserved/i18n/vi_VN.po
Normal file
88
stock_available_unreserved/i18n/vi_VN.po
Normal file
@@ -0,0 +1,88 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2017-03-04 03:58+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Sản phẩm"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Mẫu sản phẩm"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr ""
|
||||
89
stock_available_unreserved/i18n/zh_CN.po
Normal file
89
stock_available_unreserved/i18n/zh_CN.po
Normal file
@@ -0,0 +1,89 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_available_unreserved
|
||||
#
|
||||
# Translators:
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 03:58+0000\n"
|
||||
"PO-Revision-Date: 2019-09-26 17:24+0000\n"
|
||||
"Last-Translator: 黎伟杰 <674416404@qq.com>\n"
|
||||
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/"
|
||||
"zh_CN/)\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 3.8\n"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved
|
||||
msgid "Contains unreserved products"
|
||||
msgstr "包含未预留的产品"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view
|
||||
msgid "Internal Unreserved"
|
||||
msgstr "内部未预留"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:116
|
||||
#, python-format
|
||||
msgid "Invalid domain operator %s"
|
||||
msgstr "无效的域运算符%s"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: code:addons/stock_available_unreserved/models/product.py:118
|
||||
#, python-format
|
||||
msgid "Invalid domain right operand %s"
|
||||
msgstr "无效的域权限操作数%s"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "产品"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "产品模板"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res
|
||||
msgid "Qty Available Not Reserved"
|
||||
msgstr "可用量未预留"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res
|
||||
msgid "Quantity On Hand Unreserved"
|
||||
msgstr "未预留的在手数量"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.model,name:stock_available_unreserved.model_stock_quant
|
||||
msgid "Quants"
|
||||
msgstr "数量分析"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock
|
||||
msgid "Reservable Products"
|
||||
msgstr "可预订产品"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved
|
||||
msgid "Stock On Hand (Unreserved)"
|
||||
msgstr "现有库存(未预留)"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button
|
||||
msgid "Unreserved"
|
||||
msgstr "未预留"
|
||||
|
||||
#. module: stock_available_unreserved
|
||||
#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view
|
||||
msgid "Unreserved:"
|
||||
msgstr "未预留:"
|
||||
2
stock_available_unreserved/models/__init__.py
Normal file
2
stock_available_unreserved/models/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
from . import product
|
||||
from . import quant
|
||||
115
stock_available_unreserved/models/product.py
Normal file
115
stock_available_unreserved/models/product.py
Normal file
@@ -0,0 +1,115 @@
|
||||
# Copyright 2018 Camptocamp SA
|
||||
# Copyright 2016-19 ForgeFlow S.L. (https://www.forgeflow.com)
|
||||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.tools.float_utils import float_round
|
||||
|
||||
from odoo.addons.stock.models.product import OPERATORS
|
||||
|
||||
|
||||
class ProductTemplate(models.Model):
|
||||
_inherit = "product.template"
|
||||
|
||||
qty_available_not_res = fields.Float(
|
||||
string="Quantity On Hand Unreserved",
|
||||
digits="Product Unit of Measure",
|
||||
compute="_compute_product_available_not_res",
|
||||
search="_search_quantity_unreserved",
|
||||
)
|
||||
|
||||
@api.depends("product_variant_ids.qty_available_not_res")
|
||||
def _compute_product_available_not_res(self):
|
||||
for tmpl in self:
|
||||
if isinstance(tmpl.id, models.NewId):
|
||||
continue
|
||||
tmpl.qty_available_not_res = sum(
|
||||
tmpl.mapped("product_variant_ids.qty_available_not_res")
|
||||
)
|
||||
|
||||
def action_open_quants_unreserved(self):
|
||||
products_ids = self.mapped("product_variant_ids").ids
|
||||
quants = self.env["stock.quant"].search([("product_id", "in", products_ids)])
|
||||
quant_ids = quants.filtered(
|
||||
lambda x: x.product_id.qty_available_not_res > 0
|
||||
).ids
|
||||
result = self.env.ref("stock.product_template_open_quants").read()[0]
|
||||
result["domain"] = [("id", "in", quant_ids)]
|
||||
result["context"] = {
|
||||
"search_default_locationgroup": 1,
|
||||
"search_default_internal_loc": 1,
|
||||
}
|
||||
return result
|
||||
|
||||
def _search_quantity_unreserved(self, operator, value):
|
||||
domain = [("qty_available_not_res", operator, value)]
|
||||
product_variant_ids = self.env["product.product"].search(domain)
|
||||
return [("product_variant_ids", "in", product_variant_ids.ids)]
|
||||
|
||||
|
||||
class ProductProduct(models.Model):
|
||||
_inherit = "product.product"
|
||||
|
||||
qty_available_not_res = fields.Float(
|
||||
string="Qty Available Not Reserved",
|
||||
digits="Product Unit of Measure",
|
||||
compute="_compute_qty_available_not_reserved",
|
||||
search="_search_quantity_unreserved",
|
||||
)
|
||||
|
||||
def _prepare_domain_available_not_reserved(self):
|
||||
domain_quant = [("product_id", "in", self.ids)]
|
||||
domain_quant_locations = self._get_domain_locations()[0]
|
||||
domain_quant.extend(domain_quant_locations)
|
||||
return domain_quant
|
||||
|
||||
def _compute_product_available_not_res_dict(self):
|
||||
|
||||
res = {}
|
||||
|
||||
domain_quant = self._prepare_domain_available_not_reserved()
|
||||
quants = (
|
||||
self.env["stock.quant"]
|
||||
.with_context(lang=False)
|
||||
.read_group(
|
||||
domain_quant,
|
||||
["product_id", "location_id", "quantity", "reserved_quantity"],
|
||||
["product_id", "location_id"],
|
||||
lazy=False,
|
||||
)
|
||||
)
|
||||
product_sums = {}
|
||||
for quant in quants:
|
||||
# create a dictionary with the total value per products
|
||||
product_sums.setdefault(quant["product_id"][0], 0.0)
|
||||
product_sums[quant["product_id"][0]] += (
|
||||
quant["quantity"] - quant["reserved_quantity"]
|
||||
)
|
||||
for product in self.with_context(prefetch_fields=False, lang=""):
|
||||
available_not_res = float_round(
|
||||
product_sums.get(product.id, 0.0),
|
||||
precision_rounding=product.uom_id.rounding,
|
||||
)
|
||||
res[product.id] = {"qty_available_not_res": available_not_res}
|
||||
return res
|
||||
|
||||
@api.depends("stock_move_ids.product_qty", "stock_move_ids.state")
|
||||
def _compute_qty_available_not_reserved(self):
|
||||
res = self._compute_product_available_not_res_dict()
|
||||
for prod in self:
|
||||
qty = res[prod.id]["qty_available_not_res"]
|
||||
prod.qty_available_not_res = qty
|
||||
return res
|
||||
|
||||
def _search_quantity_unreserved(self, operator, value):
|
||||
if operator not in OPERATORS:
|
||||
raise UserError(_("Invalid domain operator %s") % operator)
|
||||
if not isinstance(value, (float, int)):
|
||||
raise UserError(_("Invalid domain right operand %s") % value)
|
||||
|
||||
ids = []
|
||||
for product in self.search([]):
|
||||
if OPERATORS[operator](product.qty_available_not_res, value):
|
||||
ids.append(product.id)
|
||||
return [("id", "in", ids)]
|
||||
23
stock_available_unreserved/models/quant.py
Normal file
23
stock_available_unreserved/models/quant.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Copyright 2018 Camptocamp SA
|
||||
# Copyright 2016-19 ForgeFlow S.L. (https://www.forgeflow.com)
|
||||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
||||
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class StockQuant(models.Model):
|
||||
_inherit = "stock.quant"
|
||||
|
||||
contains_unreserved = fields.Boolean(
|
||||
string="Contains unreserved products",
|
||||
compute="_compute_contains_unreserved",
|
||||
store=True,
|
||||
)
|
||||
|
||||
@api.depends("product_id", "location_id", "quantity", "reserved_quantity")
|
||||
def _compute_contains_unreserved(self):
|
||||
for record in self:
|
||||
available = record._get_available_quantity(
|
||||
record.product_id, record.location_id
|
||||
)
|
||||
record.contains_unreserved = True if available > 0 else False
|
||||
5
stock_available_unreserved/readme/CONTRIBUTORS.rst
Normal file
5
stock_available_unreserved/readme/CONTRIBUTORS.rst
Normal file
@@ -0,0 +1,5 @@
|
||||
* Jordi Ballester Alomar <jordi.ballester@forgeflow.com>
|
||||
* Stefan Rijnhart <stefan@opener.amsterdam>
|
||||
* Mykhailo Panarin <m.panarin@mobilunity.com>
|
||||
* Atte Isopuro <atte.isopuro@avoin.systems>
|
||||
* Lois Rilo <lois.rilo@forgeflow.com>
|
||||
10
stock_available_unreserved/readme/DESCRIPTION.rst
Normal file
10
stock_available_unreserved/readme/DESCRIPTION.rst
Normal file
@@ -0,0 +1,10 @@
|
||||
This module allows users to check the quantity of a stocked product that is
|
||||
available on-hand, and that has not yet been reserved for use anywhere else.
|
||||
|
||||
This key figure is very important during the monitoring of the warehouse
|
||||
execution, because it assists users to ensure that the flow of products will
|
||||
not be stuck due to a sudden unavailability of stock.
|
||||
|
||||
If the warehouse personnel ensures that the unreserved quantity on hand > 0,
|
||||
then nobody will be stuck in pickings or manufacturing orders waiting for
|
||||
the availability of unreserved stock.
|
||||
BIN
stock_available_unreserved/static/description/icon.png
Normal file
BIN
stock_available_unreserved/static/description/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
432
stock_available_unreserved/static/description/index.html
Normal file
432
stock_available_unreserved/static/description/index.html
Normal file
@@ -0,0 +1,432 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils 0.15.2: http://docutils.sourceforge.net/" />
|
||||
<title>Stock Available Unreserved</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
||||
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="stock-available-unreserved">
|
||||
<h1 class="title">Stock Available Unreserved</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Production/Stable" src="https://img.shields.io/badge/maturity-Production%2FStable-green.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/licence-LGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/stock-logistics-warehouse/tree/13.0/stock_available_unreserved"><img alt="OCA/stock-logistics-warehouse" src="https://img.shields.io/badge/github-OCA%2Fstock--logistics--warehouse-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/stock-logistics-warehouse-13-0/stock-logistics-warehouse-13-0-stock_available_unreserved"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/153/13.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module allows users to check the quantity of a stocked product that is
|
||||
available on-hand, and that has not yet been reserved for use anywhere else.</p>
|
||||
<p>This key figure is very important during the monitoring of the warehouse
|
||||
execution, because it assists users to ensure that the flow of products will
|
||||
not be stuck due to a sudden unavailability of stock.</p>
|
||||
<p>If the warehouse personnel ensures that the unreserved quantity on hand > 0,
|
||||
then nobody will be stuck in pickings or manufacturing orders waiting for
|
||||
the availability of unreserved stock.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#bug-tracker" id="id1">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="id2">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="id3">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="id4">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="id5">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#id1">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/stock-logistics-warehouse/issues">GitHub Issues</a>.
|
||||
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
|
||||
<a class="reference external" href="https://github.com/OCA/stock-logistics-warehouse/issues/new?body=module:%20stock_available_unreserved%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#id2">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#id3">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>ForgeFlow</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#id4">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Jordi Ballester Alomar <<a class="reference external" href="mailto:jordi.ballester@forgeflow.com">jordi.ballester@forgeflow.com</a>></li>
|
||||
<li>Stefan Rijnhart <<a class="reference external" href="mailto:stefan@opener.amsterdam">stefan@opener.amsterdam</a>></li>
|
||||
<li>Mykhailo Panarin <<a class="reference external" href="mailto:m.panarin@mobilunity.com">m.panarin@mobilunity.com</a>></li>
|
||||
<li>Atte Isopuro <<a class="reference external" href="mailto:atte.isopuro@avoin.systems">atte.isopuro@avoin.systems</a>></li>
|
||||
<li>Lois Rilo <<a class="reference external" href="mailto:lois.rilo@forgeflow.com">lois.rilo@forgeflow.com</a>></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#id5">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
||||
<p>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.</p>
|
||||
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
|
||||
<p><a class="reference external" href="https://github.com/LoisBForgeFlow"><img alt="LoisBForgeFlow" src="https://github.com/LoisBForgeFlow.png?size=40px" /></a></p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/stock-logistics-warehouse/tree/13.0/stock_available_unreserved">OCA/stock-logistics-warehouse</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
1
stock_available_unreserved/tests/__init__.py
Normal file
1
stock_available_unreserved/tests/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import test_stock_available_unreserved
|
||||
@@ -0,0 +1,376 @@
|
||||
# Copyright 2018 Camptocamp SA
|
||||
# Copyright 2016-19 ForgeFlow S.L. (https://www.forgeflow.com)
|
||||
# Copyright 2019 JARSA Sistemas S.A. de C.V.
|
||||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
||||
|
||||
from odoo.tests.common import SavepointCase
|
||||
|
||||
|
||||
class TestStockLogisticsWarehouse(SavepointCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.pickingObj = cls.env["stock.picking"]
|
||||
cls.productObj = cls.env["product.product"]
|
||||
cls.templateObj = cls.env["product.template"]
|
||||
cls.attrObj = cls.env["product.attribute"]
|
||||
cls.attrvalueObj = cls.env["product.attribute.value"]
|
||||
|
||||
cls.supplier_location = cls.env.ref("stock.stock_location_suppliers")
|
||||
cls.stock_location = cls.env.ref("stock.stock_location_stock")
|
||||
cls.customer_location = cls.env.ref("stock.stock_location_customers")
|
||||
cls.uom_unit = cls.env.ref("uom.product_uom_unit")
|
||||
cls.main_company = cls.env.ref("base.main_company")
|
||||
|
||||
cls.bin_a = cls.env["stock.location"].create(
|
||||
{
|
||||
"usage": "internal",
|
||||
"name": "Bin A",
|
||||
"location_id": cls.stock_location.id,
|
||||
"company_id": cls.main_company.id,
|
||||
}
|
||||
)
|
||||
|
||||
cls.bin_b = cls.env["stock.location"].create(
|
||||
{
|
||||
"usage": "internal",
|
||||
"name": "Bin B",
|
||||
"location_id": cls.stock_location.id,
|
||||
"company_id": cls.main_company.id,
|
||||
}
|
||||
)
|
||||
|
||||
cls.env["stock.location"]._parent_store_compute()
|
||||
|
||||
# Create product template
|
||||
cls.templateAB = cls.templateObj.create(
|
||||
{"name": "templAB", "uom_id": cls.uom_unit.id, "type": "product"}
|
||||
)
|
||||
|
||||
# Create product A and B
|
||||
cls.color_attribute = cls.attrObj.create({"name": "Color", "sequence": 1})
|
||||
cls.color_black = cls.attrvalueObj.create(
|
||||
{"name": "Black", "attribute_id": cls.color_attribute.id, "sequence": 1}
|
||||
)
|
||||
cls.color_white = cls.attrvalueObj.create(
|
||||
{"name": "White", "attribute_id": cls.color_attribute.id, "sequence": 2}
|
||||
)
|
||||
cls.color_grey = cls.attrvalueObj.create(
|
||||
{"name": "Grey", "attribute_id": cls.color_attribute.id, "sequence": 3}
|
||||
)
|
||||
cls.product_attribute_line = cls.env["product.template.attribute.line"].create(
|
||||
{
|
||||
"product_tmpl_id": cls.templateAB.id,
|
||||
"attribute_id": cls.color_attribute.id,
|
||||
"value_ids": [
|
||||
(6, 0, [cls.color_white.id, cls.color_black.id, cls.color_grey.id])
|
||||
],
|
||||
}
|
||||
)
|
||||
cls.productA = cls.templateAB.product_variant_ids[0]
|
||||
cls.productB = cls.templateAB.product_variant_ids[1]
|
||||
|
||||
cls.productC = cls.templateAB.product_variant_ids[2]
|
||||
|
||||
# Create a picking move from INCOMING to STOCK
|
||||
cls.pickingInA = cls.pickingObj.create(
|
||||
{
|
||||
"picking_type_id": cls.env.ref("stock.picking_type_in").id,
|
||||
"location_id": cls.supplier_location.id,
|
||||
"location_dest_id": cls.stock_location.id,
|
||||
"move_lines": [
|
||||
(
|
||||
0,
|
||||
0,
|
||||
{
|
||||
"name": "Test move",
|
||||
"product_id": cls.productA.id,
|
||||
"product_uom": cls.productA.uom_id.id,
|
||||
"product_uom_qty": 2,
|
||||
"quantity_done": 2,
|
||||
"location_id": cls.supplier_location.id,
|
||||
"location_dest_id": cls.stock_location.id,
|
||||
},
|
||||
)
|
||||
],
|
||||
}
|
||||
)
|
||||
|
||||
cls.pickingInB = cls.pickingObj.create(
|
||||
{
|
||||
"picking_type_id": cls.env.ref("stock.picking_type_in").id,
|
||||
"location_id": cls.supplier_location.id,
|
||||
"location_dest_id": cls.stock_location.id,
|
||||
"move_lines": [
|
||||
(
|
||||
0,
|
||||
0,
|
||||
{
|
||||
"name": "Test move",
|
||||
"product_id": cls.productB.id,
|
||||
"product_uom": cls.productB.uom_id.id,
|
||||
"product_uom_qty": 3,
|
||||
"quantity_done": 3,
|
||||
"location_id": cls.supplier_location.id,
|
||||
"location_dest_id": cls.stock_location.id,
|
||||
},
|
||||
)
|
||||
],
|
||||
}
|
||||
)
|
||||
cls.pickingOutA = cls.pickingObj.create(
|
||||
{
|
||||
"picking_type_id": cls.env.ref("stock.picking_type_out").id,
|
||||
"location_id": cls.stock_location.id,
|
||||
"location_dest_id": cls.customer_location.id,
|
||||
"move_lines": [
|
||||
(
|
||||
0,
|
||||
0,
|
||||
{
|
||||
"name": "Test move",
|
||||
"product_id": cls.productB.id,
|
||||
"product_uom": cls.productB.uom_id.id,
|
||||
"product_uom_qty": 2,
|
||||
"location_id": cls.stock_location.id,
|
||||
"location_dest_id": cls.customer_location.id,
|
||||
},
|
||||
)
|
||||
],
|
||||
}
|
||||
)
|
||||
|
||||
def compare_qty_available_not_res(self, product, value):
|
||||
product.invalidate_cache()
|
||||
self.assertEqual(product.qty_available_not_res, value)
|
||||
|
||||
def test_01_stock_levels(self):
|
||||
"""checking that qty_available_not_res actually reflects \
|
||||
the variations in stock, both on product and template"""
|
||||
|
||||
self.compare_qty_available_not_res(self.productA, 0)
|
||||
self.compare_qty_available_not_res(self.templateAB, 0)
|
||||
|
||||
self.pickingInA.action_confirm()
|
||||
self.compare_qty_available_not_res(self.productA, 0)
|
||||
self.compare_qty_available_not_res(self.templateAB, 0)
|
||||
|
||||
self.pickingInA.action_assign()
|
||||
self.compare_qty_available_not_res(self.productA, 0)
|
||||
self.compare_qty_available_not_res(self.templateAB, 0)
|
||||
|
||||
self.pickingInA.button_validate()
|
||||
self.compare_qty_available_not_res(self.productA, 2)
|
||||
self.compare_qty_available_not_res(self.templateAB, 2)
|
||||
|
||||
# will directly trigger action_done on self.productB
|
||||
self.pickingInB.action_done()
|
||||
self.compare_qty_available_not_res(self.productA, 2)
|
||||
self.compare_qty_available_not_res(self.productB, 3)
|
||||
self.compare_qty_available_not_res(self.templateAB, 5)
|
||||
|
||||
self.compare_qty_available_not_res(self.productB, 3)
|
||||
self.compare_qty_available_not_res(self.templateAB, 5)
|
||||
|
||||
self.pickingOutA.action_confirm()
|
||||
self.compare_qty_available_not_res(self.productB, 3)
|
||||
self.compare_qty_available_not_res(self.templateAB, 5)
|
||||
|
||||
self.pickingOutA.action_assign()
|
||||
self.compare_qty_available_not_res(self.productB, 1)
|
||||
self.compare_qty_available_not_res(self.templateAB, 3)
|
||||
|
||||
self.pickingOutA.action_done()
|
||||
self.compare_qty_available_not_res(self.productB, 1)
|
||||
self.compare_qty_available_not_res(self.templateAB, 3)
|
||||
|
||||
self.templateAB.action_open_quants_unreserved()
|
||||
|
||||
def test_02_more_than_one_quant(self):
|
||||
self.env["stock.quant"].create(
|
||||
{
|
||||
"location_id": self.stock_location.id,
|
||||
"company_id": self.main_company.id,
|
||||
"product_id": self.productA.id,
|
||||
"quantity": 10.0,
|
||||
}
|
||||
)
|
||||
self.env["stock.quant"].create(
|
||||
{
|
||||
"location_id": self.bin_a.id,
|
||||
"company_id": self.main_company.id,
|
||||
"product_id": self.productA.id,
|
||||
"quantity": 10.0,
|
||||
}
|
||||
)
|
||||
self.env["stock.quant"].create(
|
||||
{
|
||||
"location_id": self.bin_b.id,
|
||||
"company_id": self.main_company.id,
|
||||
"product_id": self.productA.id,
|
||||
"quantity": 60.0,
|
||||
}
|
||||
)
|
||||
self.compare_qty_available_not_res(self.productA, 80)
|
||||
|
||||
def check_variants_found_correctly(self, operator, value, expected):
|
||||
domain = [("id", "in", self.templateAB.product_variant_ids.ids)]
|
||||
return self.check_found_correctly(
|
||||
self.env["product.product"], domain, operator, value, expected
|
||||
)
|
||||
|
||||
def check_template_found_correctly(self, operator, value, expected):
|
||||
# There may be other products already in the system: ignore those
|
||||
domain = [("id", "in", self.templateAB.ids)]
|
||||
return self.check_found_correctly(
|
||||
self.env["product.template"], domain, operator, value, expected
|
||||
)
|
||||
|
||||
def check_found_correctly(self, model, domain, operator, value, expected):
|
||||
found = model.search(domain + [("qty_available_not_res", operator, value)])
|
||||
if found != expected:
|
||||
self.fail(
|
||||
"Searching for products failed: search for unreserved "
|
||||
"quantity {operator} {value}; expected to find "
|
||||
"{expected}, but found {found}".format(
|
||||
operator=operator,
|
||||
value=value,
|
||||
expected=expected or "no products",
|
||||
found=found,
|
||||
)
|
||||
)
|
||||
|
||||
def test_03_stock_search(self):
|
||||
all_variants = self.templateAB.product_variant_ids
|
||||
a_and_b = self.productA + self.productB
|
||||
b_and_c = self.productB + self.productC
|
||||
a_and_c = self.productA + self.productC
|
||||
no_variants = self.env["product.product"]
|
||||
no_template = self.env["product.template"]
|
||||
# Start: one template with three variants.
|
||||
# All variants have zero unreserved stock
|
||||
self.check_variants_found_correctly("=", 0, all_variants)
|
||||
self.check_variants_found_correctly(">=", 0, all_variants)
|
||||
self.check_variants_found_correctly("<=", 0, all_variants)
|
||||
self.check_variants_found_correctly(">", 0, no_variants)
|
||||
self.check_variants_found_correctly("<", 0, no_variants)
|
||||
self.check_variants_found_correctly("!=", 0, no_variants)
|
||||
|
||||
self.check_template_found_correctly("=", 0, self.templateAB)
|
||||
self.check_template_found_correctly(">=", 0, self.templateAB)
|
||||
self.check_template_found_correctly("<=", 0, self.templateAB)
|
||||
self.check_template_found_correctly(">", 0, no_template)
|
||||
self.check_template_found_correctly("<", 0, no_template)
|
||||
self.check_template_found_correctly("!=", 0, no_template)
|
||||
|
||||
self.pickingInA.action_confirm()
|
||||
# All variants still have zero unreserved stock
|
||||
self.check_variants_found_correctly("=", 0, all_variants)
|
||||
self.check_variants_found_correctly(">=", 0, all_variants)
|
||||
self.check_variants_found_correctly("<=", 0, all_variants)
|
||||
self.check_variants_found_correctly(">", 0, no_variants)
|
||||
self.check_variants_found_correctly("<", 0, no_variants)
|
||||
self.check_variants_found_correctly("!=", 0, no_variants)
|
||||
|
||||
self.check_template_found_correctly("=", 0, self.templateAB)
|
||||
self.check_template_found_correctly(">=", 0, self.templateAB)
|
||||
self.check_template_found_correctly("<=", 0, self.templateAB)
|
||||
self.check_template_found_correctly(">", 0, no_template)
|
||||
self.check_template_found_correctly("<", 0, no_template)
|
||||
self.check_template_found_correctly("!=", 0, no_template)
|
||||
|
||||
self.pickingInA.action_assign()
|
||||
# All variants still have zero unreserved stock
|
||||
self.check_variants_found_correctly("=", 0, all_variants)
|
||||
self.check_variants_found_correctly(">=", 0, all_variants)
|
||||
self.check_variants_found_correctly("<=", 0, all_variants)
|
||||
self.check_variants_found_correctly(">", 0, no_variants)
|
||||
self.check_variants_found_correctly("<", 0, no_variants)
|
||||
self.check_variants_found_correctly("!=", 0, no_variants)
|
||||
|
||||
self.check_template_found_correctly("=", 0, self.templateAB)
|
||||
self.check_template_found_correctly(">=", 0, self.templateAB)
|
||||
self.check_template_found_correctly("<=", 0, self.templateAB)
|
||||
self.check_template_found_correctly(">", 0, no_template)
|
||||
self.check_template_found_correctly("<", 0, no_template)
|
||||
self.check_template_found_correctly("!=", 0, no_template)
|
||||
|
||||
self.pickingInA.button_validate()
|
||||
# product A has 2 unreserved stock, other variants have 0
|
||||
|
||||
self.check_variants_found_correctly("=", 2, self.productA)
|
||||
self.check_variants_found_correctly("=", 0, b_and_c)
|
||||
self.check_variants_found_correctly(">", 0, self.productA)
|
||||
self.check_variants_found_correctly("<", 0, no_variants)
|
||||
self.check_variants_found_correctly("!=", 0, self.productA)
|
||||
self.check_variants_found_correctly("!=", 1, all_variants)
|
||||
self.check_variants_found_correctly("!=", 2, b_and_c)
|
||||
self.check_variants_found_correctly("<=", 0, b_and_c)
|
||||
self.check_variants_found_correctly("<=", 1, b_and_c)
|
||||
self.check_variants_found_correctly(">=", 0, all_variants)
|
||||
self.check_variants_found_correctly(">=", 1, self.productA)
|
||||
|
||||
self.check_template_found_correctly("=", 0, self.templateAB)
|
||||
self.check_template_found_correctly("=", 1, no_template)
|
||||
self.check_template_found_correctly("=", 2, self.templateAB)
|
||||
self.check_template_found_correctly("!=", 0, self.templateAB)
|
||||
self.check_template_found_correctly("!=", 1, self.templateAB)
|
||||
self.check_template_found_correctly("!=", 2, self.templateAB)
|
||||
self.check_template_found_correctly(">", -1, self.templateAB)
|
||||
self.check_template_found_correctly(">", 0, self.templateAB)
|
||||
self.check_template_found_correctly(">", 1, self.templateAB)
|
||||
self.check_template_found_correctly(">", 2, no_template)
|
||||
self.check_template_found_correctly("<", 3, self.templateAB)
|
||||
self.check_template_found_correctly("<", 2, self.templateAB)
|
||||
self.check_template_found_correctly("<", 1, self.templateAB)
|
||||
self.check_template_found_correctly("<", 0, no_template)
|
||||
self.check_template_found_correctly(">=", 0, self.templateAB)
|
||||
self.check_template_found_correctly(">=", 1, self.templateAB)
|
||||
self.check_template_found_correctly(">=", 2, self.templateAB)
|
||||
self.check_template_found_correctly(">=", 3, no_template)
|
||||
self.check_template_found_correctly("<=", 3, self.templateAB)
|
||||
self.check_template_found_correctly("<=", 2, self.templateAB)
|
||||
self.check_template_found_correctly("<=", 1, self.templateAB)
|
||||
self.check_template_found_correctly("<=", 0, self.templateAB)
|
||||
self.check_template_found_correctly("<=", -1, no_template)
|
||||
|
||||
self.pickingInB.action_done()
|
||||
# product A has 2 unreserved, product B has 3 unreserved and
|
||||
# the remaining variant has 0
|
||||
|
||||
self.check_variants_found_correctly("=", 2, self.productA)
|
||||
self.check_variants_found_correctly("=", 3, self.productB)
|
||||
self.check_variants_found_correctly("=", 0, self.productC)
|
||||
self.check_variants_found_correctly(">", 0, a_and_b)
|
||||
self.check_variants_found_correctly("<", 0, no_variants)
|
||||
self.check_variants_found_correctly("!=", 0, a_and_b)
|
||||
self.check_variants_found_correctly("!=", 1, all_variants)
|
||||
self.check_variants_found_correctly("!=", 2, b_and_c)
|
||||
self.check_variants_found_correctly("!=", 3, a_and_c)
|
||||
self.check_variants_found_correctly("<=", 0, self.productC)
|
||||
self.check_variants_found_correctly("<=", 1, self.productC)
|
||||
self.check_variants_found_correctly(">=", 0, all_variants)
|
||||
self.check_variants_found_correctly(">=", 1, a_and_b)
|
||||
self.check_variants_found_correctly(">=", 2, a_and_b)
|
||||
self.check_variants_found_correctly(">=", 3, self.productB)
|
||||
self.check_variants_found_correctly(">=", 4, no_variants)
|
||||
|
||||
self.check_template_found_correctly("=", 0, self.templateAB)
|
||||
self.check_template_found_correctly("=", 1, no_template)
|
||||
self.check_template_found_correctly("=", 2, self.templateAB)
|
||||
self.check_template_found_correctly("=", 3, self.templateAB)
|
||||
self.check_template_found_correctly("!=", 0, self.templateAB)
|
||||
self.check_template_found_correctly("!=", 2, self.templateAB)
|
||||
self.check_template_found_correctly("!=", 3, self.templateAB)
|
||||
self.check_template_found_correctly(">", 1, self.templateAB)
|
||||
self.check_template_found_correctly(">", 2, self.templateAB)
|
||||
# This part may seem a bit unintuitive, but this is the
|
||||
# way it works in the Odoo core
|
||||
# Searches are "deferred" to the variants, so while the template says
|
||||
# it has a stock of 5, searching for a stock greater than 3 will not
|
||||
# find anything because no singular variant has a higher stock
|
||||
self.check_template_found_correctly(">", 3, no_template)
|
||||
self.check_template_found_correctly("<", 3, self.templateAB)
|
||||
self.check_template_found_correctly("<", 2, self.templateAB)
|
||||
self.check_template_found_correctly("<", 1, self.templateAB)
|
||||
self.check_template_found_correctly("<", 0, no_template)
|
||||
86
stock_available_unreserved/views/product_view.xml
Normal file
86
stock_available_unreserved/views/product_view.xml
Normal file
@@ -0,0 +1,86 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="view_stock_product_template_tree" model="ir.ui.view">
|
||||
<field name="name">product.template.stock.tree.inherit</field>
|
||||
<field name="model">product.template</field>
|
||||
<field name="inherit_id"
|
||||
ref="stock.view_stock_product_template_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="qty_available" position="after">
|
||||
<field name="qty_available_not_res"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="product_template_search_form_view_stock" model="ir.ui.view">
|
||||
<field name="name">product.template.search.stock.form.inherit</field>
|
||||
<field name="model">product.template</field>
|
||||
<field name="inherit_id" ref="stock.product_template_search_form_view_stock"/>
|
||||
<field name="arch" type="xml">
|
||||
<filter name="real_stock_available" position="after">
|
||||
<filter name="real_stock_unreserved" string="Reservable Products" domain="[('qty_available_not_res','>',0)]"/>
|
||||
</filter>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="product_template_kanban_stock_view" model="ir.ui.view">
|
||||
<field name="name">Product Template Kanban Stock</field>
|
||||
<field name="model">product.template</field>
|
||||
<field name="inherit_id"
|
||||
ref="stock.product_template_kanban_stock_view"/>
|
||||
<field name="arch" type="xml">
|
||||
<ul position="inside">
|
||||
<li t-if="record.type.raw_value == 'product'">Unreserved: <field name="qty_available_not_res"/> <field name="uom_id"/></li>
|
||||
</ul>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_stock_product_tree" model="ir.ui.view">
|
||||
<field name="name">product.stock.tree.inherit</field>
|
||||
<field name="model">product.product</field>
|
||||
<field name="inherit_id" ref="stock.view_stock_product_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="qty_available" position="after">
|
||||
<field name="qty_available_not_res"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="product_template_form_view_procurement_button" model="ir.ui.view">
|
||||
<field name="name">product.template_procurement</field>
|
||||
<field name="model">product.template</field>
|
||||
<field name="inherit_id"
|
||||
ref="stock.product_template_form_view_procurement_button"/>
|
||||
<field name="arch" type="xml">
|
||||
<div name="button_box" position="inside">
|
||||
<button type="object"
|
||||
name="action_open_quants_unreserved"
|
||||
attrs="{'invisible':[('type', '!=', 'product')]}"
|
||||
class="oe_stat_button" icon="fa-building-o">
|
||||
<field name="qty_available_not_res" widget="statinfo"
|
||||
string="Unreserved"/>
|
||||
</button>
|
||||
</div>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="product_form_view_procurement_button" model="ir.ui.view">
|
||||
<field name="name">product.product.procurement</field>
|
||||
<field name="model">product.product</field>
|
||||
<field name="inherit_id"
|
||||
ref="stock.product_form_view_procurement_button"/>
|
||||
<field name="arch" type="xml">
|
||||
<div name="button_box" position="inside">
|
||||
<button class="oe_stat_button"
|
||||
name="%(product_open_quants_unreserved)d"
|
||||
icon="fa-building-o"
|
||||
type="action" attrs="{'invisible':[('type', '!=', 'product')]}">
|
||||
<field name="qty_available_not_res" widget="statinfo"
|
||||
string="Unreserved"/>
|
||||
</button>
|
||||
</div>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
28
stock_available_unreserved/views/stock_quant_view.xml
Normal file
28
stock_available_unreserved/views/stock_quant_view.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="quant_search_view" model="ir.ui.view">
|
||||
<field name="name">stock.quant.search</field>
|
||||
<field name="model">stock.quant</field>
|
||||
<field name="inherit_id" ref="stock.quant_search_view"/>
|
||||
<field eval="10" name="priority"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="owner_id" position="after">
|
||||
<field name="contains_unreserved"/>
|
||||
</field>
|
||||
<filter name="internal_loc" position="after">
|
||||
<filter name='internal_unreserved'
|
||||
string="Internal Unreserved"
|
||||
domain="[('contains_unreserved','=', True), ('location_id.usage','=', 'internal')]"/>
|
||||
</filter>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="product_open_quants_unreserved" model="ir.actions.act_window">
|
||||
<field name="name">Stock On Hand (Unreserved)</field>
|
||||
<field name="context">{'search_default_internal_loc': 1, 'search_default_locationgroup':1}</field>
|
||||
<field name="domain">[('product_id', '=', active_id), ('contains_unreserved', '=', True)]</field>
|
||||
<field name="res_model">stock.quant</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user