diff --git a/odoo_trello_connector/README.rst b/odoo_trello_connector/README.rst new file mode 100755 index 000000000..c986ecc06 --- /dev/null +++ b/odoo_trello_connector/README.rst @@ -0,0 +1,52 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Odoo Trello Connector +===================== +Integrate Projects and Tasks between Trello and Odoo + +Configuration +============= +* First you need to create Trello token. +1) Go to https://trello.com/power-ups/admin and login to your account. +2) Click on New button and after filling all required fields click on create button. +3) Click on Generate new api key button under API key tab. +4) You can see the API key here. +5) Click on token link for generating token. +6) You can see the username here. Click on Allow button to generate token. + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developer: (V15) Unnimaya C O, Contact : 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 `__ + +Further information +=================== +HTML Description: ``__ diff --git a/odoo_trello_connector/__init__.py b/odoo_trello_connector/__init__.py new file mode 100755 index 000000000..b2744bb0c --- /dev/null +++ b/odoo_trello_connector/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import models diff --git a/odoo_trello_connector/__manifest__.py b/odoo_trello_connector/__manifest__.py new file mode 100755 index 000000000..3e92e73bf --- /dev/null +++ b/odoo_trello_connector/__manifest__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +{ + 'name': "Odoo Trello Connector", + 'version': '15.0.1.0.0', + 'category': 'Project, Productivity', + 'summary': """Integrate Projects and Tasks between Trello and Odoo""", + 'description': """This module helps to import all Projects and Tasks from + Trello to Odoo, and export all Projects and Tasks from Odoo to Trello. + Here, it will create stages automatically while importing and exporting + the Projects and Tasks.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['project'], + 'data': [ + 'views/res_users_views.xml' + ], + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/odoo_trello_connector/doc/RELEASE_NOTES.md b/odoo_trello_connector/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..f2487fd34 --- /dev/null +++ b/odoo_trello_connector/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 08.01.2024 +#### Version 15.0.1.0.0 +#### ADD + +- Initial commit for Odoo Trello Connector diff --git a/odoo_trello_connector/models/__init__.py b/odoo_trello_connector/models/__init__.py new file mode 100755 index 000000000..9ec6b6dca --- /dev/null +++ b/odoo_trello_connector/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import project_project +from . import project_task +from . import res_users diff --git a/odoo_trello_connector/models/project_project.py b/odoo_trello_connector/models/project_project.py new file mode 100755 index 000000000..0c4cd9179 --- /dev/null +++ b/odoo_trello_connector/models/project_project.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import fields, models + + +class ProjectProject(models.Model): + """Inherits project. project for including Trello fields""" + _inherit = 'project.project' + + trello_reference = fields.Char(string="Trello Reference", + help="Trello Reference of the Task") diff --git a/odoo_trello_connector/models/project_task.py b/odoo_trello_connector/models/project_task.py new file mode 100755 index 000000000..254465ca5 --- /dev/null +++ b/odoo_trello_connector/models/project_task.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import fields, models + + +class ProjectTask(models.Model): + """Inherits project. task for including the trello_reference field""" + _inherit = 'project.task' + + trello_reference = fields.Char(string="Trello Reference", + help="Trello Reference of the Task") + stage_reference = fields.Char(string="Trello Stage Reference", + help="Trello Reference of the Task " + "stage") diff --git a/odoo_trello_connector/models/res_users.py b/odoo_trello_connector/models/res_users.py new file mode 100755 index 000000000..b000ad749 --- /dev/null +++ b/odoo_trello_connector/models/res_users.py @@ -0,0 +1,259 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +import requests +from odoo import fields, models, _ +from odoo.exceptions import ValidationError + + +class ResUsers(models.Model): + """Inherits res users for including Trello fields and functions""" + _inherit = 'res.users' + + api_key = fields.Char(string='API KEY', + help="It is used to connect with Trello") + token = fields.Char(string='Token', + help="The token for connecting Odoo with Trello") + user_name = fields.Char(string='Trello Username', + help="The member name used in Trello") + + _sql_constraints = [ + ('api_key_uniq', + 'unique(api_key)', + 'API Key must be unique per User !'), + ('username_uniq', + 'unique(user_name)', + 'Username must be unique per User !') + ] + + def action_import(self): + """Function that imports boards, lists and cards from Trello to Odoo""" + if not self.api_key or not self.token or not self.user_name: + raise ValidationError(_("Please fill all fields.")) + query = { + "key": self.api_key, + "token": self.token, + } + header = { + "Accept": "application/json" + } + member = self.get_member_id(header, self.user_name) + for board in self.get_boards(header, query, + member): + project = self.env['project.project'].sudo().search( + [('trello_reference', '=', board['id'])]) + if not project: + project = self.env['project.project'].sudo().create({ + 'name': board['name'], + 'description': board['desc'], + 'trello_reference': board['id'] + }) + for rec in self.get_list_on_board(header, query, board['id']): + stages = self.env[ + 'project.task.type'].search([]) + if rec['name'] not in stages.mapped('name'): + self.env['project.task.type'].sudo().create({ + 'name': rec['name'] + }) + project.sudo().write( + {'type_ids': [(4, stages.search([( + 'name', '=', rec['name'])])[0].id, project.id)]}) + for card in self.get_cards(header, query, + board['id']): + if card['id'] not in self.env['project.task'].search([]).mapped( + 'trello_reference'): + self.env['project.task'].create({ + 'name': card['name'], + 'project_id': project.id, + 'stage_id': self.env[ + 'project.task.type'].search([('name', '=', + self.get_a_list( + header, query, + card['idList'])[ + 'name'])])[0].id, + 'trello_reference': card['id'] + }) + + def action_export(self): + """Function that exports Project, Stages and Tasks from Odoo to + Trello""" + if not self.api_key or not self.token or not self.user_name: + raise ValidationError(_("Please fill all fields")) + query = { + "key": self.api_key, + "token": self.token, + } + header = { + "Accept": "application/json" + } + for project in self.env['project.project'].search([]): + if not project.trello_reference: + board = self.create_board(header, query, + project.name) + project.write({ + 'trello_reference': board + }) + lists_on_board = self.get_list_on_board(header, + query, + project.trello_reference) + for stage in project.type_ids: + if stage.name not in [rec['name'] for rec in + lists_on_board]: + list_ref = self.create_list(header, query, + project.trello_reference, + stage.name)['id'] + self.env['project.task'].search( + [('project_id', '=', project.id), + ('stage_id', '=', stage.id)]).write( + { + 'stage_reference': list_ref + }) + for task in self.env['project.task'].search([ + ('project_id', '=', project.id), + ('display_project_id', '!=', False) + ]): + for rec in lists_on_board: + if rec['name'] == task.stage_id.name: + task.write({ + 'stage_reference': rec['id'] + }) + if not task.trello_reference: + card = self.create_card(header, query, + task.stage_reference, + task.name) + task.write({ + 'trello_reference': card['id'] + }) + + def get_member_id(self, headers, username): + """Returns member id of the user""" + try: + response = requests.get( + f"https://api.trello.com/1/members/{username}", + headers=headers, timeout=10) + if response.status_code == 200: + return response.json()['id'] + if response.status_code == 404: + raise ValidationError(_('Please Check Your Credentials')) + raise ValidationError(_(response.text.capitalize())) + except requests.exceptions.RequestException as e: + raise ValidationError(_(f"An unexpected error occurred: {e}")) + + def get_boards(self, headers, query, member_id): + """Returns details of all boards that a member belongs to""" + query['filter'] = 'open' + try: + response = requests.get( + f"https://api.trello.com/1/members/{member_id}/boards", + headers=headers, timeout=10, params=query) + if response.status_code == 200: + return response.json() + raise ValidationError(_(response.text.capitalize())) + except requests.exceptions.RequestException as e: + raise ValidationError(_(f"An unexpected error occurred: {e}")) + + def get_cards(self, headers, query, board_id): + """Returns all cards on a board""" + try: + response = requests.get( + f"https://api.trello.com/1/boards/{board_id}/cards", + headers=headers, timeout=10, params=query) + if response.status_code == 200: + return response.json() + raise ValidationError(_(response.text.capitalize())) + except requests.exceptions.RequestException as e: + raise ValidationError(_(f"An unexpected error occurred: {e}")) + + def get_list_on_board(self, headers, query, board_id): + """Returns all list of a board""" + try: + response = requests.get( + f"https://api.trello.com/1/boards/{board_id}/lists", + headers=headers, timeout=10, params=query) + if response.status_code == 200: + return response.json() + raise ValidationError(_(response.text.capitalize())) + except requests.exceptions.RequestException as e: + raise ValidationError(_(f"An unexpected error occurred: {e}")) + + def create_board(self, headers, query, name): + """Create new board in Trello""" + try: + query['name'] = {name} + response = requests.post("https://api.trello.com/1/boards/", + headers=headers, params=query, + timeout=10) + if response.status_code == 200: + lists = requests.get( + f"https://api.trello.com/1/boards/{response.json()['id']}/" + f"lists", + headers=headers, timeout=10, params=query) + if lists.status_code == 200: + for rec in lists.json(): + query['closed'] = 'true' + requests.put( + f"https://api.trello.com/1/lists/{rec['id']}", + headers=headers, params=query, timeout=10) + query['closed'] = 'false' + else: + raise ValidationError(_(response.text.capitalize())) + return response.json()['id'] + except requests.exceptions.RequestException as e: + raise ValidationError(_(f"An unexpected error occurred: {e}")) + + def create_list(self, headers, query, board_id, name): + """Create new list in Trello""" + query['name'] = {name} + try: + response = requests.post( + f"https://api.trello.com/1/boards/{board_id}/lists", + headers=headers, timeout=10, params=query) + if response.status_code == 200: + return response.json() + raise ValidationError(_(response.text.capitalize())) + except requests.exceptions.RequestException as e: + raise ValidationError(_(f"An unexpected error occurred: {e}")) + + def create_card(self, headers, query, idlist, name): + """Create new card in Trello""" + query['idList'] = idlist + query['name'] = {name} + try: + response = requests.post( + "https://api.trello.com/1/cards", headers=headers, + params=query, timeout=10) + if response.status_code == 200: + return response.json() + raise ValidationError(_(response.text.capitalize())) + except requests.exceptions.RequestException as e: + raise ValidationError(_(f"An unexpected error occurred: {e}")) + + def get_a_list(self, headers, query, idlist): + """Method for fetching a list""" + try: + response = requests.get( + f"https://api.trello.com/1/lists/{idlist}", headers=headers, + params=query, timeout=10) + if response.status_code == 200: + return response.json() + raise ValidationError(_(response.text.capitalize())) + except requests.exceptions.RequestException as e: + raise ValidationError(_(f"An unexpected error occurred: {e}")) diff --git a/odoo_trello_connector/static/description/assets/icons/check.png b/odoo_trello_connector/static/description/assets/icons/check.png new file mode 100755 index 000000000..c8e85f51d Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/check.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/cogs.png b/odoo_trello_connector/static/description/assets/icons/cogs.png new file mode 100755 index 000000000..95d0bad62 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/cogs.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/consultation.png b/odoo_trello_connector/static/description/assets/icons/consultation.png new file mode 100755 index 000000000..8319d4baa Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/consultation.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/ecom-black.png b/odoo_trello_connector/static/description/assets/icons/ecom-black.png new file mode 100755 index 000000000..a9385ff13 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/ecom-black.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/education-black.png b/odoo_trello_connector/static/description/assets/icons/education-black.png new file mode 100755 index 000000000..3eb09b27b Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/education-black.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/hotel-black.png b/odoo_trello_connector/static/description/assets/icons/hotel-black.png new file mode 100755 index 000000000..130f613be Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/hotel-black.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/license.png b/odoo_trello_connector/static/description/assets/icons/license.png new file mode 100755 index 000000000..a5869797e Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/license.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/lifebuoy.png b/odoo_trello_connector/static/description/assets/icons/lifebuoy.png new file mode 100755 index 000000000..658d56ccc Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/lifebuoy.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/logo.png b/odoo_trello_connector/static/description/assets/icons/logo.png new file mode 100755 index 000000000..478462d3e Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/logo.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/manufacturing-black.png b/odoo_trello_connector/static/description/assets/icons/manufacturing-black.png new file mode 100755 index 000000000..697eb0e9f Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/manufacturing-black.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/pos-black.png b/odoo_trello_connector/static/description/assets/icons/pos-black.png new file mode 100755 index 000000000..97c0f90c1 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/pos-black.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/puzzle.png b/odoo_trello_connector/static/description/assets/icons/puzzle.png new file mode 100755 index 000000000..65cf854e7 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/puzzle.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/restaurant-black.png b/odoo_trello_connector/static/description/assets/icons/restaurant-black.png new file mode 100755 index 000000000..4a35eb939 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/restaurant-black.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/service-black.png b/odoo_trello_connector/static/description/assets/icons/service-black.png new file mode 100755 index 000000000..301ab51cb Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/service-black.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/trading-black.png b/odoo_trello_connector/static/description/assets/icons/trading-black.png new file mode 100755 index 000000000..9398ba2f1 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/trading-black.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/training.png b/odoo_trello_connector/static/description/assets/icons/training.png new file mode 100755 index 000000000..884ca024d Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/training.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/update.png b/odoo_trello_connector/static/description/assets/icons/update.png new file mode 100755 index 000000000..ecbc5a01a Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/update.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/user.png b/odoo_trello_connector/static/description/assets/icons/user.png new file mode 100755 index 000000000..6ffb23d9f Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/user.png differ diff --git a/odoo_trello_connector/static/description/assets/icons/wrench.png b/odoo_trello_connector/static/description/assets/icons/wrench.png new file mode 100755 index 000000000..6c04dea0f Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/wrench.png differ diff --git a/odoo_trello_connector/static/description/assets/modules/checklist.png b/odoo_trello_connector/static/description/assets/modules/checklist.png new file mode 100755 index 000000000..6c4d5ba06 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/modules/checklist.png differ diff --git a/odoo_trello_connector/static/description/assets/modules/deadline.png b/odoo_trello_connector/static/description/assets/modules/deadline.png new file mode 100755 index 000000000..2fbb96719 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/modules/deadline.png differ diff --git a/odoo_trello_connector/static/description/assets/modules/gantt.png b/odoo_trello_connector/static/description/assets/modules/gantt.png new file mode 100755 index 000000000..eace68ead Binary files /dev/null and b/odoo_trello_connector/static/description/assets/modules/gantt.png differ diff --git a/odoo_trello_connector/static/description/assets/modules/task_timer.png b/odoo_trello_connector/static/description/assets/modules/task_timer.png new file mode 100755 index 000000000..d2dc7ba40 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/modules/task_timer.png differ diff --git a/odoo_trello_connector/static/description/assets/modules/template.png b/odoo_trello_connector/static/description/assets/modules/template.png new file mode 100755 index 000000000..2da4a2db1 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/modules/template.png differ diff --git a/odoo_trello_connector/static/description/assets/modules/unique.png b/odoo_trello_connector/static/description/assets/modules/unique.png new file mode 100755 index 000000000..17f12efc3 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/modules/unique.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot.png new file mode 100755 index 000000000..8ea52e06b Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot0.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot0.png new file mode 100755 index 000000000..770989c8d Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot0.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot01.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot01.png new file mode 100755 index 000000000..f358ff525 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot01.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot02.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot02.png new file mode 100755 index 000000000..c673dd603 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot02.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot03.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot03.png new file mode 100755 index 000000000..e11027183 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot03.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot04.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot04.png new file mode 100755 index 000000000..bcb51f709 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot04.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot1.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot1.png new file mode 100755 index 000000000..5962317fe Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot1.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot10.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot10.png new file mode 100755 index 000000000..9c2a5aa07 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot10.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot11.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot11.png new file mode 100755 index 000000000..0207bdaf8 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot11.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot2.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot2.png new file mode 100755 index 000000000..db76ccdf8 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot2.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot3.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot3.png new file mode 100755 index 000000000..7a607a9a0 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot3.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot4.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot4.png new file mode 100755 index 000000000..c8159e8b6 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot4.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot5.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot5.png new file mode 100755 index 000000000..2848a9985 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot5.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot6.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot6.png new file mode 100755 index 000000000..3a3040fb7 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot6.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot7.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot7.png new file mode 100755 index 000000000..f917a46e7 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot7.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot8.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot8.png new file mode 100755 index 000000000..bdd44f741 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot8.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/Screenshot9.png b/odoo_trello_connector/static/description/assets/screenshots/Screenshot9.png new file mode 100755 index 000000000..2fbded9dd Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/Screenshot9.png differ diff --git a/odoo_trello_connector/static/description/assets/screenshots/hero.gif b/odoo_trello_connector/static/description/assets/screenshots/hero.gif new file mode 100755 index 000000000..bfd568f2a Binary files /dev/null and b/odoo_trello_connector/static/description/assets/screenshots/hero.gif differ diff --git a/odoo_trello_connector/static/description/banner.jpg b/odoo_trello_connector/static/description/banner.jpg new file mode 100755 index 000000000..130495af3 Binary files /dev/null and b/odoo_trello_connector/static/description/banner.jpg differ diff --git a/odoo_trello_connector/static/description/icon.png b/odoo_trello_connector/static/description/icon.png new file mode 100755 index 000000000..9e7bcfacd Binary files /dev/null and b/odoo_trello_connector/static/description/icon.png differ diff --git a/odoo_trello_connector/static/description/index.html b/odoo_trello_connector/static/description/index.html new file mode 100755 index 000000000..262dacea6 --- /dev/null +++ b/odoo_trello_connector/static/description/index.html @@ -0,0 +1,708 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+
+
+

