-
49mail_move_message/README.rst
-
2mail_move_message/__init__.py
-
30mail_move_message/__manifest__.py
-
21mail_move_message/__openerp__.py
-
2mail_move_message/controllers/__init__.py
-
57mail_move_message/controllers/main.py
-
4mail_move_message/data/mail_move_message_data.xml
-
35mail_move_message/doc/index.rst
-
162mail_move_message/mail_move_message_models.py
-
95mail_move_message/mail_move_message_views.xml
-
BINmail_move_message/static/description/delete-message.png
-
BINmail_move_message/static/description/icon.png
-
BINmail_move_message/static/description/inbox-move.png
-
72mail_move_message/static/description/index.html
-
BINmail_move_message/static/description/record-move-back.png
-
145mail_move_message/static/src/js/mail_move_message.js
-
8mail_move_message/static/src/xml/mail_move_message_main.xml
@ -1,10 +1,49 @@ |
|||
Mail relocation |
|||
=============== |
|||
.. image:: https://img.shields.io/badge/license-LGPL--3-blue.png |
|||
:target: https://www.gnu.org/licenses/lgpl |
|||
:alt: License: LGPL-3 |
|||
|
|||
Demo: http://runbot.it-projects.info/demo/mail-addons/9.0 |
|||
================= |
|||
Mail Relocation |
|||
================= |
|||
|
|||
Description: https://www.odoo.com/apps/modules/9.0/mail_move_message/ |
|||
The module allows to relocate messages between models |
|||
|
|||
Credits |
|||
======= |
|||
|
|||
Contributors |
|||
------------ |
|||
* `Ivan Yelizariev <https://it-projects.info/team/yelizariev>`__ |
|||
|
|||
Sponsors |
|||
-------- |
|||
* `IT-Projects LLC <https://it-projects.info>`__ |
|||
|
|||
Maintainers |
|||
----------- |
|||
* `IT-Projects LLC <https://it-projects.info>`__ |
|||
|
|||
To get a guaranteed support |
|||
you are kindly requested to purchase the module |
|||
at `odoo apps store <https://apps.odoo.com/apps/modules/11.0/mail_move_message/>`__. |
|||
|
|||
Thank you for understanding! |
|||
|
|||
`IT-Projects Team <https://www.it-projects.info/team>`__ |
|||
|
|||
Further information |
|||
=================== |
|||
|
|||
Demo: http://runbot.it-projects.info/demo/mail-addons/11.0 |
|||
|
|||
HTML Description: https://apps.odoo.com/apps/modules/11.0/mail_move_message/ |
|||
|
|||
Usage instructions: `<doc/index.rst>`_ |
|||
|
|||
Changelog: `<doc/changelog.rst>`_ |
|||
|
|||
Notifications on updates: `via Atom <https://github.com/it-projects-llc/mail-addons/commits/11.0/mail_move_message.atom>`_, `by Email <https://blogtrottr.com/?subscribe=https://github.com/it-projects-llc/mail-addons/commits/11.0/mail_move_message.atom>`_ |
|||
|
|||
Further information and discussion: http://yelizariev.github.io/odoo/module/2015/04/10/mail-relocation.html |
|||
|
|||
Tested on Odoo 8.0 d023c079ed86468436f25da613bf486a4a17d625 |
|||
Tested on Odoo 11.0 e9454e79e27d0b85546132cbe00b391e974c66bf |
@ -1,2 +1,4 @@ |
|||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). |
|||
|
|||
from . import controllers |
|||
from . import mail_move_message_models |
@ -0,0 +1,30 @@ |
|||
# Copyright 2016 Ildar Nasyrov <https://it-projects.info/team/iledarn> |
|||
# Copyright 2017 Ilmir Karamov <https://it-projects.info/team/ilmir-k> |
|||
# Copyright 2017 Lilia Salihova |
|||
# Copyright 2016-2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev> |
|||
# Copyright 2018 Kolushov Alexandr <https://it-projects.info/team/KolushovAlexandr> |
|||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). |
|||
|
|||
{ |
|||
'name': 'Mail Relocation', |
|||
'version': '11.0.1.0.5', |
|||
'author': 'IT-Projects LLC, Ivan Yelizariev, Pavel Romanchenko', |
|||
'license': 'LGPL-3', |
|||
'category': 'Discuss', |
|||
'images': ['images/m1.png'], |
|||
"support": "apps@it-projects.info", |
|||
'website': 'https://twitter.com/yelizariev', |
|||
'price': 100.00, |
|||
'currency': 'EUR', |
|||
'depends': [ |
|||
'mail_all', |
|||
], |
|||
'data': [ |
|||
'mail_move_message_views.xml', |
|||
'data/mail_move_message_data.xml', |
|||
], |
|||
'qweb': [ |
|||
'static/src/xml/mail_move_message_main.xml', |
|||
], |
|||
'installable': True, |
|||
} |
@ -1,21 +0,0 @@ |
|||
{ |
|||
'name': 'Mail relocation', |
|||
'version': '1.0.5', |
|||
'author': 'IT-Projects LLC, Ivan Yelizariev, Pavel Romanchenko', |
|||
'license': 'LGPL-3', |
|||
'category': 'Discuss', |
|||
'images': ['images/m1.png'], |
|||
"support": "apps@it-projects.info", |
|||
'website': 'https://twitter.com/yelizariev', |
|||
'price': 100.00, |
|||
'currency': 'EUR', |
|||
'depends': ['mail_all', 'web_polymorphic_field'], |
|||
'data': [ |
|||
'mail_move_message_views.xml', |
|||
'data/mail_move_message_data.xml', |
|||
], |
|||
'qweb': [ |
|||
'static/src/xml/mail_move_message_main.xml', |
|||
], |
|||
'installable': False, |
|||
} |
@ -1 +1,3 @@ |
|||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). |
|||
|
|||
from . import main |
@ -0,0 +1,35 @@ |
|||
================= |
|||
Mail Relocation |
|||
================= |
|||
|
|||
Installation |
|||
============ |
|||
|
|||
* `Install <https://odoo-development.readthedocs.io/en/latest/odoo/usage/install-module.html>`__ this module in a usual way |
|||
|
|||
Configuration |
|||
============= |
|||
|
|||
* Open ``[[ Settings ]] >> Mail Relocation`` menu |
|||
* In **Model** field add models to be used for message relocation |
|||
* Check the box **[x] Move Followers** to move followers by default when relocation |
|||
|
|||
Usage |
|||
===== |
|||
|
|||
Move message |
|||
------------ |
|||
|
|||
* Open ``[[ Discuss ]] >> Inbox`` menu |
|||
* Click on icon of two cross arrows |
|||
* Select a record you need |
|||
* Click **Move** |
|||
RESULT: The message has been moved to the record selected. |
|||
|
|||
Move to origin |
|||
-------------- |
|||
|
|||
* Open the record where the message was moved to |
|||
* Click on the two cross arrows icon highlighted as red |
|||
* Check the box **[x] Move to origin** |
|||
RESULT: The message has been returned back to the original record. |
Before Width: 1012 | Height: 546 | Size: 39 KiB After Width: 667 | Height: 446 | Size: 32 KiB |
Before Width: 149 | Height: 149 | Size: 1.5 KiB After Width: 100 | Height: 100 | Size: 2.1 KiB |
Before Width: 1054 | Height: 562 | Size: 57 KiB After Width: 667 | Height: 446 | Size: 32 KiB |
Before Width: 904 | Height: 482 | Size: 42 KiB After Width: 658 | Height: 465 | Size: 44 KiB |