From: Irina Todeva Date: Tue, 29 Sep 2015 19:58:39 +0000 (-0600) Subject: Changed the purpose of 'void credit' reasons type 'X' to void X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=676a117afd9d1091dcf425cc894593beda54e78c Changed the purpose of 'void credit' reasons type 'X' to void credit/invoice/payment reasons --- diff --git a/FS/FS/reason_type.pm b/FS/FS/reason_type.pm index 17a716712..50df495e0 100644 --- a/FS/FS/reason_type.pm +++ b/FS/FS/reason_type.pm @@ -11,7 +11,7 @@ our %class_name = ( 'R' => 'credit', 'S' => 'suspend', 'F' => 'refund', - 'X' => 'void credit', + 'X' => 'void', # credit/invoice/payment ); our %class_purpose = ( diff --git a/httemplate/elements/menu.html b/httemplate/elements/menu.html index dcc02c2b1..81c121259 100644 --- a/httemplate/elements/menu.html +++ b/httemplate/elements/menu.html @@ -721,6 +721,10 @@ if ( $curuser->access_right('Configuration') ) { $config_billing{'separator5'} = ''; #its a separator! $config_billing{'Refund reasons'} = [ $fsurl.'browse/reason.html?class=F', 'Refund reasons explain why a refund was issued.' ]; $config_billing{'Refund reason types'} = [ $fsurl.'browse/reason_type.html?class=F', 'Refund reason types define groups of reasons.' ]; + + $config_billing{'separator6'} = ''; #its a separator! + $config_billing{'Void reasons'} = [ $fsurl.'browse/reason.html?class=X', 'Void reasons explain why a void was issued.' ]; + $config_billing{'Void reason types'} = [ $fsurl.'browse/reason_type.html?class=X', 'Void reason types define groups of reasons.' ]; } #XXX also to be unified