diff --git a/delivery_input_barcode_gs1/README.rst b/delivery_input_barcode_gs1/README.rst new file mode 100644 index 000000000000..5141e05327e9 --- /dev/null +++ b/delivery_input_barcode_gs1/README.rst @@ -0,0 +1,112 @@ +========================== +Delivery Input Barcode GS1 +========================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:3dac8f265bd93db4c2231d7849b5fec1da1f11ecf1f4e91a500d5f71311ff210 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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--barcode-lightgray.png?logo=github + :target: https://github.com/OCA/stock-logistics-barcode/tree/15.0/delivery_input_barcode_gs1 + :alt: OCA/stock-logistics-barcode +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/stock-logistics-barcode-15-0/stock-logistics-barcode-15-0-delivery_input_barcode_gs1 + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-barcode&target_branch=15.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module builds on delivery_input_barcode, making use of the full barcode information given by a barcode/datamatrix device. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +Optionnaly you may prevent to create unknown lot if you add this code in your custom code. + + +.. code-block:: python + + class StockMoveLine(models.Model): + _inherit = "stock.move.line" + + def _create_unknown_lot(self, barcode): + return False + +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 to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Grupo + +Contributors +~~~~~~~~~~~~ + +* Akretion + + - David BEAL + +* PyTech SRL : + + - Alessandro Uffreduzzi + +* Ooops404 : + + - Francesco Foresti + +* Grupo Isonor + + - David Palanca + +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-neitherkx| image:: https://github.com/neitherkx.png?size=40px + :target: https://github.com/neitherkx + :alt: neitherkx + +Current `maintainer `__: + +|maintainer-neitherkx| + +This module is part of the `OCA/stock-logistics-barcode `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/delivery_input_barcode_gs1/__init__.py b/delivery_input_barcode_gs1/__init__.py new file mode 100644 index 000000000000..0650744f6bc6 --- /dev/null +++ b/delivery_input_barcode_gs1/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/delivery_input_barcode_gs1/__manifest__.py b/delivery_input_barcode_gs1/__manifest__.py new file mode 100644 index 000000000000..de997c7805ae --- /dev/null +++ b/delivery_input_barcode_gs1/__manifest__.py @@ -0,0 +1,22 @@ +# Copyright (C) 2022 Akretion +# Copyright (C) 2024 Grupo Isonor +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). + +{ + "name": "Delivery Input Barcode GS1", + "version": "15.0.1.0.0", + "category": "Tools", + "website": "https://github.com/OCA/stock-logistics-barcode", + "author": "Grupo, Odoo Community Association (OCA)", + "license": "AGPL-3", + "installable": True, + "summary": "Add Move line with barcode using GS1 barcodes", + "maintainers": ["neitherkx"], + "depends": [ + "base_gs1_barcode", + "delivery_input_barcode", + "product_expiry", + ], + "data": [], + "demo": [], +} diff --git a/delivery_input_barcode_gs1/i18n/delivery_input_barcode_gs1.pot b/delivery_input_barcode_gs1/i18n/delivery_input_barcode_gs1.pot new file mode 100644 index 000000000000..3c5814e0c24d --- /dev/null +++ b/delivery_input_barcode_gs1/i18n/delivery_input_barcode_gs1.pot @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * delivery_input_barcode_gs1 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-30 07:40+0000\n" +"PO-Revision-Date: 2024-08-30 07:40+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: delivery_input_barcode_gs1 +#: code:addons/delivery_input_barcode_gs1/models/stock_move.py:0 +#, python-format +msgid "Decoded barcode %s doesn't include a valid segment for GTIN" +msgstr "" + +#. module: delivery_input_barcode_gs1 +#: model:ir.model,name:delivery_input_barcode_gs1.model_stock_move +msgid "Stock Move" +msgstr "" diff --git a/delivery_input_barcode_gs1/models/__init__.py b/delivery_input_barcode_gs1/models/__init__.py new file mode 100644 index 000000000000..6bda2d2428e0 --- /dev/null +++ b/delivery_input_barcode_gs1/models/__init__.py @@ -0,0 +1 @@ +from . import stock_move diff --git a/delivery_input_barcode_gs1/models/stock_move.py b/delivery_input_barcode_gs1/models/stock_move.py new file mode 100644 index 000000000000..8d79a4d7de3d --- /dev/null +++ b/delivery_input_barcode_gs1/models/stock_move.py @@ -0,0 +1,58 @@ +# copyright 2022 David BEAL @ Akretion +# copyright 2024 David Palanca @ Grupo Isonor +from odoo import _, api, models +from odoo.exceptions import UserError + + +class StockMove(models.Model): + _inherit = "stock.move" + + @api.model + def _decode_barcode(self, raw_barcode): + """ + res => + { + "01": "03400933816759", # GTIN + "17": "2014-05-31", # expiry date + "10": "B04059A", # lot number + "310": 0.06385, # weight + "15": "2014-05-01", # delivery date + } + """ + raw_barcode, barcode_dict = super()._decode_barcode(raw_barcode) + barcode_dict = self.env["gs1_barcode"].decode(raw_barcode) + if not barcode_dict.get("01"): + raise UserError( + _("Decoded barcode %s doesn't include a valid segment for GTIN") + % barcode_dict + ) + return barcode_dict["01"], barcode_dict + + def _populate_vals(self, product, barcode_dict): + vals = super()._populate_vals(product, barcode_dict) + if barcode_dict.get("10") and "lot_id" in self._fields: + lot = self.env["stock.production.lot"].search( + [("name", "=", barcode_dict["10"]), ("product_id", "=", product.id)] + ) + if not lot: + lot = self._create_unknown_lot(barcode_dict, product) + if lot: + # _create_unknown_lot may be overriden to not return lot + vals["lot_id"] = lot.id + return vals + + def _create_unknown_lot(self, barcode_dict, product): + """Inherit to implement your own scenario creation + i.e. + raise UserError(_("No lot found matching this barcode %s" % barcode)) + or + return False + """ + company_id = self.env.context.get("company_id") or self.env.company.id + lot_vals = { + "name": barcode_dict["10"], + "expiration_date": barcode_dict["17"], + "product_id": product.id, + "company_id": company_id, + } + return self.env["stock.production.lot"].create(lot_vals) diff --git a/delivery_input_barcode_gs1/readme/CONFIGURE.rst b/delivery_input_barcode_gs1/readme/CONFIGURE.rst new file mode 100644 index 000000000000..a1fa2b91595a --- /dev/null +++ b/delivery_input_barcode_gs1/readme/CONFIGURE.rst @@ -0,0 +1,10 @@ +Optionnaly you may prevent to create unknown lot if you add this code in your custom code. + + +.. code-block:: python + + class StockMoveLine(models.Model): + _inherit = "stock.move.line" + + def _create_unknown_lot(self, barcode): + return False diff --git a/delivery_input_barcode_gs1/readme/CONTRIBUTORS.rst b/delivery_input_barcode_gs1/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000000..5e42ffe2c8f1 --- /dev/null +++ b/delivery_input_barcode_gs1/readme/CONTRIBUTORS.rst @@ -0,0 +1,15 @@ +* Akretion + + - David BEAL + +* PyTech SRL : + + - Alessandro Uffreduzzi + +* Ooops404 : + + - Francesco Foresti + +* Grupo Isonor + + - David Palanca diff --git a/delivery_input_barcode_gs1/readme/DESCRIPTION.rst b/delivery_input_barcode_gs1/readme/DESCRIPTION.rst new file mode 100644 index 000000000000..219f1ddebff4 --- /dev/null +++ b/delivery_input_barcode_gs1/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module builds on delivery_input_barcode, making use of the full barcode information given by a barcode/datamatrix device. diff --git a/delivery_input_barcode_gs1/static/description/index.html b/delivery_input_barcode_gs1/static/description/index.html new file mode 100644 index 000000000000..b4057b8cd2e5 --- /dev/null +++ b/delivery_input_barcode_gs1/static/description/index.html @@ -0,0 +1,464 @@ + + + + + +Delivery Input Barcode GS1 + + + +
+

