|
@ -0,0 +1,60 @@ |
|
|
|
|
|
<?xml version="1.0"?> |
|
|
|
|
|
<openerp> |
|
|
|
|
|
<data> |
|
|
|
|
|
<template id="res_partner_mails_count_assets_backend" |
|
|
|
|
|
name="res_partner_mails_count_assets_backend" |
|
|
|
|
|
inherit_id="web.assets_backend"> |
|
|
|
|
|
<xpath expr="." position="inside"> |
|
|
|
|
|
<script src="/res_partner_mails_count/static/src/js/main.js" |
|
|
|
|
|
type="text/javascript"></script> |
|
|
|
|
|
<script src="/res_partner_mails_count/static/src/js/res_partner_mails_count_tour.js" |
|
|
|
|
|
type="text/javascript"></script> |
|
|
|
|
|
</xpath> |
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<record id="search_notified_partner_ids" model="ir.ui.view"> |
|
|
|
|
|
<field name="name">mail.message.search.notified_partner</field> |
|
|
|
|
|
<field name="model">mail.message</field> |
|
|
|
|
|
<field name="priority">50</field> |
|
|
|
|
|
<field name="inherit_id" ref="mail.view_message_search"/> |
|
|
|
|
|
<field name="arch" type="xml"> |
|
|
|
|
|
<search string="Messages Search"> |
|
|
|
|
|
<field name="notified_partner_ids"/> |
|
|
|
|
|
</search> |
|
|
|
|
|
</field> |
|
|
|
|
|
</record> |
|
|
|
|
|
|
|
|
|
|
|
<record id="view_res_partner_mails_count_info_form" model="ir.ui.view"> |
|
|
|
|
|
<field name="name">res.partner.mails.count</field> |
|
|
|
|
|
<field name="model">res.partner</field> |
|
|
|
|
|
<field name="inherit_id" ref="base.view_partner_form"/> |
|
|
|
|
|
<field name="priority" eval="50"/> |
|
|
|
|
|
<field name="arch" type="xml"> |
|
|
|
|
|
<xpath expr="//div[@name='buttons']" position="inside"> |
|
|
|
|
|
<button class="oe_inline oe_stat_button mails_to" type="action" |
|
|
|
|
|
name="%(action_mails)d" |
|
|
|
|
|
context="{'search_default_notified_partner_ids': [active_id], 'default_model': 'res.partner', 'default_res_id': active_id}" |
|
|
|
|
|
icon="fa-envelope"> |
|
|
|
|
|
<field string="Mails to" name="mails_to" widget="statinfo"/> |
|
|
|
|
|
</button> |
|
|
|
|
|
<button class="oe_inline oe_stat_button mails_from" type="action" |
|
|
|
|
|
name="%(action_mails)d" |
|
|
|
|
|
context="{'search_default_author_id': active_id, 'default_model': 'res.partner', 'default_res_id': active_id}" |
|
|
|
|
|
icon="fa-envelope-o"> |
|
|
|
|
|
<field string="Mails from" name="mails_from" widget="statinfo"/> |
|
|
|
|
|
</button> |
|
|
|
|
|
</xpath> |
|
|
|
|
|
</field> |
|
|
|
|
|
</record> |
|
|
|
|
|
<record id="res_partner_mails_count_tutorial" model="ir.actions.act_url"> |
|
|
|
|
|
<field name="name">res_partner_mails_count Tutorial</field> |
|
|
|
|
|
<field name="url" eval="'/web?debug=1&res_partner_mails_count=tutorial#id='+str(ref('base.partner_root'))+'&view_type=form&model=res.partner&/#tutorial_extra.mails_count_tour=true'"/> |
|
|
|
|
|
<field name="target">self</field> |
|
|
|
|
|
</record> |
|
|
|
|
|
<record id="base.open_menu" model="ir.actions.todo"> |
|
|
|
|
|
<field name="action_id" ref="res_partner_mails_count_tutorial"/> |
|
|
|
|
|
<field name="state">open</field> |
|
|
|
|
|
<field name="sequence">200</field> |
|
|
|
|
|
</record> |
|
|
|
|
|
</data> |
|
|
|
|
|
</openerp> |