From 965bb43a9579eb432c745cc5d5f32904eb4303a5 Mon Sep 17 00:00:00 2001 From: ripil-odoo Date: Mon, 1 Jun 2026 17:51:23 +0530 Subject: [PATCH] [ADD] stock_picking: Repeat fields on Picking Operations Report PDF Ensure original header fields are consistently visible across multiple pages of the Picking Operations PDF report when the table extends to a new page by using tags. --- stock_picking/__init__.py | 0 stock_picking/__manifest__.py | 14 +++++ .../views/report_stockpicking_operations.xml | 61 +++++++++++++++++++ 3 files changed, 75 insertions(+) create mode 100644 stock_picking/__init__.py create mode 100644 stock_picking/__manifest__.py create mode 100644 stock_picking/views/report_stockpicking_operations.xml diff --git a/stock_picking/__init__.py b/stock_picking/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/stock_picking/__manifest__.py b/stock_picking/__manifest__.py new file mode 100644 index 00000000000..36594747631 --- /dev/null +++ b/stock_picking/__manifest__.py @@ -0,0 +1,14 @@ +{ + 'name': 'Custom Picking Operation Report Header', + 'version': '1.0', + 'category': 'Tutorial', + 'summary': 'Picking information on multi-page PDF report header', + 'depends': ['stock'], + 'data': [ + 'views/report_stockpicking_operations.xml', + ], + 'installable': True, + 'application': False, + 'author': 'Rini Pillai', + 'license': 'LGPL-3', +} diff --git a/stock_picking/views/report_stockpicking_operations.xml b/stock_picking/views/report_stockpicking_operations.xml new file mode 100644 index 00000000000..9e56c692c49 --- /dev/null +++ b/stock_picking/views/report_stockpicking_operations.xml @@ -0,0 +1,61 @@ + + + + \ No newline at end of file