Delivery Input Barcode GS1

+ + +

Beta License: AGPL-3 OCA/stock-logistics-barcode Translate me on Weblate Try me on Runboat

+

This module builds on delivery_input_barcode, making use of the full barcode information given by a barcode/datamatrix device.

+

Table of contents

+ +
+

Configuration

+

Optionnaly you may prevent to create unknown lot if you add this code in your custom code.

+
+class StockMoveLine(models.Model):
+    _inherit = "stock.move.line"
+
+    def _create_unknown_lot(self, barcode):
+        return False
+
+
+
+

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 to smash it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Grupo
  • +
+
+
+

Contributors

+ +
+
+

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:

+

neitherkx

+

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

+

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

+
+
+
+ + diff --git a/delivery_input_barcode_gs1/tests/__init__.py b/delivery_input_barcode_gs1/tests/__init__.py new file mode 100644 index 000000000000..baae36e3a3c4 --- /dev/null +++ b/delivery_input_barcode_gs1/tests/__init__.py @@ -0,0 +1 @@ +from . import test_delivery_input_barcode_gs1 diff --git a/delivery_input_barcode_gs1/tests/test_delivery_input_barcode_gs1.py b/delivery_input_barcode_gs1/tests/test_delivery_input_barcode_gs1.py new file mode 100644 index 000000000000..c5584de9595b --- /dev/null +++ b/delivery_input_barcode_gs1/tests/test_delivery_input_barcode_gs1.py @@ -0,0 +1,33 @@ +# © 2022 David BEAL @ Akretion +# © 2024 David Palanca @ Grupo Isonor +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo.tests import TransactionCase + + +class Test(TransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.stock_location = cls.env.ref("stock.stock_location_stock") + + def test_input_line(self): + self.env = self.env(context=dict(self.env.context, tracking_disable=True)) + barcode = "01034009338167591714050010B04059A\x1d310500638515140501" + product = self.env["product.product"].create( + { + "name": "barcode test", + "barcode": barcode[2:16], + } + ) + picking_stock = self.env["stock.picking"].create( + { + "location_id": self.stock_location.id, + "location_dest_id": self.stock_location.id, + "picking_type_id": self.env.ref("stock.picking_type_internal").id, + } + ) + + picking_stock.action_move_barcode(barcode) + self.assertIn(product, picking_stock.move_lines.mapped("product_id")) + #move_ids_without_package diff --git a/setup/delivery_input_barcode/odoo/addons/delivery_input_barcode b/setup/delivery_input_barcode/odoo/addons/delivery_input_barcode new file mode 120000 index 000000000000..0d94edd33be4 --- /dev/null +++ b/setup/delivery_input_barcode/odoo/addons/delivery_input_barcode @@ -0,0 +1 @@ +../../../../delivery_input_barcode \ No newline at end of file diff --git a/setup/delivery_input_barcode/setup.py b/setup/delivery_input_barcode/setup.py new file mode 100644 index 000000000000..28c57bb64031 --- /dev/null +++ b/setup/delivery_input_barcode/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/setup/delivery_input_barcode_gs1/odoo/addons/delivery_input_barcode_gs1 b/setup/delivery_input_barcode_gs1/odoo/addons/delivery_input_barcode_gs1 new file mode 120000 index 000000000000..ceeea321827d --- /dev/null +++ b/setup/delivery_input_barcode_gs1/odoo/addons/delivery_input_barcode_gs1 @@ -0,0 +1 @@ +../../../../delivery_input_barcode_gs1 \ No newline at end of file diff --git a/setup/delivery_input_barcode_gs1/setup.py b/setup/delivery_input_barcode_gs1/setup.py new file mode 100644 index 000000000000..28c57bb64031 --- /dev/null +++ b/setup/delivery_input_barcode_gs1/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)