diff --git a/odoo_trello_connector/README.rst b/odoo_trello_connector/README.rst new file mode 100755 index 000000000..aae3e5a17 --- /dev/null +++ b/odoo_trello_connector/README.rst @@ -0,0 +1,53 @@ +.. image:: https://img.shields.io/badge/licence-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:(V16) 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 100644 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 100644 index 000000000..03c203e9a --- /dev/null +++ b/odoo_trello_connector/__manifest__.py @@ -0,0 +1,46 @@ +# -*- 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': '16.0.1.0.0', + 'category': 'Project', + 'summary': """Integrate Projects and Tasks between Trello and Odoo""", + 'description': """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.""", + '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', + 'views/project_project_views.xml', + 'views/project_task_views.xml', + ], + 'images': ['static/description/banner.png'], + '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 100644 index 000000000..29be104ae --- /dev/null +++ b/odoo_trello_connector/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 14.11.2023 +#### Version 16.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 100644 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 100644 index 000000000..9519fa87e --- /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 number of the Task") diff --git a/odoo_trello_connector/models/project_task.py b/odoo_trello_connector/models/project_task.py new file mode 100644 index 000000000..da1c67b9c --- /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 number of the Task") + stage_reference = fields.Char(string="Trello Stage Reference", + help="Trello Reference number 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 100644 index 000000000..2bb855912 --- /dev/null +++ b/odoo_trello_connector/models/res_users.py @@ -0,0 +1,233 @@ +# -*- 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)]).filtered( + lambda x: x.stage_id == stage).write({ + 'stage_reference': list_ref + }) + for task in self.env['project.task'].search( + [('project_id', '=', project.id)]).filtered( + lambda x: x.display_project_id): + 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""" + 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())) + + def get_boards(self, headers, query, member_id): + """Returns details of all boards that a member belongs to""" + query['filter'] = 'open' + 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())) + + def get_cards(self, headers, query, board_id): + """Returns all cards on a board""" + 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())) + + def get_list_on_board(self, headers, query, board_id): + """Returns all list of a board""" + 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())) + + def create_board(self, headers, query, name): + """Create new board in Trello""" + 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'] + + def create_list(self, headers, query, board_id, name): + """Create new list in Trello""" + query['name'] = {name} + 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())) + + def create_card(self, headers, query, list_id, name): + """Create new card in Trello""" + query['idList'] = list_id + query['name'] = {name} + 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())) + + def get_a_list(self, headers, query, list_id): + """Method for fetching a list""" + response = requests.get( + f"https://api.trello.com/1/lists/{list_id}", headers=headers, + params=query, timeout=10) + if response.status_code == 200: + return response.json() + raise ValidationError(_(response.text.capitalize())) 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 100644 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/chevron.png b/odoo_trello_connector/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/icons/chevron.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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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/manufacturing-black.png b/odoo_trello_connector/static/description/assets/icons/manufacturing-black.png new file mode 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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/misc/categories.png b/odoo_trello_connector/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/misc/categories.png differ diff --git a/odoo_trello_connector/static/description/assets/misc/check-box.png b/odoo_trello_connector/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/misc/check-box.png differ diff --git a/odoo_trello_connector/static/description/assets/misc/compass.png b/odoo_trello_connector/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/odoo_trello_connector/static/description/assets/misc/compass.png differ diff --git a/odoo_trello_connector/static/description/assets/misc/corporate.png b/odoo_trello_connector/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/odoo_trello_connector/static/description/assets/misc/corporate.png differ diff --git a/odoo_trello_connector/static/description/assets/misc/customer-support.png b/odoo_trello_connector/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/odoo_trello_connector/static/description/assets/misc/customer-support.png differ diff --git a/odoo_trello_connector/static/description/assets/misc/cybrosys-logo.png b/odoo_trello_connector/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/odoo_trello_connector/static/description/assets/misc/cybrosys-logo.png differ diff --git a/odoo_trello_connector/static/description/assets/misc/features.png b/odoo_trello_connector/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/misc/features.png differ diff --git a/odoo_trello_connector/static/description/assets/misc/logo.png b/odoo_trello_connector/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/odoo_trello_connector/static/description/assets/misc/logo.png differ diff --git a/odoo_trello_connector/static/description/assets/misc/pictures.png b/odoo_trello_connector/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/misc/pictures.png differ diff --git a/odoo_trello_connector/static/description/assets/misc/pie-chart.png b/odoo_trello_connector/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/misc/pie-chart.png differ diff --git a/odoo_trello_connector/static/description/assets/misc/right-arrow.png b/odoo_trello_connector/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/misc/right-arrow.png differ diff --git a/odoo_trello_connector/static/description/assets/misc/star.png b/odoo_trello_connector/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/odoo_trello_connector/static/description/assets/misc/star.png differ diff --git a/odoo_trello_connector/static/description/assets/misc/support.png b/odoo_trello_connector/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/misc/support.png differ diff --git a/odoo_trello_connector/static/description/assets/misc/whatsapp.png b/odoo_trello_connector/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/misc/whatsapp.png differ diff --git a/odoo_trello_connector/static/description/assets/modules/l1.png b/odoo_trello_connector/static/description/assets/modules/l1.png new file mode 100644 index 000000000..00d424d4c Binary files /dev/null and b/odoo_trello_connector/static/description/assets/modules/l1.png differ diff --git a/odoo_trello_connector/static/description/assets/modules/l2.png b/odoo_trello_connector/static/description/assets/modules/l2.png new file mode 100644 index 000000000..fc3ff9eb3 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/modules/l2.png differ diff --git a/odoo_trello_connector/static/description/assets/modules/l3.png b/odoo_trello_connector/static/description/assets/modules/l3.png new file mode 100644 index 000000000..686debd81 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/modules/l3.png differ diff --git a/odoo_trello_connector/static/description/assets/modules/l4.png b/odoo_trello_connector/static/description/assets/modules/l4.png new file mode 100644 index 000000000..ae38a4c67 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/modules/l4.png differ diff --git a/odoo_trello_connector/static/description/assets/modules/l5.png b/odoo_trello_connector/static/description/assets/modules/l5.png new file mode 100644 index 000000000..098ad188d Binary files /dev/null and b/odoo_trello_connector/static/description/assets/modules/l5.png differ diff --git a/odoo_trello_connector/static/description/assets/modules/l6.png b/odoo_trello_connector/static/description/assets/modules/l6.png new file mode 100644 index 000000000..f3d21b257 Binary files /dev/null and b/odoo_trello_connector/static/description/assets/modules/l6.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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 index 000000000..60fcc9e06 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 100644 index 000000000..f53ea0784 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 100644 index 000000000..06b00f4c0 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 100644 index 000000000..85b4ec80b 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 100644 index 000000000..bbe2313af 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 100644 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 100644 index 000000000..32f5e8d68 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 100644 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 100644 index 000000000..5bb89284c 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 100644 index 000000000..25c3d3e02 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 100644 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 100644 index 000000000..6f019056f 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.png b/odoo_trello_connector/static/description/banner.png new file mode 100644 index 000000000..98193bded Binary files /dev/null and b/odoo_trello_connector/static/description/banner.png differ diff --git a/odoo_trello_connector/static/description/icon.png b/odoo_trello_connector/static/description/icon.png new file mode 100644 index 000000000..e5d8d91c8 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 100644 index 000000000..caef3d0d7 --- /dev/null +++ b/odoo_trello_connector/static/description/index.html @@ -0,0 +1,697 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Odoo Trello Connector

