|
1 | 1 | # Copyright 2024 Tecnativa - David Vidal
|
| 2 | +# Copyright 2024 Tecnativa - Sergio Teruel |
2 | 3 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
3 | 4 | from odoo import _, api, fields, models
|
4 | 5 | from odoo.exceptions import UserError
|
5 | 6 | from odoo.tools.misc import clean_context
|
6 | 7 |
|
| 8 | +from odoo.addons.web.controllers.main import clean_action |
| 9 | + |
7 | 10 |
|
8 | 11 | class StockMoveWeightWizard(models.TransientModel):
|
9 | 12 | _name = "weighing.wizard"
|
@@ -127,15 +130,33 @@ def record_weight(self):
|
127 | 130 | # Unlock the operation
|
128 | 131 | selected_line.move_id.action_unlock_weigh_operation()
|
129 | 132 | self.weight = 0.0
|
| 133 | + action_list = [] |
130 | 134 | if self.print_label:
|
131 | 135 | action = selected_line.action_print_weight_record_label()
|
132 | 136 | if not self.env.context.get("reload_wizard_action", False):
|
133 | 137 | # If we want to keep the wizard open for multiple weighing, we do not
|
134 | 138 | # need to close the wizard after printing a label.
|
135 | 139 | action["close_on_report_download"] = True
|
136 |
| - return action |
| 140 | + clean_action(action, self.env) |
| 141 | + action_list.append(action) |
137 | 142 | 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} |
139 | 160 |
|
140 | 161 | def action_close(self):
|
141 | 162 | """Close but unlock the operation"""
|
|
0 commit comments