Skip to content

Commit

Permalink
Merge PR #1077 into 14.0
Browse files Browse the repository at this point in the history
Signed-off-by simahawk
  • Loading branch information
OCA-git-bot committed Sep 14, 2021
2 parents b06f188 + e371b70 commit 928688a
Show file tree
Hide file tree
Showing 15 changed files with 1,036 additions and 0 deletions.
1 change: 1 addition & 0 deletions setup/stock_location_zone/odoo/addons/stock_location_zone
6 changes: 6 additions & 0 deletions setup/stock_location_zone/setup.py
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
100 changes: 100 additions & 0 deletions stock_location_zone/README.rst
@@ -0,0 +1,100 @@
===================
Stock Location Zone
===================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png
:target: https://odoo-community.org/page/development-status
:alt: Alpha
.. |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/14.0/stock_location_zone
: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-14-0/stock-logistics-warehouse-14-0-stock_location_zone
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/153/14.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|

This module introduces Zone concept on stock locations to allow better
classification of stock locations in a warehouse.

Locations are then classified by location kinds that could be:

* Zone: locations that are flagged as being zones. Zones are subdivisions of the warehouse for splitting picking operations. A picking operator work in a zone and can pick from any location of the zone.
* Area: locations with children that are part of a zone. Areas are subdivisions of the warehouse for put-away operations. Each area has storage characteristics and strategy, e.g. area for pallets, shelf for boxes...
* Bin: locations without children that are part of a zone
* Stock: internal locations whose parent is a view
* Other: any other location

.. IMPORTANT::
This is an alpha version, the data model and design can change at any time without warning.
Only for development or testing purpose, do not use in production.
`More details on development status <https://odoo-community.org/page/development-status>`_

**Table of contents**

.. contents::
:local:

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-warehouse/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/stock-logistics-warehouse/issues/new?body=module:%20stock_location_zone%0Aversion:%2014.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) <sylvainvh@okia.be>
* Jacques-Etienne Baudoux (BCIM) <je@bcim.be>
* Guewen Baconnier (Camptocamp) <guewen.baconnier@camptocamp.com>
* Akim Juillerat <akim.juillerat@camptocamp.com>
* Phuc Tran Thanh <phuc@trobz.com>

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/14.0/stock_location_zone>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions stock_location_zone/__init__.py
@@ -0,0 +1 @@
from . import models
17 changes: 17 additions & 0 deletions stock_location_zone/__manifest__.py
@@ -0,0 +1,17 @@
# Copyright 2017 Syvain Van Hoof (Okia sprl) <sylvainvh@okia.be>
# Copyright 2016-2019 Jacques-Etienne Baudoux (BCIM) <je@bcim.be>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
"name": "Stock Location Zone",
"version": "14.0.1.0.0",
"author": "BCIM, Okia, Camptocamp, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/stock-logistics-warehouse",
"summary": "Classify locations with zones.",
"category": "Stock Management",
"depends": ["stock"],
"data": ["views/stock_location.xml"],
"installable": True,
"development_status": "Alpha",
"license": "AGPL-3",
}
94 changes: 94 additions & 0 deletions stock_location_zone/i18n/stock_location_zone.pot
@@ -0,0 +1,94 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * stock_location_zone
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 13.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: stock_location_zone
#: model:ir.model.fields.selection,name:stock_location_zone.selection__stock_location__location_kind__area
msgid "Area"
msgstr ""

#. module: stock_location_zone
#: model_terms:ir.ui.view,arch_db:stock_location_zone.view_location_search
msgid "Area location"
msgstr ""

#. module: stock_location_zone
#: model:ir.model.fields.selection,name:stock_location_zone.selection__stock_location__location_kind__bin
msgid "Bin"
msgstr ""

#. module: stock_location_zone
#: model_terms:ir.ui.view,arch_db:stock_location_zone.view_location_search
msgid "Group By"
msgstr ""

#. module: stock_location_zone
#: model:ir.model.fields,help:stock_location_zone.field_stock_location__location_kind
msgid ""
"Group location according to their kinds: * Zone: locations that are flagged "
"as being zones * Area: locations with children that are part of a zone * "
"Bin: locations without children that are part of a zone * Stock: internal "
"locations whose parent is a view * Other: any other location"
msgstr ""

#. module: stock_location_zone
#: model:ir.model,name:stock_location_zone.model_stock_location
msgid "Inventory Locations"
msgstr ""

#. module: stock_location_zone
#: model:ir.model.fields,field_description:stock_location_zone.field_stock_location__is_zone
msgid "Is a Zone Location?"
msgstr ""

#. module: stock_location_zone
#: model:ir.model.fields,field_description:stock_location_zone.field_stock_location__area_location_id
msgid "Location Area"
msgstr ""

#. module: stock_location_zone
#: model:ir.model.fields,field_description:stock_location_zone.field_stock_location__location_kind
#: model_terms:ir.ui.view,arch_db:stock_location_zone.view_location_search
msgid "Location Kind"
msgstr ""

#. module: stock_location_zone
#: model:ir.model.fields,field_description:stock_location_zone.field_stock_location__zone_location_id
msgid "Location Zone"
msgstr ""

#. module: stock_location_zone
#: model:ir.model.fields.selection,name:stock_location_zone.selection__stock_location__location_kind__stock
msgid "Main Stock"
msgstr ""

#. module: stock_location_zone
#: model:ir.model.fields,help:stock_location_zone.field_stock_location__is_zone
msgid "Mark to define this location as a zone"
msgstr ""

#. module: stock_location_zone
#: model:ir.model.fields.selection,name:stock_location_zone.selection__stock_location__location_kind__other
msgid "Other"
msgstr ""

#. module: stock_location_zone
#: model:ir.model.fields.selection,name:stock_location_zone.selection__stock_location__location_kind__zone
msgid "Zone"
msgstr ""

#. module: stock_location_zone
#: model_terms:ir.ui.view,arch_db:stock_location_zone.view_location_search
msgid "Zone location"
msgstr ""

0 comments on commit 928688a

Please sign in to comment.