From 4d9364a4a54211191d0a72c296e530604836040c Mon Sep 17 00:00:00 2001 From: Eric Antones Date: Fri, 6 Mar 2026 00:53:50 +0100 Subject: [PATCH] [ADD] stock_picking_signature --- .../odoo/addons/stock_picking_signature | 1 + setup/stock_picking_signature/setup.py | 6 + stock_picking_signature/README.rst | 104 ++++ stock_picking_signature/__init__.py | 1 + stock_picking_signature/__manifest__.py | 24 + stock_picking_signature/i18n/ca.po | 48 ++ stock_picking_signature/i18n/es.po | 48 ++ stock_picking_signature/models/__init__.py | 2 + .../models/stock_picking.py | 47 ++ .../models/stock_picking_type.py | 13 + .../readme/CONTRIBUTORS.rst | 3 + .../readme/DESCRIPTION.rst | 16 + stock_picking_signature/readme/ROADMAP.rst | 6 + .../report/report_deliveryslip.xml | 19 + .../report/report_stockpicking_operations.xml | 24 + .../static/description/icon.png | Bin 0 -> 6342 bytes .../static/description/index.html | 460 ++++++++++++++++++ .../views/stock_picking_type_views.xml | 15 + .../views/stock_picking_views.xml | 70 +++ 19 files changed, 907 insertions(+) create mode 120000 setup/stock_picking_signature/odoo/addons/stock_picking_signature create mode 100644 setup/stock_picking_signature/setup.py create mode 100644 stock_picking_signature/README.rst create mode 100644 stock_picking_signature/__init__.py create mode 100644 stock_picking_signature/__manifest__.py create mode 100644 stock_picking_signature/i18n/ca.po create mode 100644 stock_picking_signature/i18n/es.po create mode 100644 stock_picking_signature/models/__init__.py create mode 100644 stock_picking_signature/models/stock_picking.py create mode 100644 stock_picking_signature/models/stock_picking_type.py create mode 100644 stock_picking_signature/readme/CONTRIBUTORS.rst create mode 100644 stock_picking_signature/readme/DESCRIPTION.rst create mode 100644 stock_picking_signature/readme/ROADMAP.rst create mode 100644 stock_picking_signature/report/report_deliveryslip.xml create mode 100644 stock_picking_signature/report/report_stockpicking_operations.xml create mode 100644 stock_picking_signature/static/description/icon.png create mode 100644 stock_picking_signature/static/description/index.html create mode 100644 stock_picking_signature/views/stock_picking_type_views.xml create mode 100644 stock_picking_signature/views/stock_picking_views.xml diff --git a/setup/stock_picking_signature/odoo/addons/stock_picking_signature b/setup/stock_picking_signature/odoo/addons/stock_picking_signature new file mode 120000 index 000000000..93a4ce9bb --- /dev/null +++ b/setup/stock_picking_signature/odoo/addons/stock_picking_signature @@ -0,0 +1 @@ +../../../../stock_picking_signature \ No newline at end of file diff --git a/setup/stock_picking_signature/setup.py b/setup/stock_picking_signature/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_picking_signature/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/stock_picking_signature/README.rst b/stock_picking_signature/README.rst new file mode 100644 index 000000000..cea0f63ad --- /dev/null +++ b/stock_picking_signature/README.rst @@ -0,0 +1,104 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + +======================= +Stock Picking Signature +======================= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:24005c73b96dfbcba449a2d4db82c8ba8652b2ec2d38310e2bb6d1aebb242acd + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png + :target: https://odoo-community.org/page/development-status + :alt: Alpha +.. |badge2| image:: https://img.shields.io/badge/license-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-nuobit%2Fodoo--addons-lightgray.png?logo=github + :target: https://github.com/nuobit/odoo-addons/tree/16.0/stock_picking_signature + :alt: nuobit/odoo-addons + +|badge1| |badge2| |badge3| + +This module extends the stock picking signature functionality in Odoo 16. + +While Odoo 16 already includes a signature field on pickings, it is limited to outgoing +deliveries only and lacks metadata tracking. This module adds: + +* **Configurable per picking type**: A ``Require Signature`` option on operation types + lets administrators enable signature requirements for any type of transfer (receipts, + deliveries, internal transfers). +* **Signature metadata**: ``Signed By`` and ``Signed On`` fields are automatically + populated when a signature is captured. +* **Validation enforcement**: Transfers with a required signature cannot be validated + without one. +* **Extended reports**: Signature block added to the Picking Operations report in + addition to the existing Delivery Slip report. +* **Signature tab**: A dedicated "Signature" notebook tab on the picking form shows + signature details. + +.. IMPORTANT:: + This is an alpha version, the data model and design can change at any time without warning. + Only for development or testing purpose, do not use in production. + `More details on development status `_ + +**Table of contents** + +.. contents:: + :local: + +Known issues / Roadmap +====================== + +* Integration with ``sign_oca`` (`OCA/sign `_) for PDF + document signing workflows on stock pickings. +* Integration with ``stock_picking_portal`` + (`OCA/stock-logistics-workflow `_) + for portal-based signature capture, allowing external partners to sign pickings + directly from the portal. + +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 +~~~~~~~ + +* NuoBiT Solutions SL + +Contributors +~~~~~~~~~~~~ + +* `NuoBiT `__: + + * Eric Antones + +Maintainers +~~~~~~~~~~~ + +.. |maintainer-eantones| image:: https://github.com/eantones.png?size=40px + :target: https://github.com/eantones + :alt: eantones + +Current maintainer: + +|maintainer-eantones| + +This module is part of the `nuobit/odoo-addons `_ project on GitHub. + +You are welcome to contribute. diff --git a/stock_picking_signature/__init__.py b/stock_picking_signature/__init__.py new file mode 100644 index 000000000..0650744f6 --- /dev/null +++ b/stock_picking_signature/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/stock_picking_signature/__manifest__.py b/stock_picking_signature/__manifest__.py new file mode 100644 index 000000000..d9c1eac71 --- /dev/null +++ b/stock_picking_signature/__manifest__.py @@ -0,0 +1,24 @@ +# Copyright 2026 NuoBiT Solutions SL - Eric Antones +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "Stock Picking Signature", + "summary": "Configurable signature requirement per picking type", + "author": "NuoBiT Solutions SL", + "maintainers": ["eantones"], + "category": "Warehouse", + "development_status": "Alpha", + "version": "16.0.1.0.0", + "license": "AGPL-3", + "website": "https://github.com/nuobit/odoo-addons", + "depends": [ + "stock", + ], + "data": [ + "views/stock_picking_type_views.xml", + "views/stock_picking_views.xml", + "report/report_deliveryslip.xml", + "report/report_stockpicking_operations.xml", + ], + "installable": True, +} diff --git a/stock_picking_signature/i18n/ca.po b/stock_picking_signature/i18n/ca.po new file mode 100644 index 000000000..afdcc5e60 --- /dev/null +++ b/stock_picking_signature/i18n/ca.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_picking_signature +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_picking_signature +#: model:ir.model.fields,field_description:stock_picking_signature.field_stock_picking__require_signature +#: model:ir.model.fields,field_description:stock_picking_signature.field_stock_picking_type__require_signature +msgid "Require Signature" +msgstr "Requerir signatura" + +#. module: stock_picking_signature +#: model:ir.model.fields,help:stock_picking_signature.field_stock_picking_type__require_signature +msgid "If enabled, a signature will be required to validate transfers of this operation type." +msgstr "Si s'activa, es requerirà una signatura per validar les transferències d'aquest tipus d'operació." + +#. module: stock_picking_signature +#: model:ir.model.fields,field_description:stock_picking_signature.field_stock_picking__signed_by +msgid "Signed By" +msgstr "Signat per" + +#. module: stock_picking_signature +#: model:ir.model.fields,field_description:stock_picking_signature.field_stock_picking__signed_on +msgid "Signed On" +msgstr "Signat el" + +#. module: stock_picking_signature +#: model_terms:ir.ui.view,arch_db:stock_picking_signature.report_picking +#: model_terms:ir.ui.view,arch_db:stock_picking_signature.view_picking_form +msgid "Signature" +msgstr "Signatura" + +#. module: stock_picking_signature +#: code:addons/stock_picking_signature/models/stock_picking.py:0 +#, python-format +msgid "The following transfers require a signature before validation:\n%s" +msgstr "Les transferències següents requereixen una signatura abans de la validació:\n%s" diff --git a/stock_picking_signature/i18n/es.po b/stock_picking_signature/i18n/es.po new file mode 100644 index 000000000..2a2af1f19 --- /dev/null +++ b/stock_picking_signature/i18n/es.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_picking_signature +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_picking_signature +#: model:ir.model.fields,field_description:stock_picking_signature.field_stock_picking__require_signature +#: model:ir.model.fields,field_description:stock_picking_signature.field_stock_picking_type__require_signature +msgid "Require Signature" +msgstr "Requerir firma" + +#. module: stock_picking_signature +#: model:ir.model.fields,help:stock_picking_signature.field_stock_picking_type__require_signature +msgid "If enabled, a signature will be required to validate transfers of this operation type." +msgstr "Si se activa, se requerirá una firma para validar las transferencias de este tipo de operación." + +#. module: stock_picking_signature +#: model:ir.model.fields,field_description:stock_picking_signature.field_stock_picking__signed_by +msgid "Signed By" +msgstr "Firmado por" + +#. module: stock_picking_signature +#: model:ir.model.fields,field_description:stock_picking_signature.field_stock_picking__signed_on +msgid "Signed On" +msgstr "Firmado el" + +#. module: stock_picking_signature +#: model_terms:ir.ui.view,arch_db:stock_picking_signature.report_picking +#: model_terms:ir.ui.view,arch_db:stock_picking_signature.view_picking_form +msgid "Signature" +msgstr "Firma" + +#. module: stock_picking_signature +#: code:addons/stock_picking_signature/models/stock_picking.py:0 +#, python-format +msgid "The following transfers require a signature before validation:\n%s" +msgstr "Las transferencias siguientes requieren una firma antes de la validación:\n%s" diff --git a/stock_picking_signature/models/__init__.py b/stock_picking_signature/models/__init__.py new file mode 100644 index 000000000..dae0bb2ef --- /dev/null +++ b/stock_picking_signature/models/__init__.py @@ -0,0 +1,2 @@ +from . import stock_picking +from . import stock_picking_type diff --git a/stock_picking_signature/models/stock_picking.py b/stock_picking_signature/models/stock_picking.py new file mode 100644 index 000000000..51e430e38 --- /dev/null +++ b/stock_picking_signature/models/stock_picking.py @@ -0,0 +1,47 @@ +# Copyright 2026 NuoBiT Solutions SL - Eric Antones +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import _, fields, models +from odoo.exceptions import UserError + + +class StockPicking(models.Model): + _inherit = "stock.picking" + + require_signature = fields.Boolean( + related="picking_type_id.require_signature", + ) + signed_by = fields.Char( + copy=False, + ) + signed_on = fields.Datetime( + copy=False, + ) + + def write(self, vals): + res = super().write(vals) + if vals.get("signature"): + now = fields.Datetime.now() + for picking in self: + sign_vals = {} + if not picking.signed_by and picking.partner_id: + sign_vals["signed_by"] = picking.partner_id.name + if not picking.signed_on: + sign_vals["signed_on"] = now + if sign_vals: + super(StockPicking, picking).write(sign_vals) + return res + + def button_validate(self): + pickings_require_sign = self.filtered( + lambda p: p.require_signature and not p.signature + ) + if pickings_require_sign: + raise UserError( + _( + "The following transfers require a signature" + " before validation:\n%s", + "\n".join(pickings_require_sign.mapped("name")), + ) + ) + return super().button_validate() diff --git a/stock_picking_signature/models/stock_picking_type.py b/stock_picking_signature/models/stock_picking_type.py new file mode 100644 index 000000000..aac0deedf --- /dev/null +++ b/stock_picking_signature/models/stock_picking_type.py @@ -0,0 +1,13 @@ +# Copyright 2026 NuoBiT Solutions SL - Eric Antones +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class StockPickingType(models.Model): + _inherit = "stock.picking.type" + + require_signature = fields.Boolean( + help="If enabled, a signature will be required to validate " + "transfers of this operation type.", + ) diff --git a/stock_picking_signature/readme/CONTRIBUTORS.rst b/stock_picking_signature/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..866096fcb --- /dev/null +++ b/stock_picking_signature/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* `NuoBiT `__: + + * Eric Antones diff --git a/stock_picking_signature/readme/DESCRIPTION.rst b/stock_picking_signature/readme/DESCRIPTION.rst new file mode 100644 index 000000000..ee6cb9e63 --- /dev/null +++ b/stock_picking_signature/readme/DESCRIPTION.rst @@ -0,0 +1,16 @@ +This module extends the stock picking signature functionality in Odoo 16. + +While Odoo 16 already includes a signature field on pickings, it is limited to outgoing +deliveries only and lacks metadata tracking. This module adds: + +* **Configurable per picking type**: A ``Require Signature`` option on operation types + lets administrators enable signature requirements for any type of transfer (receipts, + deliveries, internal transfers). +* **Signature metadata**: ``Signed By`` and ``Signed On`` fields are automatically + populated when a signature is captured. +* **Validation enforcement**: Transfers with a required signature cannot be validated + without one. +* **Extended reports**: Signature block added to the Picking Operations report in + addition to the existing Delivery Slip report. +* **Signature tab**: A dedicated "Signature" notebook tab on the picking form shows + signature details. diff --git a/stock_picking_signature/readme/ROADMAP.rst b/stock_picking_signature/readme/ROADMAP.rst new file mode 100644 index 000000000..dbaa8a002 --- /dev/null +++ b/stock_picking_signature/readme/ROADMAP.rst @@ -0,0 +1,6 @@ +* Integration with ``sign_oca`` (`OCA/sign `_) for PDF + document signing workflows on stock pickings. +* Integration with ``stock_picking_portal`` + (`OCA/stock-logistics-workflow `_) + for portal-based signature capture, allowing external partners to sign pickings + directly from the portal. diff --git a/stock_picking_signature/report/report_deliveryslip.xml b/stock_picking_signature/report/report_deliveryslip.xml new file mode 100644 index 000000000..1187cc4aa --- /dev/null +++ b/stock_picking_signature/report/report_deliveryslip.xml @@ -0,0 +1,19 @@ + + + + + diff --git a/stock_picking_signature/report/report_stockpicking_operations.xml b/stock_picking_signature/report/report_stockpicking_operations.xml new file mode 100644 index 000000000..6b190b25f --- /dev/null +++ b/stock_picking_signature/report/report_stockpicking_operations.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/stock_picking_signature/static/description/icon.png b/stock_picking_signature/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..1cd641e792c30455187ca30940bc0f329ce8bbb0 GIT binary patch literal 6342 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 literal 0 HcmV?d00001 diff --git a/stock_picking_signature/static/description/index.html b/stock_picking_signature/static/description/index.html new file mode 100644 index 000000000..10e1f8dfd --- /dev/null +++ b/stock_picking_signature/static/description/index.html @@ -0,0 +1,460 @@ + + + + + +README.rst + + + +
+ + + +Odoo Community Association + +
+

