forked from OCA/stock-logistics-warehouse
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1636 from OCA/18.0
Syncing from upstream OCA/stock-logistics-warehouse (18.0)
- Loading branch information
Showing
20 changed files
with
1,132 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
======================= | ||
Stock Location Position | ||
======================= | ||
|
||
.. | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:283afa8cd6500e8d9b77ae8a111b1abc7507182d45829ab74f923cf6ccfb93a4 | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png | ||
:target: https://odoo-community.org/page/development-status | ||
:alt: Production/Stable | ||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png | ||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
:alt: License: AGPL-3 | ||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--warehouse-lightgray.png?logo=github | ||
:target: https://github.com/OCA/stock-logistics-warehouse/tree/18.0/stock_location_position | ||
:alt: OCA/stock-logistics-warehouse | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/stock-logistics-warehouse-18-0/stock-logistics-warehouse-18-0-stock_location_position | ||
:alt: Translate me on Weblate | ||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png | ||
:target: https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-warehouse&target_branch=18.0 | ||
:alt: Try me on Runboat | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
This module adds position attributes on stock location such as: | ||
|
||
- Corridor | ||
- Row | ||
- Rack | ||
- Level | ||
|
||
and renames position (XYZ) to box (XYZ). | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-warehouse/issues>`_. | ||
In case of trouble, please check there if your issue has already been reported. | ||
If you spotted it first, help us to smash it by providing a detailed and welcomed | ||
`feedback <https://github.com/OCA/stock-logistics-warehouse/issues/new?body=module:%20stock_location_position%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
------- | ||
|
||
* BCIM | ||
* Okia | ||
* Camptocamp | ||
|
||
Contributors | ||
------------ | ||
|
||
- Syvain Van Hoof (Okia sprl) <[email protected]> | ||
- Jacques-Etienne Baudoux (BCIM) <[email protected]> | ||
- Guewen Baconnier (Camptocamp) <[email protected]> | ||
- Akim Juillerat <[email protected]> | ||
- Phuc Tran Thanh <[email protected]> | ||
|
||
Other credits | ||
------------- | ||
|
||
The development of this module has been financially supported by: | ||
|
||
- Camptocamp | ||
|
||
Maintainers | ||
----------- | ||
|
||
This module is maintained by the OCA. | ||
|
||
.. image:: https://odoo-community.org/logo.png | ||
:alt: Odoo Community Association | ||
:target: https://odoo-community.org | ||
|
||
OCA, or the Odoo Community Association, is a nonprofit organization whose | ||
mission is to support the collaborative development of Odoo features and | ||
promote its widespread use. | ||
|
||
This module is part of the `OCA/stock-logistics-warehouse <https://github.com/OCA/stock-logistics-warehouse/tree/18.0/stock_location_position>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Copyright 2017 Syvain Van Hoof (Okia sprl) <[email protected]> | ||
# Copyright 2016-2019 Jacques-Etienne Baudoux (BCIM) <[email protected]> | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||
|
||
{ | ||
"name": "Stock Location Position", | ||
"version": "18.0.1.0.0", | ||
"author": "BCIM, Okia, Camptocamp, Odoo Community Association (OCA)", | ||
"website": "https://github.com/OCA/stock-logistics-warehouse", | ||
"summary": "Add coordinate attributes on stock location.", | ||
"category": "Stock Management", | ||
"depends": ["stock"], | ||
"data": ["views/stock_location.xml"], | ||
"installable": True, | ||
"development_status": "Production/Stable", | ||
"license": "AGPL-3", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_location_position | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 16.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2023-09-18 06:39+0000\n" | ||
"Last-Translator: FranciscoFactorLibre <[email protected]>\n" | ||
"Language-Team: none\n" | ||
"Language: es\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=n != 1;\n" | ||
"X-Generator: Weblate 4.17\n" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,field_description:stock_location_position.field_stock_location__posx | ||
msgid "Box (X)" | ||
msgstr "Caja (X)" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,field_description:stock_location_position.field_stock_location__posy | ||
msgid "Box (Y)" | ||
msgstr "Caja (Y)" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,field_description:stock_location_position.field_stock_location__posz | ||
msgid "Box (Z)" | ||
msgstr "Caja (Z)" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,field_description:stock_location_position.field_stock_location__corridor | ||
msgid "Corridor" | ||
msgstr "Pasillo" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,help:stock_location_position.field_stock_location__level | ||
msgid "Define as the floor of the house" | ||
msgstr "Define la altura dentro del pasillo" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,help:stock_location_position.field_stock_location__rack | ||
msgid "Define as the house number within the street" | ||
msgstr "Define el rack dentro del pasillo" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,help:stock_location_position.field_stock_location__row | ||
msgid "Define as the side within the street" | ||
msgstr "Define el lado del pasillo" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,help:stock_location_position.field_stock_location__corridor | ||
msgid "Define as the street" | ||
msgstr "Define el pasillo" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model,name:stock_location_position.model_stock_location | ||
msgid "Inventory Locations" | ||
msgstr "Ubicación" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,field_description:stock_location_position.field_stock_location__level | ||
msgid "Level" | ||
msgstr "Altura" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,help:stock_location_position.field_stock_location__posx | ||
msgid "" | ||
"Optional (X) coordinate of the bin if the location is split in several " | ||
"parts. (e.g. drawer storage)" | ||
msgstr "" | ||
"Posición opcional (X) del contenedor si la ubicación está dividida en varias " | ||
"partes. (p.e. almacenamiento en cajones)" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,help:stock_location_position.field_stock_location__posy | ||
msgid "" | ||
"Optional (Y) coordinate of the bin if the location is split in several " | ||
"parts. (e.g. drawer storage)" | ||
msgstr "" | ||
"Posición opcional (Y) del contenedor si la ubicación está dividida en varias " | ||
"partes. (p.e. almacenamiento en cajones)" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,help:stock_location_position.field_stock_location__posz | ||
msgid "" | ||
"Optional (Z) coordinate of the bin if the location is split in several " | ||
"parts. (e.g. storage tray)" | ||
msgstr "" | ||
"Posición opcional (Z) del contenedor si la ubicación está dividida en varias " | ||
"partes. (p.e. almacenamiento en cajones)" | ||
|
||
#. module: stock_location_position | ||
#: model_terms:ir.ui.view,arch_db:stock_location_position.stock_location_form_inherit | ||
msgid "Position" | ||
msgstr "Posición" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,field_description:stock_location_position.field_stock_location__rack | ||
msgid "Rack" | ||
msgstr "Rack" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,field_description:stock_location_position.field_stock_location__row | ||
msgid "Row" | ||
msgstr "Fila" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_location_position | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 16.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2024-03-13 11:39+0000\n" | ||
"Last-Translator: MorganeGoujon <[email protected]>\n" | ||
"Language-Team: none\n" | ||
"Language: fr\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=n > 1;\n" | ||
"X-Generator: Weblate 4.17\n" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,field_description:stock_location_position.field_stock_location__posx | ||
msgid "Box (X)" | ||
msgstr "Boîte (X)" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,field_description:stock_location_position.field_stock_location__posy | ||
msgid "Box (Y)" | ||
msgstr "Boîte (Y)" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,field_description:stock_location_position.field_stock_location__posz | ||
msgid "Box (Z)" | ||
msgstr "Boîte (Z)" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,field_description:stock_location_position.field_stock_location__corridor | ||
msgid "Corridor" | ||
msgstr "Couloir" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,help:stock_location_position.field_stock_location__level | ||
msgid "Define as the floor of the house" | ||
msgstr "Défini comme l'étage de la maison" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,help:stock_location_position.field_stock_location__rack | ||
msgid "Define as the house number within the street" | ||
msgstr "Défini comme le numéro de maison dans la rue" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,help:stock_location_position.field_stock_location__row | ||
msgid "Define as the side within the street" | ||
msgstr "Défini comme le côté au sein de la rue" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,help:stock_location_position.field_stock_location__corridor | ||
msgid "Define as the street" | ||
msgstr "Défini comme la rue" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model,name:stock_location_position.model_stock_location | ||
msgid "Inventory Locations" | ||
msgstr "Emplacements d'inventaire" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,field_description:stock_location_position.field_stock_location__level | ||
msgid "Level" | ||
msgstr "Niveau" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,help:stock_location_position.field_stock_location__posx | ||
msgid "" | ||
"Optional (X) coordinate of the bin if the location is split in several " | ||
"parts. (e.g. drawer storage)" | ||
msgstr "" | ||
"Coordonnée optionnelle (X) de l'entreposage si l'emplacement est divisé en " | ||
"plusieurs parties (ex. rangements à tiroir)" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,help:stock_location_position.field_stock_location__posy | ||
msgid "" | ||
"Optional (Y) coordinate of the bin if the location is split in several " | ||
"parts. (e.g. drawer storage)" | ||
msgstr "" | ||
"Coordonnée optionnelle (Y) de l'entreposage si l'emplacement est divisé en " | ||
"plusieurs parties (ex. rangements à tiroir)" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,help:stock_location_position.field_stock_location__posz | ||
msgid "" | ||
"Optional (Z) coordinate of the bin if the location is split in several " | ||
"parts. (e.g. storage tray)" | ||
msgstr "" | ||
"Coordonnée optionnelle (Z) de l'entreposage si l'emplacement est divisé en " | ||
"plusieurs parties (ex. rangements à tiroir)" | ||
|
||
#. module: stock_location_position | ||
#: model_terms:ir.ui.view,arch_db:stock_location_position.stock_location_form_inherit | ||
msgid "Position" | ||
msgstr "Position" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,field_description:stock_location_position.field_stock_location__rack | ||
msgid "Rack" | ||
msgstr "Étagère" | ||
|
||
#. module: stock_location_position | ||
#: model:ir.model.fields,field_description:stock_location_position.field_stock_location__row | ||
msgid "Row" | ||
msgstr "Rangée" |
Oops, something went wrong.