Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[15.0][ADD] stock_picking_auto_print: New module #347

Open
wants to merge 1 commit into
base: 15.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions setup/stock_picking_auto_print/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,
)
79 changes: 79 additions & 0 deletions stock_picking_auto_print/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
========================
Stock Picking Auto Print
========================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:7edeca4d86af2c7a6795bab19ea2e6749ccc34f49ef0a463a73c266514810ba2
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |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--reporting-lightgray.png?logo=github
:target: https://github.com/OCA/stock-logistics-reporting/tree/15.0/stock_picking_auto_print
:alt: OCA/stock-logistics-reporting
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/stock-logistics-reporting-15-0/stock-logistics-reporting-15-0-stock_picking_auto_print
: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-reporting&target_branch=15.0
:alt: Try me on Runboat

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

This is a backport of the Odoo 17 functionality that allows to auto print delivery
slip after validation

**Table of contents**

.. contents::
:local:

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-reporting/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-reporting/issues/new?body=module:%20stock_picking_auto_print%0Aversion:%2015.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>`_:

* Sergio Teruel

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-reporting <https://github.com/OCA/stock-logistics-reporting/tree/15.0/stock_picking_auto_print>`_ 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_picking_auto_print/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
17 changes: 17 additions & 0 deletions stock_picking_auto_print/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright 2024 Tecnativa - Sergio Teruel
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# Copyright 2024 Tecnativa - Sergio Teruel
# Copyright 2024 Tecnativa - Sergio Teruel
# Copyright 2024 Odoo S.A.

# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
"name": "Stock Picking Auto Print",
"summary": "Print picking delivery slip automatically after validation",
"version": "15.0.1.0.0",
"author": "Tecnativa, Odoo Community Association (OCA)",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"author": "Tecnativa, Odoo Community Association (OCA)",
"author": "Odoo S.A., Tecnativa, Odoo Community Association (OCA)",

"website": "https://github.com/OCA/stock-logistics-reporting",
"category": "Warehouse Management",
"license": "AGPL-3",
"depends": ["stock", "web_ir_actions_act_multi"],
"data": [
"views/stock_picking_type_views.xml",
],
"installable": True,
}
2 changes: 2 additions & 0 deletions stock_picking_auto_print/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import stock_picking
from . import stock_picking_type
56 changes: 56 additions & 0 deletions stock_picking_auto_print/models/stock_picking.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Copyright 2024 Tecnativa - Sergio Teruel
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

import logging

from odoo import api, models

from odoo.addons.web.controllers.main import clean_action

_logger = logging.getLogger(__name__)


class StockPicking(models.Model):
_inherit = "stock.picking"

def button_validate(self):
res = super().button_validate()
# Determine if res contains the report reception action to launch after
# pdf downloaded
auto_print_stock_reception_report = False
if (
isinstance(res, dict)
and res.get("xml_id", False) == "stock.stock_reception_action"
):
auto_print_stock_reception_report = True
if res is True or auto_print_stock_reception_report:
report_actions = self._get_autoprint_report_actions()
return self._auto_print_on_validate(
report_actions, res if auto_print_stock_reception_report else False
)
return res

Check warning on line 31 in stock_picking_auto_print/models/stock_picking.py

View check run for this annotation

Codecov / codecov/patch

stock_picking_auto_print/models/stock_picking.py#L31

Added line #L31 was not covered by tests

@api.model
def _auto_print_on_validate(self, reports, other_action=False):
report_action_list = []
if other_action:
report_action_list = reports + [other_action]
else:
report_action_list = reports + [
{"type": "ir.actions.act_window_close"},
{"type": "ir.actions.client", "tag": "reload"},
]
return {"type": "ir.actions.act_multi", "actions": report_action_list}

def _get_autoprint_report_actions(self):
report_actions = []
pickings_to_print = self.filtered(
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lambda p: p.picking_type_id.auto_print_delivery_slip
)
if pickings_to_print:
action = self.env.ref("stock.action_report_delivery").report_action(
pickings_to_print.ids, config=False
)
clean_action(action, self.env)
report_actions.append(action)
return report_actions
13 changes: 13 additions & 0 deletions stock_picking_auto_print/models/stock_picking_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright 2024 Tecnativa - Sergio Teruel
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import fields, models


class StockPickingType(models.Model):
_inherit = "stock.picking.type"

auto_print_delivery_slip = fields.Boolean(
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't we add the auto_print_return_slip as well?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In v15 does not exist the returned report

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, ok 👍

help="If this checkbox is ticked, Odoo will automatically print the delivery"
"slip of a picking when it is validated.",
)
3 changes: 3 additions & 0 deletions stock_picking_auto_print/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* `Tecnativa <https://www.tecnativa.com>`_:

* Sergio Teruel
2 changes: 2 additions & 0 deletions stock_picking_auto_print/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This is a backport of the Odoo 17 functionality that allows to auto print delivery
slip after validation
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading