-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] fieldservice_stock_request: Migration to 16.0
- Loading branch information
Showing
73 changed files
with
4,418 additions
and
83 deletions.
There are no files selected for viewing
121 changes: 121 additions & 0 deletions
121
fieldservice_calendar/stock_request_direction/README.rst
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,121 @@ | ||
======================== | ||
Stock Requests Direction | ||
======================== | ||
|
||
.. | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:82fa2af82b3f4697cc02afc9e91a6553fdeeb25b54776fe9d0a66a481ff62a88 | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png | ||
:target: https://odoo-community.org/page/development-status | ||
:alt: Beta | ||
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png | ||
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html | ||
:alt: License: LGPL-3 | ||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--request-lightgray.png?logo=github | ||
:target: https://github.com/OCA/stock-logistics-request/tree/16.0/stock_request_direction | ||
:alt: OCA/stock-logistics-request | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/stock-logistics-request-16-0/stock-logistics-request-16-0-stock_request_direction | ||
: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-request&target_branch=16.0 | ||
:alt: Try me on Runboat | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
This module was written to allow users to request products to be transferred | ||
from or to your warehouses. They can specify the direction and don't have to | ||
bother selecting the inventory location. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Usage | ||
===== | ||
|
||
Creation | ||
~~~~~~~~ | ||
|
||
* Go to Stock Requests > Stock Requests | ||
* Create or select a stock request | ||
* Provide a product, quantity, direction and expected date | ||
* Click Confirm | ||
|
||
Upon confirmation, the request will be reviewed by the warehouse team who can | ||
define the appropriate route. | ||
|
||
In case that transfers are created, the user will be able to access to them | ||
from the button 'Transfers' available in the Stock Request. | ||
|
||
Cancel | ||
~~~~~~ | ||
|
||
When the user cancels a Stock Request, the related pending stock moves will be | ||
also cancelled. | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-request/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-request/issues/new?body=module:%20stock_request_direction%0Aversion:%2016.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 | ||
~~~~~~~ | ||
|
||
* Open Source Integrators | ||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
||
* `Open Source Integrators <https://www.opensourceintegrators.com>`_ | ||
|
||
* Maxime Chambreuil <mchambreuil@opensourceintegrators.com> | ||
* Steve Campbell <scampbell@opensourceintegrators.com> | ||
* Freni Patel <fpatel@opensourceintegrators.com> | ||
|
||
* `Ecosoft <http://ecosoft.co.th>`__: | ||
|
||
* Pimolnat Suntian <pimolnats@ecosoft.co.th> | ||
* Kitti U. <kittiu@ecosoft.co.th> | ||
|
||
* `[APSL](https://apsl.tech)`__: | ||
* Antoni Marroig <amarroig@apsl.net> | ||
|
||
Maintainers | ||
~~~~~~~~~~~ | ||
|
||
This module is maintained by the OCA. | ||
|
||
.. image:: https://odoo-community.org/logo.png | ||
:alt: Odoo Community Association | ||
:target: https://odoo-community.org | ||
|
||
OCA, or the Odoo Community Association, is a nonprofit organization whose | ||
mission is to support the collaborative development of Odoo features and | ||
promote its widespread use. | ||
|
||
.. |maintainer-max3903| image:: https://github.com/max3903.png?size=40px | ||
:target: https://github.com/max3903 | ||
:alt: max3903 | ||
|
||
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__: | ||
|
||
|maintainer-max3903| | ||
|
||
This module is part of the `OCA/stock-logistics-request <https://github.com/OCA/stock-logistics-request/tree/16.0/stock_request_direction>`_ 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,4 @@ | ||
# Copyright (c) 2019 Open Source Integrators | ||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). | ||
|
||
from . import models |
21 changes: 21 additions & 0 deletions
21
fieldservice_calendar/stock_request_direction/__manifest__.py
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,21 @@ | ||
# Copyright (c) 2019 Open Source Integrators | ||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). | ||
|
||
{ | ||
"name": "Stock Requests Direction", | ||
"summary": "From or to your warehouse?", | ||
"version": "16.0.1.0.0", | ||
"license": "LGPL-3", | ||
"website": "https://github.com/OCA/stock-logistics-request", | ||
"author": "Open Source Integrators, Odoo Community Association (OCA)", | ||
"category": "Warehouse Management", | ||
"depends": ["stock_request"], | ||
"data": [ | ||
"views/res_config_settings.xml", | ||
"views/stock_request_views.xml", | ||
"views/stock_request_order_views.xml", | ||
], | ||
"application": False, | ||
"development_status": "Beta", | ||
"maintainers": ["max3903"], | ||
} |
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,63 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_request_direction | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 12.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2020-01-17 05:13+0000\n" | ||
"Last-Translator: Nelson Ramírez Sánchez <info@konos.cl>\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 3.10\n" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request__direction | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request_order__direction | ||
msgid "Direction" | ||
msgstr "Sentido" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request__display_name | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request_order__display_name | ||
msgid "Display Name" | ||
msgstr "" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request__id | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request_order__id | ||
msgid "ID" | ||
msgstr "" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields.selection,name:stock_request_direction.selection__stock_request__direction__inbound | ||
#: model:ir.model.fields.selection,name:stock_request_direction.selection__stock_request_order__direction__inbound | ||
msgid "Inbound" | ||
msgstr "Entrante" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request____last_update | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request_order____last_update | ||
msgid "Last Modified on" | ||
msgstr "" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields.selection,name:stock_request_direction.selection__stock_request__direction__outbound | ||
#: model:ir.model.fields.selection,name:stock_request_direction.selection__stock_request_order__direction__outbound | ||
msgid "Outbound" | ||
msgstr "Saliente" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model,name:stock_request_direction.model_stock_request | ||
msgid "Stock Request" | ||
msgstr "Solicitud de Existencias" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model,name:stock_request_direction.model_stock_request_order | ||
msgid "Stock Request Order" | ||
msgstr "Pedido de Existencia" |
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,63 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_request_direction | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 14.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2024-01-15 11:34+0000\n" | ||
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n" | ||
"Language-Team: none\n" | ||
"Language: it\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=n != 1;\n" | ||
"X-Generator: Weblate 4.17\n" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request__direction | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request_order__direction | ||
msgid "Direction" | ||
msgstr "Direzione" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request__display_name | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request_order__display_name | ||
msgid "Display Name" | ||
msgstr "Nome visualizzato" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request__id | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request_order__id | ||
msgid "ID" | ||
msgstr "ID" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields.selection,name:stock_request_direction.selection__stock_request__direction__inbound | ||
#: model:ir.model.fields.selection,name:stock_request_direction.selection__stock_request_order__direction__inbound | ||
msgid "Inbound" | ||
msgstr "In entrata" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request____last_update | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request_order____last_update | ||
msgid "Last Modified on" | ||
msgstr "Ultima modifica il" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields.selection,name:stock_request_direction.selection__stock_request__direction__outbound | ||
#: model:ir.model.fields.selection,name:stock_request_direction.selection__stock_request_order__direction__outbound | ||
msgid "Outbound" | ||
msgstr "In uscita" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model,name:stock_request_direction.model_stock_request | ||
msgid "Stock Request" | ||
msgstr "Richiesta di magazzino" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model,name:stock_request_direction.model_stock_request_order | ||
msgid "Stock Request Order" | ||
msgstr "Ordine richiesta di magazzino" |
60 changes: 60 additions & 0 deletions
60
fieldservice_calendar/stock_request_direction/i18n/stock_request_direction.pot
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,60 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_request_direction | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 14.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_request_direction | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request__direction | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request_order__direction | ||
msgid "Direction" | ||
msgstr "" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request__display_name | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request_order__display_name | ||
msgid "Display Name" | ||
msgstr "" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request__id | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request_order__id | ||
msgid "ID" | ||
msgstr "" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields.selection,name:stock_request_direction.selection__stock_request__direction__inbound | ||
#: model:ir.model.fields.selection,name:stock_request_direction.selection__stock_request_order__direction__inbound | ||
msgid "Inbound" | ||
msgstr "" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request____last_update | ||
#: model:ir.model.fields,field_description:stock_request_direction.field_stock_request_order____last_update | ||
msgid "Last Modified on" | ||
msgstr "" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model.fields.selection,name:stock_request_direction.selection__stock_request__direction__outbound | ||
#: model:ir.model.fields.selection,name:stock_request_direction.selection__stock_request_order__direction__outbound | ||
msgid "Outbound" | ||
msgstr "" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model,name:stock_request_direction.model_stock_request | ||
msgid "Stock Request" | ||
msgstr "" | ||
|
||
#. module: stock_request_direction | ||
#: model:ir.model,name:stock_request_direction.model_stock_request_order | ||
msgid "Stock Request Order" | ||
msgstr "" |
Oops, something went wrong.