+ Odoo Trello Connector

+

+ Integrate Projects and Tasks Between Trello and Odoo +

+ +
+
+ +
+
+

+ Overview +

+
+
+

+ This module helps to import all Projects and Tasks from Trello + to Odoo, and to export all Projects and Tasks from Odoo to + Trello. Here, it will create stages automatically while + importing and exporting the Tasks.

+
+
+
+
+

+ Features +

+
+
+
+ +
+
+

+ Exports all Projects from Odoo to Trello

+
+
+
+
+ +
+
+

+ Exports all Tasks from Odoo to Trello

+
+
+
+
+ +
+
+

+ Imports all Projects from Trello to Odoo

+
+
+
+
+ +
+
+

+ Imports all Tasks from Trello to Odoo

+
+
+
+
+
+
+

+ Screenshots +

+
+
+

+ Login to Trello Power-Up Admin Portal and click on the New + button under Power-Ups tab

+ +
+
+

+ Fill all marked fields and click on Create button.

+ +
+
+

+ Click on Generate a new API key button under API key tab.

+ +
+
+

+ We can see the API key here

+

For getting token, click on the Token link.

+ +
+
+

+ We can see the Username here

+

Click on the Allow button for generating the Token.

+ +
+
+

+ We can see the Trello Token here.

+ +
+
+

