oca-technical/odoo-bringout-oca-ddmrp-ddmrp/ddmrp/wizards/ddmrp_duplicate_buffer.py
2025-08-29 15:43:03 +02:00

98 lines
3.4 KiB
Python

# Copyright 2023 ForgeFlow S.L. (http://www.forgeflow.com)
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
from odoo import _, api, fields, models
from odoo.exceptions import UserError
class DdmrpDuplicateBuffer(models.TransientModel):
_name = "ddmrp.duplicate.buffer"
_description = "DDMRP Duplicate Buffer"
@api.model
def default_get(self, fields_list):
res = super().default_get(fields_list)
buffer_obj = self.env["stock.buffer"]
buffer_ids = self.env.context.get("active_ids", [])
active_model = self.env.context["active_model"]
if not buffer_ids:
return
assert active_model == "stock.buffer", "Bad context propagation"
if len(buffer_ids) > 1:
res.update(
{
"type": "location",
}
)
else:
buffer = buffer_obj.browse(buffer_ids)
res.update(
{
"type": "both",
"product_id": buffer.product_id.id,
"location_id": buffer.location_id.id,
}
)
return res
type = fields.Selection(
string="Duplication Type",
selection=[
("both", "Change both values"),
("product", "Change Product"),
("location", "Change Location"),
],
required=True,
)
product_id = fields.Many2one(
comodel_name="product.product",
string="New Product",
)
location_id = fields.Many2one(
comodel_name="stock.location",
string="New Location",
)
def action_duplicate_buffer(self):
buffer_obj = self.env["stock.buffer"]
buffer_ids = self.env.context["active_ids"] or []
if self.type in ["product", "both"] and not self.product_id:
raise UserError(_("Please select a New Product."))
if self.type in ["location", "both"] and not self.location_id:
raise UserError(_("Please select a New Location."))
copy_buffers = self.env["stock.buffer"]
for buffer in buffer_obj.browse(buffer_ids):
default = {}
if self.type in ["product", "both"]:
default["product_id"] = self.product_id.id
if self.type in ["location", "both"]:
default["location_id"] = self.location_id.id
default["warehouse_id"] = self.location_id.warehouse_id.id
default["company_id"] = self.location_id.company_id.id
copy_buffers |= buffer.copy(default)
if len(copy_buffers) == 1:
view_id = self.env.ref("ddmrp.stock_buffer_view_form").id
return {
"name": _("Duplicated Buffers"),
"type": "ir.actions.act_window",
"res_model": "stock.buffer",
"res_id": copy_buffers.id,
"view_mode": "form",
"view_id": view_id,
}
else:
xmlid = "ddmrp.action_stock_buffer"
action = self.env["ir.actions.act_window"]._for_xml_id(xmlid)
action.update(
{
"name": _("Duplicated Buffers"),
"res_model": "stock.buffer",
"view_mode": "tree,form",
"domain": [("id", "in", copy_buffers.ids)],
}
)
return action