|
|
@ -1,31 +1,28 @@ |
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
{ |
|
|
|
'name': "res_partner_mails_count", |
|
|
|
"name": """Partner mails count""", |
|
|
|
"summary": """Displays amount of incoming and outgoing partner mails.""", |
|
|
|
"category": "Sales Management", |
|
|
|
"images": ['images/1.png'], |
|
|
|
"version": "1.0.0", |
|
|
|
|
|
|
|
'summary': """ |
|
|
|
Short (1 phrase/line) summary of the module's purpose, used as |
|
|
|
subtitle on modules listing or apps.openerp.com""", |
|
|
|
"author": "IT-Projects LLC", |
|
|
|
"website": "https://it-projects.info", |
|
|
|
"license": "GPL-3", |
|
|
|
"price": 30.00, |
|
|
|
"currency": "EUR", |
|
|
|
|
|
|
|
'description': """ |
|
|
|
Long description of module's purpose |
|
|
|
""", |
|
|
|
|
|
|
|
'author': "Your Company", |
|
|
|
'website': "http://www.yourcompany.com", |
|
|
|
|
|
|
|
# Categories can be used to filter modules in modules listing |
|
|
|
# Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml |
|
|
|
# for the full list |
|
|
|
'category': 'Uncategorized', |
|
|
|
'version': '0.1', |
|
|
|
|
|
|
|
# any module necessary for this one to work correctly |
|
|
|
'depends': ['base', 'mail'], |
|
|
|
|
|
|
|
# always loaded |
|
|
|
'data': [ |
|
|
|
# 'security/ir.model.access.csv', |
|
|
|
"depends": [ |
|
|
|
'base', |
|
|
|
'mail' , |
|
|
|
], |
|
|
|
"external_dependencies": {"python": [], "bin": []}, |
|
|
|
"data": [ |
|
|
|
'views/res_partner_mails_count.xml', |
|
|
|
'templates.xml', |
|
|
|
], |
|
|
|
"demo": [ |
|
|
|
], |
|
|
|
"installable": True, |
|
|
|
"auto_install": False, |
|
|
|
} |