Editing Status and% of Release Page in Redmine

I am working on editing the status bar on the problem page. On this page, the% done relationship changes according to status.

  • If% Done is made "0%", the status should be set to New by default.
  • If% Done is done more than “0%” and less than “100%”, the status should be set to “Running” by default.
  • If% Done is made "100%", the status should be set to "Complete" by default.

  • If "Status" is executed "New",% Done should be by default "0%".

  • If the status is “Running”, errorcheck% Done cannot be “0%” or “100%”.
  • If the status is Complete,% Done should be set to 100% by default.

In what sense do I need to approach this requirement?

Thank you

+4
source share
1 answer

First you must choose the appropriate method for calculating the relationship to a given task. Your requirements imply that you need to select the option "Use task status" in "Administration" - "Settings" - "Task Tracking".

enter image description here

Then you define the status relations in the section "Administration" - "Settings" - "Task statuses" separately for each state.

enter image description here

% Done . . , " " " ", .

+3

Source: https://habr.com/ru/post/1543967/


All Articles