From aaaea6e27f413a7ae5eb5e5f92365acfd37d72bf Mon Sep 17 00:00:00 2001 From: Andhitia Rama Date: Mon, 25 Nov 2024 22:21:26 +0700 Subject: [PATCH] [UPD] ssi_rma * Menambahkan smart button reception * Menambahkan smart button delivery --- ssi_rma/models/rma_mixin.py | 40 ++++++++++++++++++++++++++++++++ ssi_rma/views/rma_mixin_view.xml | 22 ++++++++++++++++++ 2 files changed, 62 insertions(+) diff --git a/ssi_rma/models/rma_mixin.py b/ssi_rma/models/rma_mixin.py index d55e108..040e417 100644 --- a/ssi_rma/models/rma_mixin.py +++ b/ssi_rma/models/rma_mixin.py @@ -452,6 +452,16 @@ def onchange_route_template_id(self): if self.operation_id: self.route_template_id = self.operation_id.default_route_template_id.id + def action_open_reception(self): + for record in self.sudo(): + result = record._open_reception() + return result + + def action_open_delivery(self): + for record in self.sudo(): + result = record._open_delivery() + return result + def action_create_reception(self): for record in self.sudo(): record._create_reception() @@ -479,6 +489,36 @@ def _unlink_source_picking(self): ) self.line_ids.unlink() + def _open_reception(self): + self.ensure_one() + rma_customer_in = self.env.ref("ssi_rma.picking_category_cri") + pickings = self.stock_picking_ids.filtered( + lambda r: r.picking_type_category_id.id == rma_customer_in.id + ) + waction = self.env.ref("ssi_rma.customer_rma_in_action").read()[0] + waction.update( + { + "view_mode": "tree,form", + "domain": [("id", "in", pickings.ids)], + } + ) + return waction + + def _open_delivery(self): + self.ensure_one() + rma_customer_out = self.env.ref("ssi_rma.picking_category_cro") + pickings = self.stock_picking_ids.filtered( + lambda r: r.picking_type_category_id.id == rma_customer_out.id + ) + waction = self.env.ref("ssi_rma.customer_rma_out_action").read()[0] + waction.update( + { + "view_mode": "tree,form", + "domain": [("id", "in", pickings.ids)], + } + ) + return waction + @ssi_decorator.post_open_action() def _create_procurement_group(self): self.ensure_one() diff --git a/ssi_rma/views/rma_mixin_view.xml b/ssi_rma/views/rma_mixin_view.xml index 24d8b31..283338a 100644 --- a/ssi_rma/views/rma_mixin_view.xml +++ b/ssi_rma/views/rma_mixin_view.xml @@ -121,6 +121,28 @@ /> primary + + + +