From a2c217c97b843e02c063aa97a1215b2f0bf8914b Mon Sep 17 00:00:00 2001 From: Alfredo Date: Tue, 12 Nov 2024 08:01:22 +0100 Subject: [PATCH 1/6] [16.0][ADD] mrp_workorder_qr_report: In Work Order new report "QR Work Order". --- mrp_workorder_qr_report/README.rst | 28 ++++++++ mrp_workorder_qr_report/__init__.py | 0 mrp_workorder_qr_report/__manifest__.py | 15 ++++ mrp_workorder_qr_report/i18n/ca_ES.po | 46 ++++++++++++ mrp_workorder_qr_report/i18n/en_GB.po | 46 ++++++++++++ mrp_workorder_qr_report/i18n/es.po | 46 ++++++++++++ mrp_workorder_qr_report/i18n/fr.po | 46 ++++++++++++ .../i18n/mrp_workorder_qr_report.pot | 46 ++++++++++++ .../report/mrp_workorder_report.xml | 72 +++++++++++++++++++ .../odoo/addons/mrp_workorder_qr_report | 1 + setup/mrp_workorder_qr_report/setup.py | 6 ++ 11 files changed, 352 insertions(+) create mode 100644 mrp_workorder_qr_report/README.rst create mode 100644 mrp_workorder_qr_report/__init__.py create mode 100644 mrp_workorder_qr_report/__manifest__.py create mode 100644 mrp_workorder_qr_report/i18n/ca_ES.po create mode 100644 mrp_workorder_qr_report/i18n/en_GB.po create mode 100644 mrp_workorder_qr_report/i18n/es.po create mode 100644 mrp_workorder_qr_report/i18n/fr.po create mode 100644 mrp_workorder_qr_report/i18n/mrp_workorder_qr_report.pot create mode 100644 mrp_workorder_qr_report/report/mrp_workorder_report.xml create mode 120000 setup/mrp_workorder_qr_report/odoo/addons/mrp_workorder_qr_report create mode 100644 setup/mrp_workorder_qr_report/setup.py diff --git a/mrp_workorder_qr_report/README.rst b/mrp_workorder_qr_report/README.rst new file mode 100644 index 000000000..ccbdf4221 --- /dev/null +++ b/mrp_workorder_qr_report/README.rst @@ -0,0 +1,28 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +======================= +Mrp Workorder QR report +======================= + +* In Work Order new report "QR Work Order". + +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 smash it by providing detailed and welcomed feedback. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Contributors +------------ + +* Ana Juaristi +* Alfredo de la Fuente diff --git a/mrp_workorder_qr_report/__init__.py b/mrp_workorder_qr_report/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/mrp_workorder_qr_report/__manifest__.py b/mrp_workorder_qr_report/__manifest__.py new file mode 100644 index 000000000..fbab9a816 --- /dev/null +++ b/mrp_workorder_qr_report/__manifest__.py @@ -0,0 +1,15 @@ +# Copyright 2024 Alfredo de la Fuente - AvanzOSC +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +{ + "name": "Mrp Workorder QR Report", + "version": "16.0.1.0.0", + "author": "Avanzosc", + "website": "https://github.com/avanzosc/mrp-addons", + "category": "Manufacturing/Manufacturing", + "license": "AGPL-3", + "depends": ["mrp"], + "data": [ + "report/mrp_workorder_report.xml", + ], + "installable": True, +} diff --git a/mrp_workorder_qr_report/i18n/ca_ES.po b/mrp_workorder_qr_report/i18n/ca_ES.po new file mode 100644 index 000000000..85d267987 --- /dev/null +++ b/mrp_workorder_qr_report/i18n/ca_ES.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_workorder_qr_report +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-11-12 09:58+0000\n" +"PO-Revision-Date: 2024-11-12 09:58+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: mrp_workorder_qr_report +#: model:ir.actions.report,print_report_name:mrp_workorder_qr_report.action_report_workorder_qr +msgid "'Work Order - %s' % object.name" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Finished Product:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Manufacturing Order:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Quantity to Produce:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Responsible:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model:ir.actions.report,name:mrp_workorder_qr_report.action_report_workorder_qr +msgid "QR Work Order" +msgstr "" diff --git a/mrp_workorder_qr_report/i18n/en_GB.po b/mrp_workorder_qr_report/i18n/en_GB.po new file mode 100644 index 000000000..85d267987 --- /dev/null +++ b/mrp_workorder_qr_report/i18n/en_GB.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_workorder_qr_report +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-11-12 09:58+0000\n" +"PO-Revision-Date: 2024-11-12 09:58+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: mrp_workorder_qr_report +#: model:ir.actions.report,print_report_name:mrp_workorder_qr_report.action_report_workorder_qr +msgid "'Work Order - %s' % object.name" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Finished Product:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Manufacturing Order:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Quantity to Produce:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Responsible:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model:ir.actions.report,name:mrp_workorder_qr_report.action_report_workorder_qr +msgid "QR Work Order" +msgstr "" diff --git a/mrp_workorder_qr_report/i18n/es.po b/mrp_workorder_qr_report/i18n/es.po new file mode 100644 index 000000000..b9c2db05e --- /dev/null +++ b/mrp_workorder_qr_report/i18n/es.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_workorder_qr_report +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-11-12 09:59+0000\n" +"PO-Revision-Date: 2024-11-12 09:59+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: mrp_workorder_qr_report +#: model:ir.actions.report,print_report_name:mrp_workorder_qr_report.action_report_workorder_qr +msgid "'Work Order - %s' % object.name" +msgstr "'Orden de trabajo - %s' % object.name" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Finished Product:
" +msgstr "Producto terminado:
" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Manufacturing Order:
" +msgstr "Orden de fabricación:
" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Quantity to Produce:
" +msgstr "Cantidad a producir:
" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Responsible:
" +msgstr "Responsable:
" + +#. module: mrp_workorder_qr_report +#: model:ir.actions.report,name:mrp_workorder_qr_report.action_report_workorder_qr +msgid "QR Work Order" +msgstr "QR Orden de trabajo" diff --git a/mrp_workorder_qr_report/i18n/fr.po b/mrp_workorder_qr_report/i18n/fr.po new file mode 100644 index 000000000..85d267987 --- /dev/null +++ b/mrp_workorder_qr_report/i18n/fr.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_workorder_qr_report +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-11-12 09:58+0000\n" +"PO-Revision-Date: 2024-11-12 09:58+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: mrp_workorder_qr_report +#: model:ir.actions.report,print_report_name:mrp_workorder_qr_report.action_report_workorder_qr +msgid "'Work Order - %s' % object.name" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Finished Product:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Manufacturing Order:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Quantity to Produce:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Responsible:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model:ir.actions.report,name:mrp_workorder_qr_report.action_report_workorder_qr +msgid "QR Work Order" +msgstr "" diff --git a/mrp_workorder_qr_report/i18n/mrp_workorder_qr_report.pot b/mrp_workorder_qr_report/i18n/mrp_workorder_qr_report.pot new file mode 100644 index 000000000..85d267987 --- /dev/null +++ b/mrp_workorder_qr_report/i18n/mrp_workorder_qr_report.pot @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_workorder_qr_report +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-11-12 09:58+0000\n" +"PO-Revision-Date: 2024-11-12 09:58+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: mrp_workorder_qr_report +#: model:ir.actions.report,print_report_name:mrp_workorder_qr_report.action_report_workorder_qr +msgid "'Work Order - %s' % object.name" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Finished Product:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Manufacturing Order:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Quantity to Produce:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model_terms:ir.ui.view,arch_db:mrp_workorder_qr_report.report_mrp_workorder_qr +msgid "Responsible:
" +msgstr "" + +#. module: mrp_workorder_qr_report +#: model:ir.actions.report,name:mrp_workorder_qr_report.action_report_workorder_qr +msgid "QR Work Order" +msgstr "" diff --git a/mrp_workorder_qr_report/report/mrp_workorder_report.xml b/mrp_workorder_qr_report/report/mrp_workorder_report.xml new file mode 100644 index 000000000..f7699d83b --- /dev/null +++ b/mrp_workorder_qr_report/report/mrp_workorder_report.xml @@ -0,0 +1,72 @@ + + + + + + QR Work Order + mrp.workorder + qweb-pdf + mrp_workorder_qr_report.report_mrp_workorder_qr + mrp_workorder_qr_report.report_mrp_workorder_qr + 'Work Order - %s' % object.name + + report + True + + diff --git a/setup/mrp_workorder_qr_report/odoo/addons/mrp_workorder_qr_report b/setup/mrp_workorder_qr_report/odoo/addons/mrp_workorder_qr_report new file mode 120000 index 000000000..59199f9fb --- /dev/null +++ b/setup/mrp_workorder_qr_report/odoo/addons/mrp_workorder_qr_report @@ -0,0 +1 @@ +../../../../mrp_workorder_qr_report \ No newline at end of file diff --git a/setup/mrp_workorder_qr_report/setup.py b/setup/mrp_workorder_qr_report/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/mrp_workorder_qr_report/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From 7f27b761165b4458719981fc329c7db4678ede26 Mon Sep 17 00:00:00 2001 From: Alfredo Date: Thu, 14 Nov 2024 12:30:32 +0100 Subject: [PATCH 2/6] [16.0][IMP] mrp_production_report: Print lot/Serial number. --- mrp_production_report/i18n/ca_ES.po | 51 +++++++++++++++++++ mrp_production_report/i18n/en_GB.po | 51 +++++++++++++++++++ mrp_production_report/i18n/es.po | 9 +++- mrp_production_report/i18n/fr.po | 51 +++++++++++++++++++ .../i18n/mrp_production_report.pot | 9 +++- .../report/mrp_production_report.xml | 10 ++++ 6 files changed, 177 insertions(+), 4 deletions(-) create mode 100644 mrp_production_report/i18n/ca_ES.po create mode 100644 mrp_production_report/i18n/en_GB.po create mode 100644 mrp_production_report/i18n/fr.po diff --git a/mrp_production_report/i18n/ca_ES.po b/mrp_production_report/i18n/ca_ES.po new file mode 100644 index 000000000..6097ef152 --- /dev/null +++ b/mrp_production_report/i18n/ca_ES.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_report +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-11-14 11:26+0000\n" +"PO-Revision-Date: 2024-11-14 11:26+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: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder +msgid "BoM:
" +msgstr "" + +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder +msgid "Date Start" +msgstr "" + +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder +msgid "Lot/Serial Number:
" +msgstr "" + +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder +msgid "Scheduled Date:
" +msgstr "" + +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrp_production_components +msgid "Location" +msgstr "" + +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrp_production_components +msgid "Lots" +msgstr "" + +#. module: mrp_production_report +#: model:ir.model,name:mrp_production_report.model_stock_move +msgid "Stock Move" +msgstr "Moviment d'estoc" diff --git a/mrp_production_report/i18n/en_GB.po b/mrp_production_report/i18n/en_GB.po new file mode 100644 index 000000000..cb5020277 --- /dev/null +++ b/mrp_production_report/i18n/en_GB.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_report +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-11-14 11:26+0000\n" +"PO-Revision-Date: 2024-11-14 11:26+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: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder +msgid "BoM:
" +msgstr "" + +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder +msgid "Date Start" +msgstr "" + +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder +msgid "Lot/Serial Number:
" +msgstr "" + +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder +msgid "Scheduled Date:
" +msgstr "" + +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrp_production_components +msgid "Location" +msgstr "" + +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrp_production_components +msgid "Lots" +msgstr "" + +#. module: mrp_production_report +#: model:ir.model,name:mrp_production_report.model_stock_move +msgid "Stock Move" +msgstr "" diff --git a/mrp_production_report/i18n/es.po b/mrp_production_report/i18n/es.po index c654133d2..4b3e6df71 100644 --- a/mrp_production_report/i18n/es.po +++ b/mrp_production_report/i18n/es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-10 06:55+0000\n" -"PO-Revision-Date: 2024-06-10 06:55+0000\n" +"POT-Creation-Date: 2024-11-14 11:27+0000\n" +"PO-Revision-Date: 2024-11-14 11:27+0000\n" "Last-Translator: \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -25,6 +25,11 @@ msgstr "LdM:
" msgid "Date Start" msgstr "Fecha inicio" +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder +msgid "Lot/Serial Number:
" +msgstr "Lote/Num.Serie:
" + #. module: mrp_production_report #: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder msgid "Scheduled Date:
" diff --git a/mrp_production_report/i18n/fr.po b/mrp_production_report/i18n/fr.po new file mode 100644 index 000000000..a89bb28ed --- /dev/null +++ b/mrp_production_report/i18n/fr.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_report +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-11-14 11:27+0000\n" +"PO-Revision-Date: 2024-11-14 11:27+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: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder +msgid "BoM:
" +msgstr "" + +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder +msgid "Date Start" +msgstr "" + +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder +msgid "Lot/Serial Number:
" +msgstr "" + +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder +msgid "Scheduled Date:
" +msgstr "" + +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrp_production_components +msgid "Location" +msgstr "" + +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrp_production_components +msgid "Lots" +msgstr "" + +#. module: mrp_production_report +#: model:ir.model,name:mrp_production_report.model_stock_move +msgid "Stock Move" +msgstr "Mouvement de stock" diff --git a/mrp_production_report/i18n/mrp_production_report.pot b/mrp_production_report/i18n/mrp_production_report.pot index 44ec0a232..cb5020277 100644 --- a/mrp_production_report/i18n/mrp_production_report.pot +++ b/mrp_production_report/i18n/mrp_production_report.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-10 06:55+0000\n" -"PO-Revision-Date: 2024-06-10 06:55+0000\n" +"POT-Creation-Date: 2024-11-14 11:26+0000\n" +"PO-Revision-Date: 2024-11-14 11:26+0000\n" "Last-Translator: \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -25,6 +25,11 @@ msgstr "" msgid "Date Start" msgstr "" +#. module: mrp_production_report +#: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder +msgid "Lot/Serial Number:
" +msgstr "" + #. module: mrp_production_report #: model_terms:ir.ui.view,arch_db:mrp_production_report.report_mrporder msgid "Scheduled Date:
" diff --git a/mrp_production_report/report/mrp_production_report.xml b/mrp_production_report/report/mrp_production_report.xml index 9e4eff8cb..b91504387 100644 --- a/mrp_production_report/report/mrp_production_report.xml +++ b/mrp_production_report/report/mrp_production_report.xml @@ -1,6 +1,16 @@