+

+ Integrate Projects and Tasks Between Trello and Odoo

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

+ Explore This + Module

+
+ + + +
+
+ +
+

+ 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-Ups + Admin + Portal. +

+

+ Click on the New button under Power-Ups tab

+ +
+
+

+ Fill all fields and click Create button. +

+ +
+
+

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

+ +
+
+

+ We can see the API key here.

+

+ Click Token to generate Trello token.

+ +
+
+

+ We can see the Username here.

+

+ Clock Allow button

+ +
+
+

+ 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 Project in Odoo

+ +
+
+

+ Click on EXPORT button

+ +
+
+

+ Exported Projects in Trello

+ +
+
+

+ Tasks in Odoo Project +

+ +
+
+

+ Tasks in exported Project in Trello

+ +
+
+
+ + +
+
+ +
+

+ Related + 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

+
+
+
+
+ + +
+
+ +
+

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/odoo_trello_connector/views/project_project_views.xml b/odoo_trello_connector/views/project_project_views.xml new file mode 100644 index 000000000..9ea5a5af2 --- /dev/null +++ b/odoo_trello_connector/views/project_project_views.xml @@ -0,0 +1,16 @@ + + + + + project.project.view.form.inherit.odoo.trello + .connector + project.project + + 24 + + + + + + + diff --git a/odoo_trello_connector/views/project_task_views.xml b/odoo_trello_connector/views/project_task_views.xml new file mode 100644 index 000000000..f59dc428b --- /dev/null +++ b/odoo_trello_connector/views/project_task_views.xml @@ -0,0 +1,15 @@ + + + + + project.task.view.form.inherit.odoo.trello.connector + + project.task + + + + + + + + diff --git a/odoo_trello_connector/views/res_users_views.xml b/odoo_trello_connector/views/res_users_views.xml new file mode 100644 index 000000000..f2f680e69 --- /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 + + + + + + + + +