[11.0][IMP] stock_request: allow to request from all locations types. (#523)

This commit is contained in:
Lois Rilo
2019-01-08 13:51:32 +01:00
committed by hveficent
parent f4d0c5bd4c
commit 119ee936a4
37 changed files with 1111 additions and 307 deletions

View File

@@ -73,6 +73,7 @@ Contributors
* Jordi Ballester (EFICENT) <jordi.ballester@eficent.com>.
* Enric Tobella <etobella@creublanca.es>
* Atte Isopuro <atte.isopuro@avoin.systems>
* Lois Rilo <lois.rilo@eficent.com>
Maintainer
----------

View File

@@ -4,7 +4,7 @@
{
"name": "Stock Request",
"summary": "Internal request for stock",
"version": "11.0.3.0.0",
"version": "11.0.3.1.0",
"license": "LGPL-3",
"website": "https://github.com/stock-logistics-warehouse",
"author": "Eficent, "

View File

@@ -34,11 +34,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -55,6 +77,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -162,7 +189,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -258,7 +285,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -286,7 +313,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -598,13 +625,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -635,7 +662,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -714,31 +741,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -35,11 +35,33 @@ msgstr "Anforderungs-Anwender"
msgid "Allocated Quantity"
msgstr "Zugeordnete Menge"
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr "Archiviert"
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -56,6 +78,12 @@ msgstr "Abgebrochen"
msgid "Click to add a Stock Request."
msgstr "Klicken, um eine Bestandaanforderung zu stellen."
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
#, fuzzy
msgid "Companies"
msgstr "Unternehmen"
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -168,7 +196,7 @@ msgstr "Anforderungs-Anwender"
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr "ID"
@@ -268,7 +296,7 @@ msgid "Name must be unique"
msgstr "Bezeichner der Anforderung muss eindeutig sein"
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -297,7 +325,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -618,13 +646,13 @@ msgstr "Bestandsanforderungen"
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -657,7 +685,7 @@ msgid "Transfers"
msgstr "Umlagerungen"
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -736,31 +764,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -35,11 +35,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -56,6 +78,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -163,7 +190,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -259,7 +286,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -287,7 +314,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -599,13 +626,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -636,7 +663,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -715,31 +742,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -36,11 +36,33 @@ msgstr "Activa las Solicitudes de existencias"
msgid "Allocated Quantity"
msgstr "Cantidad reservada"
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr "Archivado"
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -57,6 +79,12 @@ msgstr "Cancelado"
msgid "Click to add a Stock Request."
msgstr "Pulse para añadir una solicitud de existencias."
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
#, fuzzy
msgid "Companies"
msgstr "Compañía"
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -164,7 +192,7 @@ msgstr "Agrupa las solicitudes en pedidos"
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr "ID"
@@ -263,7 +291,7 @@ msgid "Name must be unique"
msgstr "El nombre debe ser único"
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr "Solo los pedidos en estado borrado pueden ser eliminadas"
@@ -291,8 +319,8 @@ msgstr "Pedido"
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgstr "Pedidos"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_stock_move_line
@@ -607,13 +635,13 @@ msgstr "Solicitudes de existencias"
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr "La compañía de la solicitud debe coincidir con la de la localización."
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr "La compañía de la solicitud debe coincidir con la del almacén."
@@ -646,7 +674,7 @@ msgid "Transfers"
msgstr "Transferencias"
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -737,31 +765,31 @@ msgstr ""
"de existencias que pertenecen a otras compañías."
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr "Ha seleccionado una localización que está asignada a otra compañía."
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr "Ha seleccionado un producto que está asignado a otra compañía."
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr "Ha seleccionado una ruta que está asignada a otra compañía."
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr "Ha seleccionado un almacén que está asignado a otra compañía."
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "
@@ -774,3 +802,6 @@ msgstr ""
#: model:ir.model,name:stock_request.model_res_config_settings
msgid "res.config.settings"
msgstr "res.config.settings"
#~ msgid "Orders"
#~ msgstr "Pedidos"

View File

@@ -35,11 +35,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -56,6 +78,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -163,7 +190,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -259,7 +286,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -287,7 +314,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -599,13 +626,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -636,7 +663,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -715,31 +742,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -34,11 +34,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -55,6 +77,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -162,7 +189,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -258,7 +285,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -286,7 +313,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -598,13 +625,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -635,7 +662,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -714,31 +741,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -34,11 +34,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -55,6 +77,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -162,7 +189,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -258,7 +285,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -286,7 +313,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -598,13 +625,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -635,7 +662,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -714,31 +741,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -34,11 +34,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -55,6 +77,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -162,7 +189,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -258,7 +285,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -286,7 +313,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -598,13 +625,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -635,7 +662,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -714,31 +741,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -35,11 +35,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -56,6 +78,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -163,7 +190,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -259,7 +286,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -287,7 +314,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -599,13 +626,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -636,7 +663,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -715,31 +742,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -35,11 +35,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -56,6 +78,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -163,7 +190,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -259,7 +286,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -287,7 +314,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -599,13 +626,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -636,7 +663,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -715,31 +742,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -34,11 +34,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -55,6 +77,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -162,7 +189,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -258,7 +285,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -286,7 +313,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -598,13 +625,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -635,7 +662,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -714,31 +741,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -35,11 +35,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -56,6 +78,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -163,7 +190,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -259,7 +286,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -287,7 +314,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -599,13 +626,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -636,7 +663,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -715,31 +742,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -36,11 +36,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -57,6 +79,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -164,7 +191,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -260,7 +287,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -288,7 +315,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -600,13 +627,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -637,7 +664,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -716,31 +743,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -34,11 +34,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -55,6 +77,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -162,7 +189,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -258,7 +285,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -286,7 +313,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -598,13 +625,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -635,7 +662,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -714,31 +741,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -34,11 +34,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -55,6 +77,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -162,7 +189,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -258,7 +285,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -286,7 +313,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -598,13 +625,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -635,7 +662,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -714,31 +741,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -35,11 +35,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -56,6 +78,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -163,7 +190,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -259,7 +286,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -287,7 +314,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -599,13 +626,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -636,7 +663,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -715,31 +742,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -34,11 +34,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -55,6 +77,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -162,7 +189,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -258,7 +285,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -286,7 +313,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -598,13 +625,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -635,7 +662,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -714,31 +741,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -35,11 +35,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -56,6 +78,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -163,7 +190,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -259,7 +286,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -287,7 +314,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -599,13 +626,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -636,7 +663,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -715,31 +742,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -35,11 +35,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -56,6 +78,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -163,7 +190,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -259,7 +286,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -287,7 +314,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -599,13 +626,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -636,7 +663,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -715,31 +742,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -36,11 +36,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -57,6 +79,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -164,7 +191,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -260,7 +287,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -288,7 +315,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -600,13 +627,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -637,7 +664,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -716,31 +743,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -35,11 +35,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -56,6 +78,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -163,7 +190,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -259,7 +286,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -287,7 +314,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -599,13 +626,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -636,7 +663,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -715,31 +742,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -29,11 +29,31 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "By default only internal and transit locations are allowed in Stock Request and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -51,6 +71,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -160,7 +185,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -255,7 +280,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -283,7 +308,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -592,13 +617,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -627,7 +652,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid "Unfortunately it seems you do not have the necessary rights for creating stock requests. Please contact your administrator."
msgstr ""
@@ -694,31 +719,31 @@ msgid "You cannot change the company of the warehouse, as it is already assigned
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid "You have to select a product unit of measure in the same category than the default unit of measure of the product"
msgstr ""

View File

@@ -34,11 +34,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -55,6 +77,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -162,7 +189,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -258,7 +285,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -286,7 +313,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -598,13 +625,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -635,7 +662,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -714,31 +741,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -35,11 +35,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -56,6 +78,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -163,7 +190,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -259,7 +286,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -287,7 +314,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -599,13 +626,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -636,7 +663,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -715,31 +742,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -35,11 +35,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -56,6 +78,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -163,7 +190,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -259,7 +286,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -287,7 +314,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -599,13 +626,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -636,7 +663,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -715,31 +742,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -35,11 +35,33 @@ msgstr ""
msgid "Allocated Quantity"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Allow All Locations Types"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_res_company_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_res_config_settings_stock_request_allow_virtual_loc
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_kanban_allow_virtual_location
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_allow_virtual_location
msgid "Allow Virtual locations on Stock Requests"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_search
msgid "Archived"
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid ""
"By default only internal and transit locations are allowed in Stock Request "
"and Orders."
msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.stock_request_order_form
#: model:ir.ui.view,arch_db:stock_request.view_stock_request_form
@@ -56,6 +78,11 @@ msgstr ""
msgid "Click to add a Stock Request."
msgstr ""
#. module: stock_request
#: model:ir.model,name:stock_request.model_res_company
msgid "Companies"
msgstr ""
#. module: stock_request
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_company_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_company_id
@@ -163,7 +190,7 @@ msgstr ""
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_id
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5323
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order_id_5326
msgid "ID"
msgstr ""
@@ -259,7 +286,7 @@ msgid "Name must be unique"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:255
#: code:addons/stock_request/models/stock_request_order.py:263
#, python-format
msgid "Only orders on draft state can be unlinked"
msgstr ""
@@ -287,7 +314,7 @@ msgstr ""
#. module: stock_request
#: model:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
msgid "Orders"
msgid "Orders &amp; Configuration"
msgstr ""
#. module: stock_request
@@ -599,13 +626,13 @@ msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_move.py:38
#: code:addons/stock_request/models/stock_request_order.py:272
#: code:addons/stock_request/models/stock_request_order.py:280
#, python-format
msgid "The company of the stock request must match with that of the location."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:263
#: code:addons/stock_request/models/stock_request_order.py:271
#, python-format
msgid "The company of the stock request must match with that of the warehouse."
msgstr ""
@@ -636,7 +663,7 @@ msgid "Transfers"
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_order.py:302
#: code:addons/stock_request/models/stock_request_order.py:310
#, python-format
msgid ""
"Unfortunately it seems you do not have the necessary rights for creating "
@@ -715,31 +742,31 @@ msgid ""
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:134
#: code:addons/stock_request/models/stock_request_abstract.py:137
#, python-format
msgid "You have entered a location that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:129
#: code:addons/stock_request/models/stock_request_abstract.py:132
#, python-format
msgid "You have entered a product that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:143
#: code:addons/stock_request/models/stock_request_abstract.py:146
#, python-format
msgid "You have entered a route that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:138
#: code:addons/stock_request/models/stock_request_abstract.py:141
#, python-format
msgid "You have entered a warehouse that is assigned to another company."
msgstr ""
#. module: stock_request
#: code:addons/stock_request/models/stock_request_abstract.py:153
#: code:addons/stock_request/models/stock_request_abstract.py:156
#, python-format
msgid ""
"You have to select a product unit of measure in the same category than the "

View File

@@ -10,3 +10,4 @@ from . import res_config_settings
from . import stock_warehouse
from . import stock_location
from . import stock_location_route
from . import res_company

View File

@@ -0,0 +1,14 @@
# Copyright 2018 Eficent Business and IT Consulting Services S.L.
# (http://www.eficent.com)
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
from odoo import fields, models
class ResCompany(models.Model):
_inherit = 'res.company'
stock_request_allow_virtual_loc = fields.Boolean(
string='Allow Virtual locations on Stock Requests',
)

View File

@@ -15,3 +15,6 @@ class ResConfigSettings(models.TransientModel):
module_stock_request_kanban = fields.Boolean(
string='Stock Requests Kanban integration')
stock_request_allow_virtual_loc = fields.Boolean(
related='company_id.stock_request_allow_virtual_loc')

View File

@@ -47,6 +47,9 @@ class StockRequest(models.AbstractModel):
domain=[('type', 'in', ['product', 'consu'])], ondelete='cascade',
required=True,
)
allow_virtual_location = fields.Boolean(
related='company_id.stock_request_allow_virtual_loc',
)
product_uom_id = fields.Many2one(
'product.uom', 'Product Unit of Measure',
required=True,
@@ -158,6 +161,12 @@ class StockRequest(models.AbstractModel):
def onchange_warehouse_id(self):
""" Finds location id for changed warehouse. """
res = {'domain': {}}
if self._name == 'stock.request' and self.order_id:
# When the stock request is created from an order the wh and
# location are taken from the order and we rely on it to change
# all request associated. Thus, no need to apply
# the onchange, as it could lead to inconsistencies.
return res
if self.warehouse_id:
loc_wh = self.location_id.sudo().get_warehouse()
if self.warehouse_id != loc_wh:
@@ -168,13 +177,17 @@ class StockRequest(models.AbstractModel):
@api.onchange('location_id')
def onchange_location_id(self):
res = {'domain': {}}
if self.location_id:
loc_wh = self.location_id.get_warehouse()
if self.warehouse_id != loc_wh:
loc_wh = self.location_id.sudo().get_warehouse()
if loc_wh and self.warehouse_id != loc_wh:
self.warehouse_id = loc_wh
self.onchange_warehouse_id()
return res
self.with_context(
no_change_childs=True).onchange_warehouse_id()
@api.onchange('allow_virtual_location')
def onchange_allow_virtual_location(self):
if self.allow_virtual_location:
return {'domain': {'location_id': []}}
@api.onchange('company_id')
def onchange_company_id(self):

View File

@@ -54,6 +54,9 @@ class StockRequestOrder(models.Model):
ondelete="cascade", required=True,
states={'draft': [('readonly', False)]},
)
allow_virtual_location = fields.Boolean(
related='company_id.stock_request_allow_virtual_loc',
)
procurement_group_id = fields.Many2one(
'procurement.group', 'Procurement Group', readonly=True,
states={'draft': [('readonly', False)]},
@@ -145,6 +148,11 @@ class StockRequestOrder(models.Model):
no_change_childs=True).onchange_warehouse_id()
self.change_childs()
@api.onchange('allow_virtual_location')
def onchange_allow_virtual_location(self):
if self.allow_virtual_location:
return {'domain': {'location_id': []}}
@api.onchange('warehouse_id')
def onchange_warehouse_id(self):
if self.warehouse_id:

View File

@@ -12,6 +12,7 @@ class TestStockRequest(common.TransactionCase):
# common models
self.stock_request = self.env['stock.request']
self.request_order = self.env['stock.request.order']
# refs
self.stock_request_user_group = \
@@ -21,6 +22,7 @@ class TestStockRequest(common.TransactionCase):
self.main_company = self.env.ref('base.main_company')
self.warehouse = self.env.ref('stock.warehouse0')
self.categ_unit = self.env.ref('product.product_uom_categ_unit')
self.virtual_loc = self.env.ref('stock.stock_location_customers')
# common data
self.company_2 = self.env['res.company'].create({
@@ -141,7 +143,7 @@ class TestStockRequest(common.TransactionCase):
def test_defaults_order(self):
vals = {}
order = self.env['stock.request.order'].sudo(
order = self.request_order.sudo(
self.stock_request_user.id).with_context(
company_id=self.main_company.id).create(vals)
@@ -168,7 +170,7 @@ class TestStockRequest(common.TransactionCase):
'location_id': self.warehouse.lot_stock_id.id,
})]
}
order = self.env['stock.request.order'].sudo(
order = self.request_order.sudo(
self.stock_request_user).new(vals)
self.stock_request_user.company_id = self.company_2
order.company_id = self.company_2
@@ -301,7 +303,7 @@ class TestStockRequest(common.TransactionCase):
})]
}
with self.assertRaises(exceptions.ValidationError):
self.env['stock.request.order'].sudo(
self.request_order.sudo(
self.stock_request_user).create(vals)
def test_stock_request_order_validations_02(self):
@@ -324,7 +326,7 @@ class TestStockRequest(common.TransactionCase):
})]
}
with self.assertRaises(exceptions.ValidationError):
self.env['stock.request.order'].sudo(
self.request_order.sudo(
self.stock_request_user).create(vals)
def test_stock_request_order_validations_03(self):
@@ -349,7 +351,7 @@ class TestStockRequest(common.TransactionCase):
})]
}
with self.assertRaises(exceptions.ValidationError):
self.env['stock.request.order'].sudo(
self.request_order.sudo(
self.stock_request_user).create(vals)
def test_stock_request_order_validations_04(self):
@@ -376,7 +378,7 @@ class TestStockRequest(common.TransactionCase):
})]
}
with self.assertRaises(exceptions.ValidationError):
self.env['stock.request.order'].sudo(
self.request_order.sudo(
self.stock_request_user).create(vals)
def test_stock_request_order_validations_05(self):
@@ -399,7 +401,7 @@ class TestStockRequest(common.TransactionCase):
})]
}
with self.assertRaises(exceptions.ValidationError):
self.env['stock.request.order'].sudo(
self.request_order.sudo(
self.stock_request_user).create(vals)
def test_stock_request_order_validations_06(self):
@@ -423,7 +425,7 @@ class TestStockRequest(common.TransactionCase):
})]
}
with self.assertRaises(exceptions.ValidationError):
self.env['stock.request.order'].sudo().create(vals)
self.request_order.sudo().create(vals)
def test_stock_request_order_validations_07(self):
""" Testing the discrepancy in picking policy between
@@ -446,7 +448,7 @@ class TestStockRequest(common.TransactionCase):
})]
}
with self.assertRaises(exceptions.ValidationError):
self.env['stock.request.order'].sudo(
self.request_order.sudo(
self.stock_request_user).create(vals)
def test_stock_request_validations_01(self):
@@ -498,7 +500,7 @@ class TestStockRequest(common.TransactionCase):
})]
}
order = self.env['stock.request.order'].sudo(
order = self.request_order.sudo(
self.stock_request_user).create(vals)
stock_request = order.stock_request_ids
@@ -628,7 +630,7 @@ class TestStockRequest(common.TransactionCase):
})]
}
order = self.env['stock.request.order'].sudo(
order = self.request_order.sudo(
self.stock_request_user).create(vals)
self.product.route_ids = [(6, 0, self.route.ids)]
@@ -685,7 +687,7 @@ class TestStockRequest(common.TransactionCase):
})]
}
order = self.env['stock.request.order'].sudo().create(vals)
order = self.request_order.sudo().create(vals)
self.product.route_ids = [(6, 0, self.route.ids)]
order.action_confirm()
@@ -755,7 +757,7 @@ class TestStockRequest(common.TransactionCase):
self._create_product(
'CODEB2', 'Product B2', self.main_company.id,
product_tmpl_id=template_B.id, active=False)
Order = self.env['stock.request.order']
Order = self.request_order
# Selecting some variants and creating an order
preexisting = Order.search([])
@@ -818,3 +820,47 @@ class TestStockRequest(common.TransactionCase):
# Wrong model should just raise ValidationError
with self.assertRaises(exceptions.ValidationError):
Order._create_from_product_multiselect(self.stock_request_user)
def test_allow_virtual_location(self):
self.main_company.stock_request_allow_virtual_loc = True
vals = {
'product_id': self.product.id,
'product_uom_id': self.product.uom_id.id,
'product_uom_qty': 5.0,
'company_id': self.main_company.id,
'warehouse_id': self.warehouse.id,
'location_id': self.virtual_loc.id,
}
stock_request = self.stock_request.sudo(
self.stock_request_user).create(vals)
stock_request.onchange_allow_virtual_location()
self.assertTrue(stock_request.allow_virtual_location)
vals = {
'company_id': self.main_company.id,
'warehouse_id': self.warehouse.id,
'location_id': self.virtual_loc.id,
}
order = self.request_order.sudo(
self.stock_request_user).create(vals)
order.onchange_allow_virtual_location()
self.assertTrue(order.allow_virtual_location)
def test_onchange_wh_no_effect_from_order(self):
vals = {
'company_id': self.main_company.id,
'warehouse_id': self.warehouse.id,
'location_id': self.virtual_loc.id,
'stock_request_ids': [(0, 0, {
'product_id': self.product.id,
'product_uom_id': self.product.uom_id.id,
'product_uom_qty': 5.0,
'company_id': self.main_company.id,
'warehouse_id': self.warehouse.id,
'location_id': self.virtual_loc.id,
})]
}
order = self.request_order.sudo(
self.stock_request_user).create(vals)
order.stock_request_ids.onchange_warehouse_id()
self.assertEqual(
order.stock_request_ids[0].location_id, self.virtual_loc)

View File

@@ -16,7 +16,7 @@
<div class="app_settings_block"
data-string="Stock Request" data-key="stock_request"
groups="stock_request.group_stock_request_manager">
<h2>Orders</h2>
<h2>Orders &amp; Configuration</h2>
<div class="row mt16 o_settings_container" id="stock_request">
<div class="col-xs-12 col-md-6 o_setting_box">
<div class="o_setting_left_pane">
@@ -30,6 +30,17 @@
</div>
</div>
</div>
<div class="col-xs-12 col-md-6 o_setting_box">
<div class="o_setting_left_pane">
<field name="stock_request_allow_virtual_loc"/>
</div>
<div class="o_setting_right_pane">
<label string="Allow All Locations Types" for="stock_request_allow_virtual_loc"/>
<div class="text-muted">
By default only internal and transit locations are allowed in Stock Request and Orders.
</div>
</div>
</div>
</div>
<h2>Purchases</h2>
<div class="row mt16 o_settings_container" id="stock_request_purchase">

View File

@@ -70,6 +70,7 @@
groups="stock.group_stock_multi_locations"/>
<field name="location_id"
groups="stock.group_stock_multi_locations"/>
<field name="allow_virtual_location" invisible="1"/>
<field name="procurement_group_id"
groups="stock.group_adv_location"/>
<field name="company_id"

View File

@@ -12,6 +12,7 @@
<field name="name"/>
<field name="warehouse_id" groups="stock.group_stock_multi_locations"/>
<field name="location_id" groups="stock.group_stock_multi_locations"/>
<field name="allow_virtual_location" invisible="1"/>
<field name="route_id" options="{'no_create': True}" groups="stock.group_stock_multi_locations"/>
<field name="product_id"/>
<field name="product_uom_id"