9 changed files with 163 additions and 109 deletions
@ -1,17 +1,47 @@ |
|||
.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg |
|||
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html |
|||
:alt: License: LGPL-3 |
|||
|
|||
Slack Odoo Connector |
|||
==================== |
|||
========================= |
|||
Allows to integrate with slack. |
|||
|
|||
Installation |
|||
============ |
|||
- www.odoo.com/documentation/16.0/setup/install.html |
|||
- Install our custom addon |
|||
|
|||
Configuration |
|||
============= |
|||
Need to generate slack API token |
|||
|
|||
Company |
|||
------- |
|||
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
|||
|
|||
License |
|||
------- |
|||
General Public License, Version 3 (LGPL v3). |
|||
(https://www.odoo.com/documentation/user/16.0/legal/licenses/licenses.html) |
|||
|
|||
Credits |
|||
======= |
|||
------- |
|||
Developer: Viswanth K v15 @ cybrosys, odoo@cybrosys.com |
|||
Viswanth K v16 @ cybrosys, odoo@cybrosys.com |
|||
|
|||
Contacts |
|||
------- |
|||
* Mail Contact : odoo@cybrosys.com |
|||
* Website : https://cybrosys.com |
|||
|
|||
Bug Tracker |
|||
------- |
|||
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. |
|||
|
|||
Maintainer |
|||
========== |
|||
.. image:: https://cybrosys.com/images/logo.png |
|||
:target: https://cybrosys.com |
|||
|
|||
This module is maintained by Cybrosys Technologies. |
|||
|
|||
For support and more information, please visit `Our Website <https://cybrosys.com/>`__ |
|||
|
|||
Further information |
|||
=================== |
|||
HTML Description: `<static/description/index.html>`__ |
|||
|
@ -1,15 +1,16 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<data noupdate="1"> |
|||
<record id="ir_cron_scheduler_synchronization_slack_odoo" model="ir.cron"> |
|||
<field name="name">Auto Synchronization of slack and odoo</field> |
|||
<field name="model_id" ref="model_mail_message"/> |
|||
<field name="state">code</field> |
|||
<field name="code">model.synchronization_slack()</field> |
|||
<field name="user_id" ref="base.user_root"/> |
|||
<field name="interval_number">1</field> |
|||
<field name="interval_type">minutes</field> |
|||
<field name="numbercall">-1</field> |
|||
</record> |
|||
</data> |
|||
<!-- scheduled action to fetch the meassages from slack--> |
|||
<record id="ir_cron_scheduler_synchronization_slack_odoo" model="ir.cron"> |
|||
<field name="name">Auto Synchronization of slack and odoo</field> |
|||
<field name="model_id" ref="model_mail_message"/> |
|||
<field name="state">code</field> |
|||
<field name="code">model.synchronization_slack()</field> |
|||
<field name="user_id" ref="base.user_root"/> |
|||
<field name="interval_number">1</field> |
|||
<field name="interval_type">minutes</field> |
|||
<field name="numbercall">-1</field> |
|||
</record> |
|||
</data> |
|||
</odoo> |
Loading…
Reference in new issue