Skip to content

Commit

Permalink
[ADD] shopfloor_reception_purchase_partner_ref: purchase.order partne…
Browse files Browse the repository at this point in the history
…r_ref on reception scenario
  • Loading branch information
mt-software-de committed Aug 17, 2023
1 parent ba831fd commit 74f79b4
Show file tree
Hide file tree
Showing 22 changed files with 1,135 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup/shopfloor_reception_purchase_partner_ref/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
82 changes: 82 additions & 0 deletions shopfloor_reception_purchase_partner_ref/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
========================================
Shopfloor Reception Purchase Partner Ref
========================================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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%2Fwms-lightgray.png?logo=github
:target: https://github.com/OCA/wms/tree/14.0/shopfloor_reception_purchase_partner_ref
:alt: OCA/wms
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/wms-14-0/wms-14-0-shopfloor_reception_purchase_partner_ref
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/webui/builds.html?repo=OCA/wms&target_branch=14.0
:alt: Try me on Runboat

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

Shopfloor extension of the reception scenario.
Show the purchase.order partner_ref field on the picking views

**Table of contents**

.. contents::
:local:

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/wms/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/wms/issues/new?body=module:%20shopfloor_reception_purchase_partner_ref%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
~~~~~~~

* MT Software

Contributors
~~~~~~~~~~~~

* Michael Tietz (MT Software) <[email protected]>

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-mt-software-de| image:: https://github.com/mt-software-de.png?size=40px
:target: https://github.com/mt-software-de
:alt: mt-software-de

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-mt-software-de|

This module is part of the `OCA/wms <https://github.com/OCA/wms/tree/14.0/shopfloor_reception_purchase_partner_ref>`_ 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 shopfloor_reception_purchase_partner_ref/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import services
11 changes: 11 additions & 0 deletions shopfloor_reception_purchase_partner_ref/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "Shopfloor Reception Purchase Partner Ref",
"summary": "Adds the purchase partner ref field to shopfloor reception scenario",
"version": "14.0.1.0.0",
"category": "Inventory",
"website": "https://github.com/OCA/wms",
"author": "MT Software, Odoo Community Association (OCA)",
"maintainers": ["mt-software-de"],
"license": "AGPL-3",
"depends": ["shopfloor_purchase_base", "shopfloor_reception", "purchase_stock"],
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Michael Tietz (MT Software) <[email protected]>
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Shopfloor extension of the reception scenario.
Show the purchase.order partner_ref field on the picking views
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import reception
12 changes: 12 additions & 0 deletions shopfloor_reception_purchase_partner_ref/services/reception.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Copyright 2023 Michael Tietz (MT Software) <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
from odoo.addons.component.core import Component


class Reception(Component):
_inherit = "shopfloor.reception"

def _data_for_stock_picking(self, picking, with_lines=False, **kw):
if "with_purchase_order" not in kw:
kw["with_purchase_order"] = True
return super()._data_for_stock_picking(picking, with_lines, **kw)
Loading

0 comments on commit 74f79b4

Please sign in to comment.