Skip to content

Commit f45c415

Browse files
committed
[IMP] stock_weighing: Do not break workflow to record weight is user wants to print labels
TT51483
1 parent 965a7d0 commit f45c415

File tree

3 files changed

+33
-10
lines changed

3 files changed

+33
-10
lines changed

stock_weighing/__manifest__.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@
88
"website": "https://github.com/OCA/stock-weighing",
99
"license": "AGPL-3",
1010
"category": "Inventory",
11-
"depends": ["stock", "web_filter_header_button", "web_widget_numeric_step"],
11+
"depends": [
12+
"stock",
13+
"web_filter_header_button",
14+
"web_widget_numeric_step",
15+
"web_ir_actions_act_multi",
16+
],
1217
"data": [
1318
"security/ir.model.access.csv",
1419
"views/start_screen_banner.xml",

stock_weighing/static/description/index.html

+4-7
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@
88

99
/*
1010
:Author: David Goodger ([email protected])
11-
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
11+
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
1212
:Copyright: This stylesheet has been placed in the public domain.
1313
1414
Default cascading style sheet for the HTML output of Docutils.
15-
Despite the name, some widely supported CSS2 features are used.
1615
1716
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
1817
customize this style sheet.
@@ -275,7 +274,7 @@
275274
margin-left: 2em ;
276275
margin-right: 2em }
277276

278-
pre.code .ln { color: gray; } /* line numbers */
277+
pre.code .ln { color: grey; } /* line numbers */
279278
pre.code, code { background-color: #eeeeee }
280279
pre.code .comment, code .comment { color: #5C6576 }
281280
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
@@ -301,7 +300,7 @@
301300
span.pre {
302301
white-space: pre }
303302

304-
span.problematic, pre.problematic {
303+
span.problematic {
305304
color: red }
306305

307306
span.section-subtitle {
@@ -499,9 +498,7 @@ <h2><a class="toc-backref" href="#toc-entry-9">Contributors</a></h2>
499498
<div class="section" id="maintainers">
500499
<h2><a class="toc-backref" href="#toc-entry-10">Maintainers</a></h2>
501500
<p>This module is maintained by the OCA.</p>
502-
<a class="reference external image-reference" href="https://odoo-community.org">
503-
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
504-
</a>
501+
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
505502
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
506503
mission is to support the collaborative development of Odoo features and
507504
promote its widespread use.</p>

stock_weighing/wizards/weighing_wizard.py

+23-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# Copyright 2024 Tecnativa - David Vidal
2+
# Copyright 2024 Tecnativa - Sergio Teruel
23
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
34
from odoo import _, api, fields, models
45
from odoo.exceptions import UserError
56
from odoo.tools.misc import clean_context
67

8+
from odoo.addons.web.controllers.main import clean_action
9+
710

811
class StockMoveWeightWizard(models.TransientModel):
912
_name = "weighing.wizard"
@@ -127,15 +130,33 @@ def record_weight(self):
127130
# Unlock the operation
128131
selected_line.move_id.action_unlock_weigh_operation()
129132
self.weight = 0.0
133+
action_list = []
130134
if self.print_label:
131135
action = selected_line.action_print_weight_record_label()
132136
if not self.env.context.get("reload_wizard_action", False):
133137
# If we want to keep the wizard open for multiple weighing, we do not
134138
# need to close the wizard after printing a label.
135139
action["close_on_report_download"] = True
136-
return action
140+
clean_action(action, self.env)
141+
action_list.append(action)
137142
if self.env.context.get("reload_wizard_action", False):
138-
return self.reload_action_wizard()
143+
other_action = self.reload_action_wizard()
144+
clean_action(other_action, self.env)
145+
return self._actions_after_record_weight(action_list, other_action=other_action)
146+
147+
@api.model
148+
def _actions_after_record_weight(self, actions, other_action=False):
149+
"""Print and return action window and no break workflow allowing print with
150+
multi-thread option"""
151+
action_list = []
152+
if other_action:
153+
action_list = actions + [other_action]
154+
else:
155+
action_list = actions + [
156+
{"type": "ir.actions.act_window_close"},
157+
{"type": "ir.actions.client", "tag": "reload"},
158+
]
159+
return {"type": "ir.actions.act_multi", "actions": action_list}
139160

140161
def action_close(self):
141162
"""Close but unlock the operation"""

0 commit comments

Comments
 (0)