Browse Source

FEB 18: [FIX] Bug Fixed 'odoo_jira_connector'

pull/231/merge
Cybrosys Technologies 2 months ago
parent
commit
52289c6785
  1. 2
      odoo_jira_connector/__manifest__.py
  2. 4
      odoo_jira_connector/doc/RELEASE_NOTES.md
  3. 2
      odoo_jira_connector/models/ir_attachment.py

2
odoo_jira_connector/__manifest__.py

@ -21,7 +21,7 @@
###############################################################################
{
'name': 'Odoo Jira Connector',
'version': '16.0.1.0.0',
'version': '16.0.1.0.1',
'category': 'Project',
'summary': 'Odoo Jira Connector is a valuable integration tool for '
'businesses that use both Odoo and Jira. By connecting these '

4
odoo_jira_connector/doc/RELEASE_NOTES.md

@ -1,6 +1,8 @@
## Module <odoo_jira_connector>
#### 23.11.2023
#### Version 16.0.1.0.0
#### Version 16.0.1.0.1
#### ADD
- Initial commit for Odoo Jira Connector
#### BUG FIX
- Fix the issue with creating employee with the imported users from jira

2
odoo_jira_connector/models/ir_attachment.py

@ -36,6 +36,8 @@ class IrAttachment(models.Model):
@api.model_create_multi
def create(self, values_list):
""" For creating attachment in Jira and attachment in the chatter """
if not values_list:
return super(IrAttachment, self).create(values_list)
attachment = super(IrAttachment, self).create(values_list)
if not values_list[0].get('attachment_id_jira'):
ir_config_parameter = self.env['ir.config_parameter'].sudo()

Loading…
Cancel
Save