diff --git a/scrap_reason_code/README.rst b/scrap_reason_code/README.rst new file mode 100644 index 000000000..306be9e5a --- /dev/null +++ b/scrap_reason_code/README.rst @@ -0,0 +1,100 @@ +================= +Scrap Reason Code +================= + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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--warehouse-lightgray.png?logo=github + :target: https://github.com/OCA/stock-logistics-warehouse/tree/13.0/scrap_reason_code + :alt: OCA/stock-logistics-warehouse +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/stock-logistics-warehouse-13-0/stock-logistics-warehouse-13-0-scrap_reason_code + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/153/13.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Adds a reason code for scrapping operations and an interface for the user +to create scrap codes + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +In the Inventory module, open the Configuration menu and select Scrap Reason Codes. +Create the required scrap reason codes. Under Operations, select Scrap. Click the +create button to create a new scrap order. You will see a reason code field on the +scrap form which will allow you to select any of the scrap codes you created previously. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Open Source Integrators + +Contributors +~~~~~~~~~~~~ + +* Michael Allen +* Bhavesh Odedra +* Balaji Kannan +* Serpent Consulting Services Pvt. Ltd. + +Other credits +~~~~~~~~~~~~~ + +The development of this module has been financially supported by: + +* Open Source Integrators + +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. + +.. |maintainer-bodedra| image:: https://github.com/bodedra.png?size=40px + :target: https://github.com/bodedra + :alt: bodedra + +Current `maintainer `__: + +|maintainer-bodedra| + +This module is part of the `OCA/stock-logistics-warehouse `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/scrap_reason_code/__init__.py b/scrap_reason_code/__init__.py new file mode 100644 index 000000000..69f7babdf --- /dev/null +++ b/scrap_reason_code/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import models diff --git a/scrap_reason_code/__manifest__.py b/scrap_reason_code/__manifest__.py new file mode 100644 index 000000000..70fc6c9c4 --- /dev/null +++ b/scrap_reason_code/__manifest__.py @@ -0,0 +1,20 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Scrap Reason Code", + "version": "13.0.1.0.0", + "license": "AGPL-3", + "summary": "Reason code for scrapping", + "author": "Open Source Integrators, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/stock-logistics-warehouse", + "category": "Warehouse Management", + "depends": ["stock"], + "data": [ + "security/ir.model.access.csv", + "views/reason_code_view.xml", + "views/stock_scrap_views.xml", + "views/stock_move_views.xml", + ], + "maintainers": ["bodedra"], + "installable": True, +} diff --git a/scrap_reason_code/models/__init__.py b/scrap_reason_code/models/__init__.py new file mode 100644 index 000000000..b00bb13c9 --- /dev/null +++ b/scrap_reason_code/models/__init__.py @@ -0,0 +1,5 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import reason_code +from . import stock_move +from . import stock_scrap diff --git a/scrap_reason_code/models/reason_code.py b/scrap_reason_code/models/reason_code.py new file mode 100644 index 000000000..0ce5e797d --- /dev/null +++ b/scrap_reason_code/models/reason_code.py @@ -0,0 +1,18 @@ +# Copyright (C) 2019 IBM Corp. +# Copyright (C) 2019 Open Source Integrators +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class ReasonCode(models.Model): + _name = "reason.code" + _description = "Reason Code" + + name = fields.Char("Code", required=True) + description = fields.Text("Description") + location_id = fields.Many2one( + "stock.location", + string="Scrap Location", + domain="[('scrap_location', '=', True)]", + ) diff --git a/scrap_reason_code/models/stock_move.py b/scrap_reason_code/models/stock_move.py new file mode 100644 index 000000000..d5ed6c8dc --- /dev/null +++ b/scrap_reason_code/models/stock_move.py @@ -0,0 +1,11 @@ +# Copyright (C) 2019 IBM Corp. +# Copyright (C) 2019 Open Source Integrators +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class StockMove(models.Model): + _inherit = "stock.move" + + reason_code_id = fields.Many2one("reason.code", string="Reason code") diff --git a/scrap_reason_code/models/stock_scrap.py b/scrap_reason_code/models/stock_scrap.py new file mode 100644 index 000000000..c1de7d6af --- /dev/null +++ b/scrap_reason_code/models/stock_scrap.py @@ -0,0 +1,43 @@ +# Copyright (C) 2019 IBM Corp. +# Copyright (C) 2019 Open Source Integrators +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models + + +class StockScrap(models.Model): + _inherit = "stock.scrap" + + reason_code_id = fields.Many2one( + "reason.code", string="Reason Code", states={"done": [("readonly", True)]} + ) + scrap_location_id = fields.Many2one( + "stock.location", "Scrap Location", required=True, readonly=True + ) + + def _prepare_move_values(self): + res = super(StockScrap, self)._prepare_move_values() + res["reason_code_id"] = self.reason_code_id.id + return res + + @api.onchange("reason_code_id") + def _onchange_reason_code_id(self): + if self.reason_code_id.location_id: + self.scrap_location_id = self.reason_code_id.location_id + + def write(self, vals): + if "reason_code_id" in vals: + self.scrap_location_id = ( + self.env["reason.code"].browse(vals.get("reason_code_id")).location_id + ) + return super(StockScrap, self).write(vals) + + @api.model + def create(self, vals): + if "reason_code_id" in vals: + vals["scrap_location_id"] = ( + self.env["reason.code"] + .browse(vals.get("reason_code_id")) + .location_id.id + ) + return super(StockScrap, self).create(vals) diff --git a/scrap_reason_code/readme/CONFIGURE.rst b/scrap_reason_code/readme/CONFIGURE.rst new file mode 100644 index 000000000..e69de29bb diff --git a/scrap_reason_code/readme/CONTRIBUTORS.rst b/scrap_reason_code/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..944b4defa --- /dev/null +++ b/scrap_reason_code/readme/CONTRIBUTORS.rst @@ -0,0 +1,4 @@ +* Michael Allen +* Bhavesh Odedra +* Balaji Kannan +* Serpent Consulting Services Pvt. Ltd. diff --git a/scrap_reason_code/readme/CREDITS.rst b/scrap_reason_code/readme/CREDITS.rst new file mode 100644 index 000000000..8209266d9 --- /dev/null +++ b/scrap_reason_code/readme/CREDITS.rst @@ -0,0 +1,3 @@ +The development of this module has been financially supported by: + +* Open Source Integrators diff --git a/scrap_reason_code/readme/DESCRIPTION.rst b/scrap_reason_code/readme/DESCRIPTION.rst new file mode 100644 index 000000000..6905032da --- /dev/null +++ b/scrap_reason_code/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +Adds a reason code for scrapping operations and an interface for the user +to create scrap codes diff --git a/scrap_reason_code/readme/ROADMAP.rst b/scrap_reason_code/readme/ROADMAP.rst new file mode 100644 index 000000000..e69de29bb diff --git a/scrap_reason_code/readme/USAGE.rst b/scrap_reason_code/readme/USAGE.rst new file mode 100644 index 000000000..d7beb75ef --- /dev/null +++ b/scrap_reason_code/readme/USAGE.rst @@ -0,0 +1,4 @@ +In the Inventory module, open the Configuration menu and select Scrap Reason Codes. +Create the required scrap reason codes. Under Operations, select Scrap. Click the +create button to create a new scrap order. You will see a reason code field on the +scrap form which will allow you to select any of the scrap codes you created previously. diff --git a/scrap_reason_code/security/ir.model.access.csv b/scrap_reason_code/security/ir.model.access.csv new file mode 100644 index 000000000..373f4aa55 --- /dev/null +++ b/scrap_reason_code/security/ir.model.access.csv @@ -0,0 +1,4 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_reason_code_user,reason.code,model_reason_code,base.group_user,1,0,0,0 +access_reason_code_stock_user,reason.code,model_reason_code,stock.group_stock_user,1,1,0,0 +access_reason_code_stock_manager,reason.code,model_reason_code,stock.group_stock_manager,1,1,1,1 diff --git a/scrap_reason_code/static/description/icon.png b/scrap_reason_code/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/scrap_reason_code/static/description/icon.png differ diff --git a/scrap_reason_code/static/description/index.html b/scrap_reason_code/static/description/index.html new file mode 100644 index 000000000..19bf18b8f --- /dev/null +++ b/scrap_reason_code/static/description/index.html @@ -0,0 +1,418 @@ + + + + + + +Scrap Reason Code + + + +
+