Stock Picking Signature

+ +

Alpha License: AGPL-3 nuobit/odoo-addons

+

This module extends the stock picking signature functionality in Odoo 16.

+

While Odoo 16 already includes a signature field on pickings, it is limited to outgoing +deliveries only and lacks metadata tracking. This module adds:

+
    +
  • Configurable per picking type: A Require Signature option on operation types +lets administrators enable signature requirements for any type of transfer (receipts, +deliveries, internal transfers).
  • +
  • Signature metadata: Signed By and Signed On fields are automatically +populated when a signature is captured.
  • +
  • Validation enforcement: Transfers with a required signature cannot be validated +without one.
  • +
  • Extended reports: Signature block added to the Picking Operations report in +addition to the existing Delivery Slip report.
  • +
  • Signature tab: A dedicated “Signature” notebook tab on the picking form shows +signature details.
  • +
+
+

Important

+

This is an alpha version, the data model and design can change at any time without warning. +Only for development or testing purpose, do not use in production. +More details on development status

+
+

Table of contents

+ +
+

Known issues / Roadmap

+
    +
  • Integration with sign_oca (OCA/sign) for PDF +document signing workflows on stock pickings.
  • +
  • Integration with stock_picking_portal +(OCA/stock-logistics-workflow) +for portal-based signature capture, allowing external partners to sign pickings +directly from the portal.
  • +
