Skip to content

Commit

Permalink
Merge pull request #1387 from OCA/18.0
Browse files Browse the repository at this point in the history
Syncing from upstream OCA/stock-logistics-workflow (18.0)
  • Loading branch information
bt-admin authored Jan 27, 2025
2 parents 88583d2 + add06eb commit 2cc65ec
Show file tree
Hide file tree
Showing 27 changed files with 1,221 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ addon | version | maintainers | summary
[stock_picking_auto_create_lot](stock_picking_auto_create_lot/) | 18.0.1.0.0 | [![sergio-teruel](https://github.com/sergio-teruel.png?size=30px)](https://github.com/sergio-teruel) | Auto create lots for incoming pickings
[stock_picking_invoice_link](stock_picking_invoice_link/) | 18.0.1.0.0 | | Adds link between pickings and invoices
[stock_picking_sale_order_link](stock_picking_sale_order_link/) | 18.0.1.0.0 | | Link between picking and sale order
[stock_picking_show_return](stock_picking_show_return/) | 18.0.1.0.0 | | Show returns on stock pickings
[stock_picking_whole_scrap](stock_picking_whole_scrap/) | 18.0.1.0.0 | [![sergio-teruel](https://github.com/sergio-teruel.png?size=30px)](https://github.com/sergio-teruel) | Create whole scrap from a picking for move lines

[//]: # (end addons)
Expand Down
3 changes: 2 additions & 1 deletion setup/_metapackage/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[project]
name = "odoo-addons-oca-stock-logistics-workflow"
version = "18.0.20250124.0"
version = "18.0.20250126.0"
dependencies = [
"odoo-addon-sale_order_global_stock_route==18.0.*",
"odoo-addon-stock_account_product_run_fifo_hook==18.0.*",
"odoo-addon-stock_no_negative==18.0.*",
"odoo-addon-stock_picking_auto_create_lot==18.0.*",
"odoo-addon-stock_picking_invoice_link==18.0.*",
"odoo-addon-stock_picking_sale_order_link==18.0.*",
"odoo-addon-stock_picking_show_return==18.0.*",
"odoo-addon-stock_picking_whole_scrap==18.0.*",
]
classifiers=[
Expand Down
111 changes: 111 additions & 0 deletions stock_picking_show_return/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
==============================
Show returns on stock pickings
==============================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:ad9a5ec812edf1307d5a9d34336816eeac5dd8c206eb418e48b87164d26d551c
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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-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--workflow-lightgray.png?logo=github
:target: https://github.com/OCA/stock-logistics-workflow/tree/18.0/stock_picking_show_return
:alt: OCA/stock-logistics-workflow
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/stock-logistics-workflow-18-0/stock-logistics-workflow-18-0-stock_picking_show_return
: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-workflow&target_branch=18.0
:alt: Try me on Runboat

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

This module adds one tab in the pickings form view to display the
returns pickings related to the current one.

**Table of contents**

.. contents::
:local:

Usage
=====

To display returned pickings from this one
------------------------------------------

1. Go to any picking that has a return
2. See the new tab "Returns" appears.

To display origin picking from any returned picking
---------------------------------------------------

1. Go to any returned picking
2. See the new smart button "Origin picking" appears.
3. Click on button to open origin picking.

Changelog
=========

12.0.1.0.1 (2020-01-30)
-----------------------

- [ADD] Display source picking from any returned picking.

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 to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/stock-logistics-workflow/issues/new?body=module:%20stock_picking_show_return%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
-------

* Tecnativa

Contributors
------------

- `Tecnativa <https://www.tecnativa.com>`__:

- Pedro M. Baeza <[email protected]>
- Sergio Teruel <[email protected]>

- `BizzAppDev <https://www.bizzappdev.com>`__:

- Shruti Singh <[email protected]>
- Ruchir Shukla <[email protected]>

- ``Heliconia Solutions Pvt. Ltd. <https://www.heliconia.io>``\ \_

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-workflow <https://github.com/OCA/stock-logistics-workflow/tree/18.0/stock_picking_show_return>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
3 changes: 3 additions & 0 deletions stock_picking_show_return/__init__.py
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
14 changes: 14 additions & 0 deletions stock_picking_show_return/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# 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": "18.0.1.0.0",
"author": "Tecnativa, " "Odoo Community Association (OCA)",
"category": "Warehouse Management",
"website": "https://github.com/OCA/stock-logistics-workflow",
"license": "AGPL-3",
"depends": ["stock"],
"data": ["views/stock_picking_view.xml"],
"installable": True,
}
44 changes: 44 additions & 0 deletions stock_picking_show_return/i18n/de.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# 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_terms:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form
msgid "<span class=\"o_stat_text\">Source picking</span>"
msgstr ""

#. 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_terms:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form
msgid "Returns"
msgstr ""

#. module: stock_picking_show_return
#: model:ir.model.fields,field_description:stock_picking_show_return.field_stock_picking__source_picking_id
msgid "Source picking"
msgstr ""

#. module: stock_picking_show_return
#: model:ir.model,name:stock_picking_show_return.model_stock_picking
msgid "Transfer"
msgstr "Lieferung vornehmen"
43 changes: 43 additions & 0 deletions stock_picking_show_return/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * stock_picking_show_return
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-08-17 03:17+0000\n"
"PO-Revision-Date: 2023-09-03 05:07+0000\n"
"Last-Translator: Ivorra78 <[email protected]>\n"
"Language-Team: \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_picking_show_return
#: model_terms:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form
msgid "<span class=\"o_stat_text\">Source picking</span>"
msgstr "<span class=\"o_stat_text\">Recogida de fuentes</span>"

#. 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_terms:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form
msgid "Returns"
msgstr "Devoluciones"

#. module: stock_picking_show_return
#: model:ir.model.fields,field_description:stock_picking_show_return.field_stock_picking__source_picking_id
msgid "Source picking"
msgstr "Albarán origen"

#. module: stock_picking_show_return
#: model:ir.model,name:stock_picking_show_return.model_stock_picking
msgid "Transfer"
msgstr "Transferir"
44 changes: 44 additions & 0 deletions stock_picking_show_return/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# 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_terms:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form
msgid "<span class=\"o_stat_text\">Source picking</span>"
msgstr ""

#. 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_terms:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form
msgid "Returns"
msgstr ""

#. module: stock_picking_show_return
#: model:ir.model.fields,field_description:stock_picking_show_return.field_stock_picking__source_picking_id
msgid "Source picking"
msgstr ""

#. module: stock_picking_show_return
#: model:ir.model,name:stock_picking_show_return.model_stock_picking
msgid "Transfer"
msgstr "Transfert"
45 changes: 45 additions & 0 deletions stock_picking_show_return/i18n/it.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# 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: 2023-11-17 09:33+0000\n"
"Last-Translator: mymage <[email protected]>\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"
"X-Generator: Weblate 4.17\n"

#. module: stock_picking_show_return
#: model_terms:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form
msgid "<span class=\"o_stat_text\">Source picking</span>"
msgstr "<span class=\"o_stat_text\">Prelievo origine</span>"

#. module: stock_picking_show_return
#: model:ir.model.fields,field_description:stock_picking_show_return.field_stock_picking__returned_ids
msgid "Returned pickings"
msgstr "Prelievi resi"

#. module: stock_picking_show_return
#: model_terms:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form
msgid "Returns"
msgstr "Resi"

#. module: stock_picking_show_return
#: model:ir.model.fields,field_description:stock_picking_show_return.field_stock_picking__source_picking_id
msgid "Source picking"
msgstr "Prelievo origine"

#. module: stock_picking_show_return
#: model:ir.model,name:stock_picking_show_return.model_stock_picking
msgid "Transfer"
msgstr "Trasferimento"
45 changes: 45 additions & 0 deletions stock_picking_show_return/i18n/nl_NL.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# 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_terms:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form
msgid "<span class=\"o_stat_text\">Source picking</span>"
msgstr ""

#. 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_terms:ir.ui.view,arch_db:stock_picking_show_return.view_picking_form
msgid "Returns"
msgstr "Retouren"

#. module: stock_picking_show_return
#: model:ir.model.fields,field_description:stock_picking_show_return.field_stock_picking__source_picking_id
msgid "Source picking"
msgstr ""

#. module: stock_picking_show_return
#: model:ir.model,name:stock_picking_show_return.model_stock_picking
msgid "Transfer"
msgstr "Verplaats"
Loading

0 comments on commit 2cc65ec

Please sign in to comment.