[15.0][MIG] mail_improved_tracking_value: Migration to 15.0

pull/1163/head
duyanh 2022-09-27 10:25:39 +07:00 committed by Anna Janiszewska
parent 55c9922f2b
commit b0e6937232
3 changed files with 4 additions and 5 deletions

View File

@ -3,7 +3,7 @@
{
"name": "Improved tracking value change",
"version": "14.0.1.0.0",
"version": "15.0.1.0.0",
"summary": "Improves tracking changed values for certain type of fields."
"Adds a user-friendly view to consult them.",
"author": "Camptocamp, Odoo Community Association (OCA)",

View File

@ -1,4 +1,4 @@
# Copyright 2018 Camptocamp SA
# Copyright 2018-2022 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
import json
@ -34,7 +34,7 @@ class MailTrackingValue(models.Model):
"old_value_monetary",
)
def _compute_formatted_value(self):
""" Sets the value formatted field used in the view """
"""Sets the value formatted field used in the view"""
for record in self:
if record.field_type in ("many2many", "one2many", "char"):
record.new_value_formatted = record.new_value_char
@ -65,7 +65,7 @@ class MailTrackingValue(models.Model):
tracking_sequence,
model_name,
):
""" Add tacking capabilities for many2many and one2many fields """
"""Add tacking capabilities for many2many and one2many fields"""
if col_info["type"] in ("many2many", "one2many"):
def get_values(source, prefix):

View File

@ -6,7 +6,6 @@
<field name="model">mail.tracking.value</field>
<field name="arch" type="xml">
<tree
string="Tracking change list"
default_order="create_date desc"
create="false"
edit="false"