Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# generated from manifests external_dependencies
astor
cryptography
odoo_test_helper
openpyxl
xlrd
xlsxwriter
1 change: 1 addition & 0 deletions setup/tracking_manager/odoo/addons/tracking_manager
6 changes: 6 additions & 0 deletions setup/tracking_manager/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
111 changes: 111 additions & 0 deletions tracking_manager/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
.. image:: https://odoo-community.org/readme-banner-image
:target: https://odoo-community.org/get-involved?utm_source=readme
:alt: Odoo Community Association

================
Tracking Manager
================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:d6727ef8c6ae948431606c4448be2912fe6b1b9d2b48fcce7f089b004eaedd6c
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |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/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-OCA%2Fserver--tools-lightgray.png?logo=github
:target: https://github.com/OCA/server-tools/tree/16.0/tracking_manager
:alt: OCA/server-tools
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-tracking_manager
: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/server-tools&target_branch=16.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module allows to track all fields on every model that has a chatter, including one2many and many2many ones. This excludes the computed, readonly, related fields by default.
In addition, line changes of a one2many field can be tracked (e.g. product_uom_qty of an order_line in a sale order).

**Table of contents**

.. contents::
:local:

Usage
=====

- In setting > models: select a model
- Check "Active" under Custom Tracking.
- You have two options - 1) manually configure tracked fields one by one, or 2) determine tracked fields based on a specific domain.
- For 1) manually configure tracked fields one by one
- Click on Tracked Fields smart button, and select/unselect Custom Tracking.
- For 2) determine tracked fields based on a specific domain
- Select "Automatic configuration", and then set the domain accordingly.
- Click "Update" for the domain to take effect.

.. image:: https://raw.githubusercontent.com/OCA/server-tools/16.0/tracking_manager/static/description/model_view.png

- Then select the fields to track

.. image:: https://raw.githubusercontent.com/OCA/server-tools/16.0/tracking_manager/static/description/fields.png

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/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 <https://github.com/OCA/server-tools/issues/new?body=module:%20tracking_manager%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

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

Credits
=======

Authors
~~~~~~~

* Akretion

Contributors
~~~~~~~~~~~~

* Kévin Roche <[email protected]>
* Sébastien BEAU <[email protected]>

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-Kev-Roche| image:: https://github.com/Kev-Roche.png?size=40px
:target: https://github.com/Kev-Roche
:alt: Kev-Roche
.. |maintainer-sebastienbeau| image:: https://github.com/sebastienbeau.png?size=40px
:target: https://github.com/sebastienbeau
:alt: sebastienbeau

Current `maintainers <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-Kev-Roche| |maintainer-sebastienbeau|

This module is part of the `OCA/server-tools <https://github.com/OCA/server-tools/tree/16.0/tracking_manager>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions tracking_manager/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
29 changes: 29 additions & 0 deletions tracking_manager/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Copyright 2022 Akretion (https://www.akretion.com).
# @author Kévin Roche <[email protected]>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
"name": "Tracking Manager",
"summary": """This module tracks all fields of a model,
including one2many and many2many ones.""",
"version": "16.0.1.1.9",
"category": "Tools",
"website": "https://github.com/OCA/server-tools",
"author": "Akretion, Odoo Community Association (OCA)",
"maintainers": ["Kev-Roche", "sebastienbeau"],
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": [
"base",
"mail",
],
"external_dependencies": {
"python": ["odoo_test_helper"],
},
"data": [
"views/ir_model_fields.xml",
"views/ir_model.xml",
"views/message_template.xml",
],
}
150 changes: 150 additions & 0 deletions tracking_manager/i18n/de.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,150 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * tracking_manager
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-10-08 08:40+0000\n"
"Last-Translator: davidbeckercbl <[email protected]>\n"
"Language-Team: none\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.10.4\n"

#. module: tracking_manager
#: model_terms:ir.ui.view,arch_db:tracking_manager.track_o2m_m2m_template
msgid "<b>Change :</b>"
msgstr "<b>Änderung:</b>"

#. module: tracking_manager
#: model_terms:ir.ui.view,arch_db:tracking_manager.track_o2m_m2m_template
msgid "<b>Delete :</b>"
msgstr "<b>Gelöscht:</b>"

#. module: tracking_manager
#: model_terms:ir.ui.view,arch_db:tracking_manager.track_o2m_m2m_template
msgid "<b>New :</b>"
msgstr "<b>Neu:</b>"

#. module: tracking_manager
#: model_terms:ir.ui.view,arch_db:tracking_manager.view_model_form
msgid "Active"
msgstr "Aktiv"

