From a2a0933547f2c46fdb2595aa6c5c9db77d12257e Mon Sep 17 00:00:00 2001 From: Flectra Community Bot Date: Sun, 9 Jan 2022 03:14:17 +0000 Subject: [PATCH] Automatic Update form OCA2FC Migrator --- README.md | 2 +- animal_owner/__manifest__.py | 2 +- animal_owner/models/animal.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 207896d..ce2cc48 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ addon | version | summary [partner_identification](partner_identification/) | 2.0.1.3.0| Partner Identification Numbers [partner_address_version](partner_address_version/) | 2.0.1.0.0| Partner Address Version [base_partner_sequence](base_partner_sequence/) | 2.0.1.0.1| Sets customer's code from a sequence -[animal_owner](animal_owner/) | 2.0.1.0.0| Add owner to the animal +[animal_owner](animal_owner/) | 2.0.1.1.0| Add owner to the animal [partner_iterative_archive](partner_iterative_archive/) | 2.0.1.0.1| Archive all contacts when parent is archived [partner_deduplicate_by_website](partner_deduplicate_by_website/) | 2.0.1.0.0| Deduplicate Contacts by Website [partner_contact_age_range](partner_contact_age_range/) | 2.0.1.0.1| Age Range for Contact's diff --git a/animal_owner/__manifest__.py b/animal_owner/__manifest__.py index 2d57b32..9de7ef8 100644 --- a/animal_owner/__manifest__.py +++ b/animal_owner/__manifest__.py @@ -2,7 +2,7 @@ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). { "name": "Animal Owner", - "version": "2.0.1.0.0", + "version": "2.0.1.1.0", "license": "AGPL-3", "summary": "Add owner to the animal", "author": "Open Source Integrators, Odoo Community Association (OCA)", diff --git a/animal_owner/models/animal.py b/animal_owner/models/animal.py index a05d6a6..1d0b39e 100644 --- a/animal_owner/models/animal.py +++ b/animal_owner/models/animal.py @@ -7,5 +7,5 @@ class Animal(models.Model): _inherit = "animal" partner_id = fields.Many2one( - "res.partner", string="Owner", index=True, track_visibility="onchange" + "res.partner", string="Owner", index=True, tracking=True )