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

[17.0][WIP][MIG] connector_jira_tempo: Migration to 17.0 #111

Draft
wants to merge 29 commits into
base: 17.0
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
1c46838
[UPD] Brainbean Apps => CorporateHub
alexey-pelykh Nov 4, 2020
aad75b5
[ADD] connector_jira_tempo
simahawk Nov 22, 2018
f538cd0
Fix tempo api call with actual username instead of key
guewen Mar 18, 2019
7a0d5b9
Handle 404 errors on tempo requests
guewen Apr 3, 2019
52e37c7
Tempo: sync status, add tests
simahawk May 8, 2019
8be92fd
Tempo: add hook to validate TS
simahawk May 29, 2019
38ac714
[ADD] icon.png
OCA-git-bot Jul 12, 2019
38fbe2a
[MIG] connector_jira_tempo: Migration to 12.0
alexey-pelykh Aug 31, 2019
fd40c78
[UPD] README.rst
OCA-git-bot Oct 28, 2019
6489902
[ADD] connector_jira_tempo_base, connector_jira_tempo_project_role
alexey-pelykh Aug 30, 2019
61b06d0
[FIX][11.0] Fix get timesheet lines domain
jcoux Jan 29, 2020
8283c19
connector_jira_tempo 12.0.2.1.0
OCA-git-bot Feb 14, 2020
aefef4e
[FIX][11.0] Remove enterprise related code
jcoux Feb 26, 2020
b691dce
connector_jira_tempo 12.0.2.1.1
OCA-git-bot Feb 27, 2020
ab62e05
[IMP] connector_jira_tempo: black, isort, prettier
grindtildeath Aug 6, 2020
0c392aa
[MIG] connector_jira_tempo: Migration to 13.0
grindtildeath Aug 6, 2020
4d6431d
[UPD] README.rst
OCA-git-bot Feb 10, 2021
63014cc
[IMP] connector_jira_tempo: black, isort, prettier
Jun 22, 2022
f84900d
[15.0][MIG] connector_jira_tempo: Migration to 15.0
Jun 22, 2022
73686e1
[UPD] Update connector_jira_tempo.pot
Jul 25, 2022
d6702e5
[UPD] README.rst
OCA-git-bot Jul 25, 2022
8f2ff21
[UPD] README.rst
OCA-git-bot Sep 3, 2023
07fde06
user mapping work
gurneyalex Feb 16, 2024
15ddf05
connector_jira_tempo: handle missing key
gurneyalex Apr 10, 2024
e5a46d4
connector_jira_tempo: migrate to cloud version
gurneyalex Apr 19, 2024
9378842
tempo connector: fix TS approval sync
gurneyalex Apr 19, 2024
3cdccfe
[FIX] connector_jira_tempo: validation status
gurneyalex Apr 24, 2024
3d2104a
[IMP] connector_jira_tempo: pre-commit auto-fixes
SilvioC2C Jul 11, 2024
2dd16be
[WIP][MIG] connector_jira_tempo: Migration to 17.0
SilvioC2C Jul 11, 2024
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
Prev Previous commit
Next Next commit
[FIX] connector_jira_tempo: validation status
on Tempo Cloud the validation status have changed:
* in_review: added
* waiting_for_approval: dropped
* ready_to_submit: dropped
  • Loading branch information
gurneyalex authored and SilvioC2C committed Jul 11, 2024
commit 3cdccfe148d48144dd71d5aee2fa039bfa7a73d6
8 changes: 6 additions & 2 deletions connector_jira_tempo/models/account_analytic_line/common.py
Original file line number Diff line number Diff line change
@@ -15,8 +15,12 @@ class AccountAnalyticLine(models.Model):
jira_tempo_status = fields.Selection(
selection=[
("approved", "Approved"),
("waiting_for_approval", "Waiting for approval"),
("ready_to_submit", "Ready to submit"),
("in_review", "In Review"),
(
"waiting_for_approval",
"Waiting for approval",
), # no longer used on cloud version
("ready_to_submit", "Ready to submit"), # no longer used on cloud version
("open", "Open"),
]
)