From 3eeb578298a4b43f6f31b8e6c57b84fbb5c6a2f3 Mon Sep 17 00:00:00 2001 From: b5baxter Date: Mon, 9 Apr 2018 11:29:09 -0700 Subject: [PATCH 1/2] [MIG] crm_construction_architect: Migration to 10.0 --- crm_construction_architect/__manifest__.py | 10 +++------- crm_construction_architect/models.py | 2 +- crm_construction_architect/views.xml | 8 ++++---- 3 files changed, 8 insertions(+), 12 deletions(-) diff --git a/crm_construction_architect/__manifest__.py b/crm_construction_architect/__manifest__.py index d183901..3357c4f 100644 --- a/crm_construction_architect/__manifest__.py +++ b/crm_construction_architect/__manifest__.py @@ -20,15 +20,11 @@ { 'name': "OCA Construction: Architect CRM", 'summary': """Indicate the architect of a lead/opportunity.""", - 'description': """ - This module allows you to: - - Identify the architect of a lead/opportunity. - - Filter/group/search opportunities by architect. - """, 'author': "Mathias Colpaert, Odoo Community Association (OCA)", + "license": "AGPL-3", 'category': "construction", - 'version': '8.0.0.1.0', + 'version': '10.0.0.1.0', 'depends': ['crm', 'base_construction_architect'], 'data': ['views.xml'], - 'installable': False, + 'installable': True, } diff --git a/crm_construction_architect/models.py b/crm_construction_architect/models.py index b33406b..6c1d102 100644 --- a/crm_construction_architect/models.py +++ b/crm_construction_architect/models.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -from openerp import models, fields +from odoo import models, fields class Lead(models.Model): diff --git a/crm_construction_architect/views.xml b/crm_construction_architect/views.xml index b28f0c3..23bc074 100644 --- a/crm_construction_architect/views.xml +++ b/crm_construction_architect/views.xml @@ -1,5 +1,5 @@ - + @@ -19,7 +19,7 @@ crm.lead - + @@ -55,10 +55,10 @@ crm.lead - + - \ No newline at end of file + From 98292ba52de620094ff20196a76466169537a32a Mon Sep 17 00:00:00 2001 From: b5baxter Date: Thu, 17 May 2018 23:04:08 -0700 Subject: [PATCH 2/2] Update __manifest__.py --- crm_construction_architect/__manifest__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/crm_construction_architect/__manifest__.py b/crm_construction_architect/__manifest__.py index 3357c4f..214aecf 100644 --- a/crm_construction_architect/__manifest__.py +++ b/crm_construction_architect/__manifest__.py @@ -24,6 +24,7 @@ "license": "AGPL-3", 'category': "construction", 'version': '10.0.0.1.0', + 'license': 'AGPL-3', 'depends': ['crm', 'base_construction_architect'], 'data': ['views.xml'], 'installable': True,