+ Add the Credentials for connecting with Trello

+ +
+
+

+ Projects in Odoo before Import +

+ +
+
+

+ Click on IMPORT button

+ +
+
+

+ Projects in Trello

+ +
+
+

+ Imported Projects in Odoo

+ +
+
+

+ Tasks in Trello project

+ +
+
+

+ Tasks in imported Projects in Odoo +

+ +
+ +
+

+ Click on EXPORT button

+ +
+ +
+

+ Exported Projects in Trello

+ +
+
+

+ Tasks in Odoo project

+ +
+ +
+

+ Tasks in exported projects in Trello

+ +
+
+ +
+
+

Suggested Products

+
+ +
+
+ + + +
+
+
+

Our Services

+
+
+ +
+
+ +
+
+ Odoo + Customization
+
+
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+
+
+ +
+
+ Odoo + Consultancy
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+
+ + +
+
+
+

Our Industries

+
+
+ +
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+
+
+ + + +
+
+
+

Need Help?

+
+
+
+ +
+ +
+ + +
+
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ \ No newline at end of file diff --git a/odoo_trello_connector/views/res_users_views.xml b/odoo_trello_connector/views/res_users_views.xml new file mode 100755 index 000000000..4ad7a89a5 --- /dev/null +++ b/odoo_trello_connector/views/res_users_views.xml @@ -0,0 +1,26 @@ + + + + + res.users.view.form.inherit.odoo.trello.connector + + res.users + form + + + + + + + + +