Automatic Update form OCA2FC Migrator

This commit is contained in:
Flectra Community Bot 2022-01-09 03:14:17 +00:00 committed by OCA2FC Migrator Bot
parent 6ba3c8607a
commit a2a0933547
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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)",

View File

@ -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
)