Browse Source

Merge pull request #32 from ilyasProgrammer/8_mail_count

[ADD] docs manifest
pull/3/head
Ivan Yelizariev 9 years ago
parent
commit
b3a34b78bc
  1. 45
      res_partner_mails_count/__openerp__.py
  2. BIN
      res_partner_mails_count/images/1.png
  3. BIN
      res_partner_mails_count/static/description/1.png
  4. BIN
      res_partner_mails_count/static/description/2.png
  5. BIN
      res_partner_mails_count/static/description/3.png
  6. 21
      res_partner_mails_count/static/description/index.html

45
res_partner_mails_count/__openerp__.py

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

BIN
res_partner_mails_count/images/1.png

After

Width: 1128  |  Height: 528  |  Size: 92 KiB

BIN
res_partner_mails_count/static/description/1.png

After

Width: 1128  |  Height: 528  |  Size: 92 KiB

BIN
res_partner_mails_count/static/description/2.png

After

Width: 1128  |  Height: 528  |  Size: 91 KiB

BIN
res_partner_mails_count/static/description/3.png

After

Width: 1128  |  Height: 528  |  Size: 77 KiB

21
res_partner_mails_count/static/description/index.html

@ -0,0 +1,21 @@
<section class="oe_container">
<div class="oe_row oe_spaced">
<div class="oe_span12">
<h2 class="oe_slogan">Smart buttons for mails count</h2>
<h3 class="oe_slogan">Display amount of messages from/to customer</h3>
<p>
Open partner (customer) form and look up how many messages he got and sent:
<img class="oe_picture oe_screenshot" src="1.png"/>
</p>
<p>
If you click any of this buttons:
<img class="oe_picture oe_screenshot" src="2.png"/>
</p>
<p>
You will see those mails:
<img class="oe_picture oe_screenshot" src="3.png"/>
</p>
</div>
</div>
</section>
Loading…
Cancel
Save