diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..f14f689 --- /dev/null +++ b/README.rst @@ -0,0 +1,6 @@ +Moving mails to another thread +============================== + +Description: https://www.odoo.com/apps/modules/8.0/mail_move_message/ + +Tested on Odoo 8.0 d023c079ed86468436f25da613bf486a4a17d625 diff --git a/__openerp__.py b/__openerp__.py index d49e5bd..3d9af20 100644 --- a/__openerp__.py +++ b/__openerp__.py @@ -1,20 +1,18 @@ { - 'name' : 'Move message to thread', + 'name' : 'Moving mails to another thread', 'version' : '1.0.0', 'author' : 'Ivan Yelizariev', - 'category' : 'Custom', + 'category' : 'Social Network', 'website' : 'https://yelizariev.github.io', - 'description': """ -Module allows move message to any thread. For example, customer send message to salesperson's alias. Then salesperson is able to move such private message to lead thread. - -Tested on Odoo 8.0 ab7b5d7732a7c222a0aea45bd173742acd47242d - """, + 'price': 9.00, + 'currency': 'EUR', 'depends' : ['mail'], + 'images': ['images/inbox.png'], 'data':[ 'mail_move_message_views.xml', ], 'qweb': [ - 'static/src/xml/*.xml', + 'static/src/xml/mail_move_message_main.xml', ], 'installable': True } diff --git a/images/inbox.png b/images/inbox.png new file mode 100644 index 0000000..f9657b3 Binary files /dev/null and b/images/inbox.png differ diff --git a/static/description/icon.png b/static/description/icon.png new file mode 100644 index 0000000..8d21b70 Binary files /dev/null and b/static/description/icon.png differ diff --git a/static/description/inbox-move.png b/static/description/inbox-move.png new file mode 100644 index 0000000..c35c57c Binary files /dev/null and b/static/description/inbox-move.png differ diff --git a/static/description/inbox.png b/static/description/inbox.png new file mode 100644 index 0000000..1816fed Binary files /dev/null and b/static/description/inbox.png differ diff --git a/static/description/index.html b/static/description/index.html new file mode 100644 index 0000000..a192540 --- /dev/null +++ b/static/description/index.html @@ -0,0 +1,104 @@ +
+
+
+

Moving mails to another thread

+

Relocate mails from customers to a correct place (lead, task etc.)

+
+ +
+

+ The module can help you to organise mails from customers. +

+

+ If customer send mail to user's personal alias (e.g. admin@yourcompany.example.com), an user would be able to move (attach) such mail to corresponding record. +

+
+
+
+ +
+
+
+

Usage

+

+ Click on an icon of two cross arrows. +

+
+ +
+
+ +
+
+
+
+ +
+
+
+

+ Find a record you need and click on "Move" button. +

+
+ +
+
+ +
+
+
+
+ +
+
+
+

+ Done! You've attached mail and its child mails to the record. +

+
+ +
+
+ +
+

+ Scroll down... Moved mails are marked by highlighted icon. +

+
+ +
+
+
+
+ +
+
+
+

+ You could easily return mails back if you change your mind. +

+
+ +
+
+ +
+
+
+
+ +
+
+
+

News & updates

+

+ To get information about new interesting modules and updates, subscribe to our website RSS or follow @yelizariev on twitter. +

+ +
+
+
diff --git a/static/description/record-move-back.png b/static/description/record-move-back.png new file mode 100644 index 0000000..a1a1344 Binary files /dev/null and b/static/description/record-move-back.png differ diff --git a/static/description/record1.png b/static/description/record1.png new file mode 100644 index 0000000..8815578 Binary files /dev/null and b/static/description/record1.png differ diff --git a/static/description/record2.png b/static/description/record2.png new file mode 100644 index 0000000..26213b0 Binary files /dev/null and b/static/description/record2.png differ