-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
在有message thread 的视图,可以把消息/邮件发送给另一个联系人或数据库对象。
- Loading branch information
Showing
17 changed files
with
1,480 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg | ||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
:alt: License: AGPL-3 | ||
|
||
=============== | ||
Message forward | ||
=============== | ||
|
||
This module was written to extend the functionality of mails to support | ||
forwarding them to another contact or database object. | ||
|
||
* **To another object of the database:** All its followers are notified | ||
according to their settings. | ||
|
||
* **To other contacts:** They recieve the forwarded message according to the | ||
usual notification rules of Odoo. | ||
|
||
Configuration | ||
============= | ||
|
||
When installed, this module allows forwarding to a limited selection of | ||
database models, that will get automatically updated when you install other | ||
modules. | ||
|
||
This list can be customized by a user that has *Technical Features* permission. | ||
To do it: | ||
|
||
* Go to *Settings > Technical > Database Structure > Referenceable Models*. | ||
|
||
* Any model there with *Mail forward target* enabled will appear in the list of | ||
models that can get forwarded messages. | ||
|
||
* If you want to *remove* a model from the list, it's usually better to just | ||
*disable* its check box instead of deleting it, because that record might | ||
be used by other modules. | ||
|
||
Usage | ||
===== | ||
|
||
To use this module, you need to: | ||
|
||
* Go to any view that has a message thread. | ||
* Press *Forward* (the button with a curved arrow pointing to the right). | ||
* Modify the subject if you wish. | ||
* If you want to forward the message to an *object*, choose it from the | ||
selector. | ||
* If you want to forward the message to some partner(s), add them in the | ||
selector. | ||
* Modify the message if you want. | ||
* Add attachments if you want. | ||
* If the message contains attachments, you can turn on the *Move attachments* | ||
option, and those will get attached to the new object. | ||
|
||
You will need to install the *document* module and have at least *User* | ||
permissions for *Knowledge* to see the effect. | ||
|
||
.. info:: | ||
Technical note: Internally, forwarded messages are modified copies of | ||
original ones, but attachments are references to the exact originals to | ||
avoid duplicating disk space. Keep that in mind when managing permissions. | ||
|
||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas | ||
:alt: Try me on Runbot | ||
:target: https://runbot.odoo-community.org/runbot/205/8.0 | ||
|
||
For further information, please visit: | ||
|
||
* https://www.odoo.com/forum/help-1 | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues | ||
<https://github.com/OCA/social/issues>`_. In case of trouble, please | ||
check there if your issue has already been reported. If you spotted it first, | ||
help us smashing it by providing a detailed and welcomed feedback. | ||
|
||
|
||
Credits | ||
======= | ||
|
||
Contributors | ||
------------ | ||
|
||
* Jairo Llopis <[email protected]> | ||
* Emanuel Cino <[email protected]> | ||
|
||
Maintainer | ||
---------- | ||
|
||
.. image:: https://odoo-community.org/logo.png | ||
:alt: Odoo Community Association | ||
:target: https://odoo-community.org | ||
|
||
This module is maintained by the OCA. | ||
|
||
OCA, or the Odoo Community Association, is a nonprofit organization whose | ||
mission is to support the collaborative development of Odoo features and | ||
promote its widespread use. | ||
|
||
To contribute to this module, please visit http://odoo-community.org. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
# © 2014-2015 Grupo ESOC <www.grupoesoc.es> | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||
|
||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# -*- coding: utf-8 -*- | ||
# © 2014-2015 Grupo ESOC <www.grupoesoc.es> | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||
|
||
{ | ||
"name": "Message Forward", | ||
"summary": "Add option to forward messages", | ||
"version": "10.0.1.0.0", | ||
"category": "Social Network", | ||
"website": "https://github.com/OCA/social", | ||
"author": "Tecnativa, Odoo Community Association (OCA)", | ||
"license": "AGPL-3", | ||
"application": False, | ||
"installable": True, | ||
"depends": [ | ||
"mail", | ||
"web", | ||
], | ||
"data": [ | ||
"views/assets.xml", | ||
"views/compose_message.xml", | ||
"views/res_request_link.xml", | ||
], | ||
"qweb": [ | ||
"static/src/xml/mail_forward.xml", | ||
], | ||
} |
Oops, something went wrong.