Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ISSUE-3576] Add Company Site to CW ticket cards and editor #439

Merged
merged 2 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion djconnectwise/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
VERSION = (1, 6, 1, 'final')
VERSION = (1, 6, 2, 'final')

# pragma: no cover
if VERSION[-1] != "final":
Expand Down
2 changes: 2 additions & 0 deletions djconnectwise/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -2481,6 +2481,7 @@ class TicketSynchronizerMixin:
'source': (models.Source, 'source'),
'workType': (models.WorkType, 'work_type'),
'workRole': (models.WorkRole, 'work_role'),
'site': (models.CompanySite, 'company_site'),
}

API_FIELD_NAMES = {
Expand Down Expand Up @@ -2513,6 +2514,7 @@ class TicketSynchronizerMixin:
'initial_description': 'initialDescription',
'project': 'project',
'phase': 'phase',
'company_site': 'site'
}

def __init__(self, *args, **kwargs):
Expand Down
Loading