#. module: tracking_manager
#: model:ir.model.fields,field_description:tracking_manager.field_ir_model__active_custom_tracking
msgid "Active Custom Tracking"
msgstr "Aktive benutzerdefinierte Nachverfolgung"

#. module: tracking_manager
#: model:ir.model.fields,field_description:tracking_manager.field_ir_model__automatic_custom_tracking
msgid "Automatic Custom Tracking"
msgstr "Automatische benutzerdefinierte Nachverfolgung"

#. module: tracking_manager
#: model:ir.model.fields,field_description:tracking_manager.field_ir_model__automatic_custom_tracking_domain
msgid "Automatic Custom Tracking Domain"
msgstr "Filter für automatische benutzerdefinierte Nachverfolgung"

#. module: tracking_manager
#: model_terms:ir.ui.view,arch_db:tracking_manager.view_model_form
msgid "Automatic configuration"
msgstr "Einstellung Automatismus"

#. module: tracking_manager
#: model:ir.model,name:tracking_manager.model_base
msgid "Base"
msgstr "Basis"

#. module: tracking_manager
#: model_terms:ir.ui.view,arch_db:tracking_manager.track_o2m_m2m_template
msgid "Changed"
msgstr "Geändert"

#. module: tracking_manager
#: model:ir.model.fields,field_description:tracking_manager.field_ir_model_fields__custom_tracking
#: model_terms:ir.ui.view,arch_db:tracking_manager.view_model_form
msgid "Custom Tracking"
msgstr "Benutzerdefinierte Nachverfolgung"

#. module: tracking_manager
#: model_terms:ir.ui.view,arch_db:tracking_manager.view_model_track_fields_search
msgid "Custom Tracking OFF"
msgstr "Benutzerdefinierte Nachverfolgung AUS"

#. module: tracking_manager
#: model_terms:ir.ui.view,arch_db:tracking_manager.view_model_track_fields_search
msgid "Custom Tracking ON"
msgstr "Benutzerdefinierte Nachverfolgung AN"

#. module: tracking_manager
#: model_terms:ir.ui.view,arch_db:tracking_manager.view_model_form
msgid "Domain"
msgstr "Filter"

#. module: tracking_manager
#: model:ir.model,name:tracking_manager.model_mail_thread
msgid "Email Thread"
msgstr "E-Mail Thread"

#. module: tracking_manager
#: model:ir.model,name:tracking_manager.model_ir_model_fields
msgid "Fields"
msgstr "Felder"

#. module: tracking_manager
#: model:ir.model.fields,help:tracking_manager.field_ir_model__automatic_custom_tracking
msgid "If tick new field will be automatically tracked if the domain match"
msgstr ""
"Wenn angehakt, so werden neue Felder automatisch nachverfolgt, wenn der "
"Filter übereinstimmt"

#. module: tracking_manager
#: model:ir.model,name:tracking_manager.model_mail_tracking_value
msgid "Mail Tracking Value"
msgstr "Mail Nachverfolgungswert"

#. module: tracking_manager
#: model:ir.model,name:tracking_manager.model_ir_model
msgid "Models"
msgstr "Modelle"

#. module: tracking_manager
#: model:ir.model.fields,field_description:tracking_manager.field_ir_model_fields__native_tracking
msgid "Native Tracking"
msgstr "Eingebaute Nachverfolgung"

#. module: tracking_manager
#: model:ir.model.fields,field_description:tracking_manager.field_ir_model_fields__trackable
msgid "Trackable"
msgstr "Nachverfolgbar"

#. module: tracking_manager
#: model:ir.actions.act_window,name:tracking_manager.ir_model_fields_action
msgid "Trackable Fields"
msgstr "Nachverfolgbare Felder"

#. module: tracking_manager
#: model:ir.model.fields,field_description:tracking_manager.field_ir_model__tracked_field_count
msgid "Tracked Field Count"
msgstr "Anzahl nachverfolgter Felder"

#. module: tracking_manager
#: model_terms:ir.ui.view,arch_db:tracking_manager.view_model_form
msgid "Tracked Fields"
msgstr "Nachverfolgte Felder"

#. module: tracking_manager
#: model_terms:ir.ui.view,arch_db:tracking_manager.view_model_form
msgid "Update"
msgstr "Aktualisieren"

#. module: tracking_manager
#: model_terms:ir.ui.view,arch_db:tracking_manager.view_model_form
msgid "Update fields configuration"
msgstr "Aktualisiere Feldkonfiguration"
Loading
Loading