Select resolution when closing multiple tickets via bug actiongroup
Moderators: Developer, Contributor
Select resolution when closing multiple tickets via bug actiongroup
As per topic.
Looking for any plugin / customization that allow user to select resolution when closing multiple tickets via bug actiongroup
If none, some direction for me to start custom code. Thanks
Looking for any plugin / customization that allow user to select resolution when closing multiple tickets via bug actiongroup
If none, some direction for me to start custom code. Thanks
Re: Select resolution when closing multiple tickets via bug actiongroup
Have a look @ "Custom Group Actions" . You can define your own page with the wanted resolution field
Re: Select resolution when closing multiple tickets via bug actiongroup
Yep, that is the one. I have not worked with it but I would do the following.
Copy the existing pages to the custom pages and simply add the Resolution field to show in the form page . Next ensure the action page also updates that field. This way you should be safe![Mr. Green :mrgreen:](./images/smilies/icon_mrgreen.gif)
Copy the existing pages to the custom pages and simply add the Resolution field to show in the form page . Next ensure the action page also updates that field. This way you should be safe
![Mr. Green :mrgreen:](./images/smilies/icon_mrgreen.gif)
Re: Select resolution when closing multiple tickets via bug actiongroup
@cas
am still working on it. huhuhuh
am still working on it. huhuhuh
Re: Select resolution when closing multiple tickets via bug actiongroup
what issues do you encounter?
Re: Select resolution when closing multiple tickets via bug actiongroup
had a quick look, follow the instructions in the attached file
have tested this and works like a charm![Very Happy :D](./images/smilies/icon_biggrin.gif)
![Mr. Green :mrgreen:](./images/smilies/icon_mrgreen.gif)
have tested this and works like a charm
![Very Happy :D](./images/smilies/icon_biggrin.gif)
- Attachments
-
- action_resolution.txt
- (3.78 KiB) Downloaded 486 times
Re: Select resolution when closing multiple tickets via bug actiongroup
thanks @cas.
actually, my aim is when user select Close via bulk actiongroup, user is able to select the appropriate resolution + add note before closing the selected issues.
with you sample, i think i can improvise it. many thanks anyway. you rock~!
Re: Select resolution when closing multiple tickets via bug actiongroup
@cas,
from your sample, i have amend abit to meet my objective to close + update reso + add note
from your sample, i have amend abit to meet my objective to close + update reso + add note
Code: Select all
<?php
# MantisBT - A PHP based bugtracking system
# MantisBT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# MantisBT is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with MantisBT. If not, see <http://www.gnu.org/licenses/>.
/**
* Bug action group include file
*
* @package MantisBT
* @copyright Copyright 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*
* @uses access_api.php
* @uses bug_api.php
* @uses config_api.php
* @uses gpc_api.php
* @uses lang_api.php
* @uses print_api.php
*/
if( !defined( 'BUG_ACTIONGROUP_INC_ALLOW' ) ) {
return;
}
require_api( 'access_api.php' );
require_api( 'bug_api.php' );
require_api( 'config_api.php' );
require_api( 'gpc_api.php' );
require_api( 'lang_api.php' );
require_api( 'print_api.php' );
/**
* Prints the title for the custom action page.
* @return void
*/
function action_update_resolution_print_title() {
echo lang_get( 'update_resolution_title' );
}
/**
* Prints the field within the custom action form. This has an entry for
* every field the user need to supply + the submit button. The fields are
* added as rows in a table that is already created by the calling code.
* A row has two columns.
* @return void
*/
function action_update_resolution_print_fields() {
?>
<tr>
<th class="category">
<?php echo lang_get( 'update_resolution_msg' ); ?>
</th>
<td>
<select name="resolution" class="input-sm">';
<?php print_enum_string_option_list( 'resolution' ); ?>
</select>
</td>
</tr>
<tr>
<th class="category">
<?php echo lang_get( 'bugnote_text' );?>
</th>
<td>
<textarea name="bugnote_text" id="bugnote_text" class="<?php echo $t_bugnote_class ?>" cols="80" rows="7"></textarea>
</td>
</tr>
<?php
}
/**
* Validates the action on the specified bug id.
*
* @param integer $p_bug_id A bug identifier.
* @return string|null On failure: the reason why the action could not be validated. On success: null.
*/
function action_update_resolution_validate( $p_bug_id ) {
$t_update_resolution_threshold = config_get( 'update_bug_threshold' );
$t_bug_id = $p_bug_id;
if( bug_is_readonly( $t_bug_id ) ) {
return lang_get( 'actiongroup_error_issue_is_readonly' );
}
if( !access_has_bug_level( $t_update_resolution_threshold, $t_bug_id ) ) {
return lang_get( 'access_denied' );
}
return null;
}
/**
* Executes the custom action on the specified bug id.
*
* @param integer $p_bug_id The bug id to execute the custom action on.
* @return null Previous validation ensures that this function doesn't fail. Therefore we can always return null to indicate no errors occurred.
*/
function action_update_resolution_process( $p_bug_id ) {
$f_resolution = gpc_get_string( 'resolution' );
$f_bug_notetext = gpc_get_string( 'bugnote_text', '' );
bug_set_field( $p_bug_id, 'resolution', $f_resolution );
bug_close( $p_bug_id, $f_bug_notetext, $f_bug_noteprivate );
return null;
}
Re: Select resolution when closing multiple tickets via bug actiongroup
of course this will work but actually you should have created a custom "Close" action to ensure peope are aware that if they mass update the resoltion, that the the ticket is also closed.
But since it is your environment, you will be awaare![Very Happy :D](./images/smilies/icon_biggrin.gif)
But since it is your environment, you will be awaare
![Very Happy :D](./images/smilies/icon_biggrin.gif)
Re: Select resolution when closing multiple tickets via bug actiongroup
indeed. based on your sample, Custom close action was created so now, we have standard Close (close + add note) and Custom Close (close + update reso + add note)
Re: Select resolution when closing multiple tickets via bug actiongroup
Hi, I am a complete beginner in Mantis, could I please ask for advice and a more detailed explanation on how to achieve this "to have standard Close (close + add note) and Custom Close (close + update reso + add note)" result?
Re: Select resolution when closing multiple tickets via bug actiongroup
@stan0o0
just follow the instruction. shouldnt get you wrong
just follow the instruction. shouldnt get you wrong
Re: Select resolution when closing multiple tickets via bug actiongroup
EDIT: fixed! thanks guys
@sintaq
hi i just define variables in config_php as it in action_resolution.txt from @cas, i create bug_actiongroup_update_resolution_inc.php with your updated code, but i cant see this part "in config/custom_strings_inc.php/strings_english.txt, add:" that custom_string_inc.php isnt there in folders.
Is there a step that needs to be done beforehand? For example, installing that plugin? How should I proceed? So, after that, is it enough to follow the action_resolution.txt, and everything will work?
Thank you very much!
@sintaq
hi i just define variables in config_php as it in action_resolution.txt from @cas, i create bug_actiongroup_update_resolution_inc.php with your updated code, but i cant see this part "in config/custom_strings_inc.php/strings_english.txt, add:" that custom_string_inc.php isnt there in folders.
Is there a step that needs to be done beforehand? For example, installing that plugin? How should I proceed? So, after that, is it enough to follow the action_resolution.txt, and everything will work?
Thank you very much!
Last edited by stan0o0 on 05 Nov 2024, 10:54, edited 1 time in total.