Scrap Reason Code

+ + +

Beta License: AGPL-3 OCA/stock-logistics-warehouse Translate me on Weblate Try me on Runbot

+

Adds a reason code for scrapping operations and an interface for the user +to create scrap codes

+

Table of contents

+ +
+

Usage

+

In the Inventory module, open the Configuration menu and select Scrap Reason Codes. +Create the required scrap reason codes. Under Operations, select Scrap. Click the +create button to create a new scrap order. You will see a reason code field on the +scrap form which will allow you to select any of the scrap codes you created previously.

+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Open Source Integrators
  • +
+
+ +
+

Other credits

+

The development of this module has been financially supported by:

+
    +
  • Open Source Integrators
  • +
+
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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.

+

Current maintainer:

+

bodedra

+

This module is part of the OCA/stock-logistics-warehouse project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/scrap_reason_code/tests/__init__.py b/scrap_reason_code/tests/__init__.py new file mode 100644 index 000000000..29507951a --- /dev/null +++ b/scrap_reason_code/tests/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_scrap_reason_code diff --git a/scrap_reason_code/tests/test_scrap_reason_code.py b/scrap_reason_code/tests/test_scrap_reason_code.py new file mode 100644 index 000000000..a90507c30 --- /dev/null +++ b/scrap_reason_code/tests/test_scrap_reason_code.py @@ -0,0 +1,102 @@ +# Copyright (C) 2019 IBM Corp. +# Copyright (C) 2019 Open Source Integrators +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.tests.common import TransactionCase + + +class StockScrap(TransactionCase): + def setUp(self): + super(StockScrap, self).setUp() + + self.stock_location = self.env.ref("stock.stock_location_stock") + self.customer_location = self.env.ref("stock.stock_location_customers") + stock_location_locations_virtual = self.env["stock.location"].create( + {"name": "Virtual Locations", "usage": "view", "posz": 1} + ) + self.scrapped_location = self.env["stock.location"].create( + { + "name": "Scrapped", + "location_id": stock_location_locations_virtual.id, + "scrap_location": True, + "usage": "inventory", + } + ) + + self.scrap_product = self.env["product.product"].create( + { + "name": "Scrap Product A", + "type": "product", + "categ_id": self.env.ref("product.product_category_all").id, + } + ) + + self.reason_code = self.env["reason.code"].create( + { + "name": "DM300", + "description": "Product is damage", + "location_id": self.scrapped_location.id, + } + ) + + self.uom_unit = self.env.ref("uom.product_uom_unit") + + def test_scrap_reason_code(self): + """Scrap the product of a picking. Then modify the + done linked stock move and ensure the scrap quantity is also + updated and verify scrap reason code + """ + self.env["stock.quant"]._update_available_quantity( + self.scrap_product, self.stock_location, 10 + ) + partner = self.env["res.partner"].create({"name": "BOdedra"}) + picking = self.env["stock.picking"].create( + { + "name": "A single picking with one move to scrap", + "location_id": self.stock_location.id, + "location_dest_id": self.customer_location.id, + "partner_id": partner.id, + "picking_type_id": self.env.ref("stock.picking_type_out").id, + } + ) + move1 = self.env["stock.move"].create( + { + "name": "A move to confirm and scrap its product", + "location_id": self.stock_location.id, + "location_dest_id": self.customer_location.id, + "product_id": self.scrap_product.id, + "product_uom": self.uom_unit.id, + "product_uom_qty": 1.0, + "picking_id": picking.id, + } + ) + move1._action_confirm() + + self.assertEqual(move1.state, "confirmed") + scrap = self.env["stock.scrap"].create( + { + "product_id": self.scrap_product.id, + "product_uom_id": self.scrap_product.uom_id.id, + "scrap_qty": 5, + "picking_id": picking.id, + "reason_code_id": self.reason_code.id, + } + ) + scrap._onchange_reason_code_id() + scrap.do_scrap() + self.assertEqual(len(picking.move_lines), 2) + scrapped_move = picking.move_lines.filtered(lambda m: m.state == "done") + self.assertTrue(scrapped_move, "No scrapped move created.") + self.assertEqual( + scrapped_move.scrap_ids.ids, [scrap.id], "Wrong scrap linked to the move." + ) + self.assertEqual( + scrap.scrap_qty, + 5, + "Scrap quantity has been modified and is not " "correct anymore.", + ) + move = scrap.move_id + self.assertEqual(move.reason_code_id.id, self.reason_code.id) + + scrapped_move.quantity_done = 8 + self.assertEqual(scrap.scrap_qty, 8, "Scrap quantity is not updated.") diff --git a/scrap_reason_code/views/reason_code_view.xml b/scrap_reason_code/views/reason_code_view.xml new file mode 100644 index 000000000..3c457a87c --- /dev/null +++ b/scrap_reason_code/views/reason_code_view.xml @@ -0,0 +1,48 @@ + + + + + + + reason.code.form + reason.code + +
+ + + + + + + + + +
+
+
+ + + reason.code.list + reason.code + + + + + + + + + + + Scrap Reason Codes + reason.code + tree,form + + + +
diff --git a/scrap_reason_code/views/stock_move_views.xml b/scrap_reason_code/views/stock_move_views.xml new file mode 100644 index 000000000..fd7e18e75 --- /dev/null +++ b/scrap_reason_code/views/stock_move_views.xml @@ -0,0 +1,18 @@ + + + + + stock.reason.code.form + stock.move + + + + + + + + + + + diff --git a/scrap_reason_code/views/stock_scrap_views.xml b/scrap_reason_code/views/stock_scrap_views.xml new file mode 100644 index 000000000..8a0706087 --- /dev/null +++ b/scrap_reason_code/views/stock_scrap_views.xml @@ -0,0 +1,38 @@ + + + + + + stock.scrap.form.reason.code + stock.scrap + + + + + + + + + + stock.scrap.tree.reason.code + stock.scrap + + + + + + + + + + stock.scrap.form2.reason.code + stock.scrap + + + + + + + +