+
+
+

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

+
    +
  • NuoBiT Solutions SL
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

Current maintainer:

+

eantones

+

This module is part of the nuobit/odoo-addons project on GitHub.

+

You are welcome to contribute.

+
+
+
+
+ + diff --git a/stock_picking_signature/views/stock_picking_type_views.xml b/stock_picking_signature/views/stock_picking_type_views.xml new file mode 100644 index 000000000..87e633940 --- /dev/null +++ b/stock_picking_signature/views/stock_picking_type_views.xml @@ -0,0 +1,15 @@ + + + + + stock.picking.type.form.inherit.signature + stock.picking.type + + + + + + + + diff --git a/stock_picking_signature/views/stock_picking_views.xml b/stock_picking_signature/views/stock_picking_views.xml new file mode 100644 index 000000000..373cec11c --- /dev/null +++ b/stock_picking_signature/views/stock_picking_views.xml @@ -0,0 +1,70 @@ + + + + + stock.picking.form.inherit.signature + stock.picking + + + + + + + + + + { + 'invisible': ['|', '|', + ('id', '=', False), + ('require_signature', '=', False), + ('state', '!=', 'done') + ] + } + + + + + + { + 'invisible': ['|', '|', + ('id', '=', False), + ('require_signature', '=', False), + ('state', 'not in', ['confirmed', 'assigned']) + ] + } + + + + + + + + + + + + + + +