-
-
Notifications
You must be signed in to change notification settings - Fork 785
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
[15.0][IMP] project_timeline: improved timeline handling for project tasks #1342
Merged
OCA-git-bot
merged 2 commits into
OCA:15.0
from
Tecnativa:15.0-imp-project_timeline-TT50618
Oct 3, 2024
Merged
[15.0][IMP] project_timeline: improved timeline handling for project tasks #1342
OCA-git-bot
merged 2 commits into
OCA:15.0
from
Tecnativa:15.0-imp-project_timeline-TT50618
Oct 3, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The fields `date_assign` and `date_end` can't be used, as they are automatically rewritten on certain flow events (user assignation and stage changed to finished one), so we need dedicated fields for the planning. A previous change switches `date_assign` to `date_start`, but it didn't change demo data, and better to use a consistent naming, prefixing both fields with `planned_`. This includes the migration scripts for preserving previous data, and automations to fill planned data from the previous fields. It also pre-fills planning information from assignation date/close date as a best effort pre-planning for existing tasks. TT50618 Co-Authored-By: Pedro M. Baeza <[email protected]>
pedrobaeza
approved these changes
Sep 27, 2024
victoralmau
changed the title
[15.0][IMP]project_timeline: improved timeline handling for project tasks
[15.0][IMP] project_timeline: improved timeline handling for project tasks
Sep 30, 2024
Ping @chienandalu |
chienandalu
approved these changes
Oct 2, 2024
/ocabot merge nobump |
This PR looks fantastic, let's merge it! |
Congratulations, your PR was merged at 64ec7b0. Thanks a lot for contributing to OCA. ❤️ |
carlosdauden
added a commit
to Tecnativa/tms
that referenced
this pull request
Oct 3, 2024
…timeline Adapt changes after this PR: OCA/project#1342
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
FWP from 14.0: #1335 + #1345
Improved timeline handling for project tasks
The fields
date_assign
anddate_end
can't be used, as they are automatically rewritten on certain flow events (user assignation and stage changed to finished one), so we need dedicated fields for the planning. A previous change switchesdate_assign
todate_start
, but it didn't change demo data, and better to use a consistent naming, prefixing both fields withplanned_
.This includes the migration scripts for preserving previous data, and automations to fill planned data from the previous fields. It also pre-fills planning information from assignation date/close date as a best effort pre-planning for existing tasks.
Please @pedrobaeza and @sergio-teruel can you review it?
@Tecnativa TT50618