# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # ############################################################################## { 'name': 'Contacts Management', 'version': '1.0', 'category': 'Customer Relationship Management', 'complexity': "expert", 'description': """ This module allows you to manage your contacts entirely. ======================================================== It lets you define: * contacts unrelated to a partner, * contacts working at several addresses (possibly for different partners), * contacts with possibly different functions for each of its job's addresses It also adds new menu items located in Purchases / Address Book / Contacts Sales / Address Book / Contacts Pay attention that this module converts the existing addresses into "addresses + contacts". It means that some fields of the addresses will be missing (like the contact name), since these are supposed to be defined in an other object. """, 'author': 'OpenERP SA', 'website': 'http://www.openerp.com', 'depends': ['base','process'], 'init_xml': [], 'update_xml': [ 'security/base_contact_security.xml', 'security/ir.model.access.csv', 'base_contact_view.xml', 'base_contact_installer_view.xml', 'process/base_contact_process.xml' ], 'demo_xml': ['base_contact_demo.xml'], 'test': [ 'test/base_contact00.yml', ], 'installable': True, 'active': False, 'certificate': '0031287885469', 'images': ['images/base_contact1.jpeg','images/base_contact2.jpeg','images/base_contact3.jpeg'], } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: