IMP readme and add filters

pull/2789/head
Kev-Roche 2023-01-18 18:41:37 +01:00 committed by Christopher Rogos
parent a105a653cc
commit b79a9eca9e
6 changed files with 35 additions and 6 deletions

View File

@ -184,6 +184,7 @@ class IrModelFields(models.Model):
"message_ids",
"message_last_post",
"message_main_attachment",
"message_main_attachement_id",
]
for rec in self:
rec.trackable = (

View File

@ -1,2 +1,2 @@
This module tracks 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 are also tracked (e.g. product_uom_qty of an order_line in a sale order).
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).

View File

@ -1,4 +1,12 @@
- In setting > models: select a model
- Check "Apply custom tracking on fields", all the non readonly, related, computed fields will be tracked.
- Button or smart button "Tracked Fields" allow to activate / deactivate custom_tracking on each field
- By default, all sub fields of a one2many field are tracked if they changed. To manage the sub fields, you need to activate "Apply custom tracking on fields" on the one2many model. Button "One2many related models" is a shortcut for these models.
- Check "Active" under Custom Tracking.
- Check "Automatic configuration" in order to track new fields
- Choose a domain or not
- Click on "Update"
- You can check tracked fields by clicking the smart button
.. image:: ./static/description/model_view.png
- Then select the fields to track
.. image:: ./static/description/fields.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

View File

@ -11,7 +11,7 @@
<field name="view_mode">tree,form</field>
<field
name="domain"
>[("trackable", "=", True), ("model_id", "=", context['active_id'])]</field>
>[("trackable", "=", True), ("model_id", "=", context['active_id']), ("ttype", "!=", "binary")]</field>
<field name="context">{}</field>
<field name="target">current</field>
</record>
@ -36,4 +36,24 @@
<field name="act_window_id" ref="ir_model_fields_action" />
</record>
<record id="view_model_track_fields_search" model="ir.ui.view">
<field name="name">ir.model.fields.search</field>
<field name="model">ir.model.fields</field>
<field name="inherit_id" ref="base.view_model_fields_search" />
<field name="arch" type="xml">
<xpath expr="//filter[@name='translate']" position="after">
<filter
name="tracking_on"
string="Custom Tracking ON"
domain="[('custom_tracking','=', True)]"
/>
<filter
name="tracking_off"
string="Custom Tracking OFF"
domain="[('custom_tracking','=', False)]"
/>
</xpath>
</field>
</record>
</odoo>