-
-
Notifications
You must be signed in to change notification settings - Fork 671
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG]Migrate stock_picking_show_return from v11 to v12
- Loading branch information
1 parent
3f030e0
commit e0d3553
Showing
18 changed files
with
1,116 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,53 @@ | ||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg | ||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
:alt: License: AGPL-3 | ||
|
||
================================= | ||
Display returns on stock pickings | ||
================================= | ||
|
||
This module adds one tab in the pickings form view to display the returns | ||
pickings related to the current one. | ||
|
||
Usage | ||
===== | ||
|
||
#. Go to any picking that has a return | ||
#. See the new tab "Returns" appears. | ||
|
||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas | ||
:alt: Try me on Runbot | ||
:target: https://runbot.odoo-community.org/runbot/154/11.0 | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues | ||
<https://github.com/OCA/stock-logistics-workflow/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. | ||
|
||
Credits | ||
======= | ||
|
||
Contributors | ||
------------ | ||
|
||
* Pedro M. Baeza <[email protected]> | ||
* Shruti Singh <[email protected]> | ||
* Ruchir Shukla <[email protected]> | ||
|
||
Maintainer | ||
---------- | ||
|
||
.. image:: https://odoo-community.org/logo.png | ||
:alt: Odoo Community Association | ||
:target: https://odoo-community.org | ||
|
||
This module is maintained by the OCA. | ||
|
||
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. | ||
|
||
To contribute to this module, please visit https://odoo-community.org. |
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,3 @@ | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
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,19 @@ | ||
# Copyright 2014-2017 Pedro M. Baeza <[email protected]> | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
"name": "Show returns on stock pickings", | ||
"version": "12.0.1.0.0", | ||
"author": "Tecnativa, " | ||
"Odoo Community Association (OCA)", | ||
"category": "Warehouse Management", | ||
"website": "https://www.tecnativa.com", | ||
"license": "AGPL-3", | ||
"depends": [ | ||
"stock", | ||
], | ||
"data": [ | ||
'views/stock_picking_view.xml', | ||
], | ||
"installable": True, | ||
} |
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,34 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_picking_show_return | ||
# | ||
# Translators: | ||
# OCA Transbot <[email protected]>, 2017 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 12.0c\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2017-01-23 11:56+0000\n" | ||
"PO-Revision-Date: 2017-01-23 11:56+0000\n" | ||
"Last-Translator: OCA Transbot <[email protected]>, 2017\n" | ||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" | ||
"Language: de\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model.fields,field_description:stock_picking_show_return.field_stock_picking_returned_ids | ||
msgid "Returned pickings" | ||
msgstr "" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form | ||
msgid "Returns" | ||
msgstr "" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model,name:stock_picking_show_return.model_stock_picking | ||
msgid "Transfer" | ||
msgstr "Lieferung vornehmen" |
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,34 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_picking_show_return | ||
# | ||
# Translators: | ||
# OCA Transbot <[email protected]>, 2017 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 12.0c\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2017-01-23 11:56+0000\n" | ||
"PO-Revision-Date: 2017-01-23 11:56+0000\n" | ||
"Last-Translator: OCA Transbot <[email protected]>, 2017\n" | ||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" | ||
"Language: es\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model.fields,field_description:stock_picking_show_return.field_stock_picking_returned_ids | ||
msgid "Returned pickings" | ||
msgstr "Albaranes devueltos" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form | ||
msgid "Returns" | ||
msgstr "Devoluciones" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model,name:stock_picking_show_return.model_stock_picking | ||
msgid "Transfer" | ||
msgstr "Transferir" |
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,34 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_picking_show_return | ||
# | ||
# Translators: | ||
# OCA Transbot <[email protected]>, 2017 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 12.0c\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2017-01-23 11:56+0000\n" | ||
"PO-Revision-Date: 2017-01-23 11:56+0000\n" | ||
"Last-Translator: OCA Transbot <[email protected]>, 2017\n" | ||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" | ||
"Language: fr\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model.fields,field_description:stock_picking_show_return.field_stock_picking_returned_ids | ||
msgid "Returned pickings" | ||
msgstr "" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form | ||
msgid "Returns" | ||
msgstr "" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model,name:stock_picking_show_return.model_stock_picking | ||
msgid "Transfer" | ||
msgstr "Transfert" |
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,34 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_picking_show_return | ||
# | ||
# Translators: | ||
# Paolo Valier <[email protected]>, 2017 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 12.0c\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2017-01-23 11:56+0000\n" | ||
"PO-Revision-Date: 2017-01-23 11:56+0000\n" | ||
"Last-Translator: Paolo Valier <[email protected]>, 2017\n" | ||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" | ||
"Language: it\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model.fields,field_description:stock_picking_show_return.field_stock_picking_returned_ids | ||
msgid "Returned pickings" | ||
msgstr "" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form | ||
msgid "Returns" | ||
msgstr "" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model,name:stock_picking_show_return.model_stock_picking | ||
msgid "Transfer" | ||
msgstr "Trasferisci" |
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,35 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_picking_show_return | ||
# | ||
# Translators: | ||
# Peter Hageman <[email protected]>, 2017 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 12.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2017-12-03 03:56+0000\n" | ||
"PO-Revision-Date: 2017-12-03 03:56+0000\n" | ||
"Last-Translator: Peter Hageman <[email protected]>, 2017\n" | ||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" | ||
"teams/23907/nl_NL/)\n" | ||
"Language: nl_NL\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model.fields,field_description:stock_picking_show_return.field_stock_picking_returned_ids | ||
msgid "Returned pickings" | ||
msgstr "" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form | ||
msgid "Returns" | ||
msgstr "Retouren" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model,name:stock_picking_show_return.model_stock_picking | ||
msgid "Transfer" | ||
msgstr "Verplaats" |
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,34 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_picking_show_return | ||
# | ||
# Translators: | ||
# Pedro Castro Silva <[email protected]>, 2017 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 12.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2017-12-18 03:48+0000\n" | ||
"PO-Revision-Date: 2017-12-18 03:48+0000\n" | ||
"Last-Translator: Pedro Castro Silva <[email protected]>, 2017\n" | ||
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" | ||
"Language: pt\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model.fields,field_description:stock_picking_show_return.field_stock_picking_returned_ids | ||
msgid "Returned pickings" | ||
msgstr "" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form | ||
msgid "Returns" | ||
msgstr "" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model,name:stock_picking_show_return.model_stock_picking | ||
msgid "Transfer" | ||
msgstr "Transferência" |
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,35 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_picking_show_return | ||
# | ||
# Translators: | ||
# OCA Transbot <[email protected]>, 2017 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 12.0c\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2017-01-23 11:56+0000\n" | ||
"PO-Revision-Date: 2017-01-23 11:56+0000\n" | ||
"Last-Translator: OCA Transbot <[email protected]>, 2017\n" | ||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" | ||
"teams/23907/pt_BR/)\n" | ||
"Language: pt_BR\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model.fields,field_description:stock_picking_show_return.field_stock_picking_returned_ids | ||
msgid "Returned pickings" | ||
msgstr "" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form | ||
msgid "Returns" | ||
msgstr "" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model,name:stock_picking_show_return.model_stock_picking | ||
msgid "Transfer" | ||
msgstr "Transferir" |
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,35 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_picking_show_return | ||
# | ||
# Translators: | ||
# OCA Transbot <[email protected]>, 2017 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 12.0c\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2017-01-23 11:56+0000\n" | ||
"PO-Revision-Date: 2017-01-23 11:56+0000\n" | ||
"Last-Translator: OCA Transbot <[email protected]>, 2017\n" | ||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" | ||
"Language: sl\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" | ||
"%100==4 ? 2 : 3);\n" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model.fields,field_description:stock_picking_show_return.field_stock_picking_returned_ids | ||
msgid "Returned pickings" | ||
msgstr "Povrnjeni zbirniki" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form | ||
msgid "Returns" | ||
msgstr "Vračila" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model,name:stock_picking_show_return.model_stock_picking | ||
msgid "Transfer" | ||
msgstr "" |
30 changes: 30 additions & 0 deletions
30
stock_picking_show_return/i18n/stock_picking_show_return.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,30 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_picking_show_return | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 12.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"Last-Translator: <>\n" | ||
"Language-Team: \n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: \n" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model.fields,field_description:stock_picking_show_return.field_stock_picking_returned_ids | ||
msgid "Returned pickings" | ||
msgstr "" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form | ||
msgid "Returns" | ||
msgstr "" | ||
|
||
#. module: stock_picking_show_return | ||
#: model:ir.model,name:stock_picking_show_return.model_stock_picking | ||
msgid "Transfer" | ||
msgstr "" | ||
|
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,3 @@ | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
from . import stock_picking |
Oops, something went wrong.