Resolutions: Custom Workflow

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
mcraig88
Posts: 12
Joined: 03 Mar 2006, 21:21
Location: Seattle, WA
Contact:

Resolutions: Custom Workflow

Post by mcraig88 »

Hello,

I have implemented a custom workflow, using the UI, and it seems to only be concerned with Status, and not Resolution.
Is there some documentation on setting up custom Workflow around Resolution?

Status Workflow:
New => Open => Closed

Resolution Workflow:
New => Triage => Docs/Reqs => Fixed
New => Triage => In Process => Fixed

Thank you.
mcraig88
Posts: 12
Joined: 03 Mar 2006, 21:21
Location: Seattle, WA
Contact:

Re: Resolutions: Custom Workflow

Post by mcraig88 »

Here is an example of the Array I think should be able to work, to clarify my request:

Code: Select all

array (
  5 => '8:Triage',
  8 => '12:Docs/Reqs;15:In Process',
  12 => '20:Fixed/Complete;90:Wont Fix;40:Not Repro;80:External;60:Duplicate',
  15 => '20:Fixed/Complete;90:Wont Fix;40:Not Repro;80:External;60:Duplicate',
  20 => '',
  90 => '',
  40 => '',
  80 => '',
  60 => '',
  
)
jb_mantis
Posts: 63
Joined: 14 Oct 2008, 12:41
Location: Columbus, Ohio, USA

Re: Resolutions: Custom Workflow

Post by jb_mantis »

I don't believe there is a workflow process for the Resolution field like there is for the Status field. You may want to consider submitting a feature request for it. Current workaround would be to add the code yourself to make it happen, or use custom Statuses instead of resloutions to track issue resolution progress.
-Joe
Mantis Version: 1.1.2
Disclaimer: Answers are based on the Mantis version above and may be inaccurate for newer/older versions which may have different configuration options and/or functionality.
Post Reply