diff options
author | Joshua Goodman <jgoodman1990@gmail.com> | 2014-02-25 05:40:44 +0000 |
---|---|---|
committer | Joshua Goodman <jgoodman1990@gmail.com> | 2014-02-25 05:40:44 +0000 |
commit | afe30fc7315196cc4ae6da7606995cb8388d1a32 (patch) | |
tree | fb3769c42356abd53592c070873fbe2dda2d525d | |
parent | daa3524d4f512f2bf671c6b07c606ba3eec1fefc (diff) |
added refund reasons to main menu
-rw-r--r-- | httemplate/elements/menu.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/httemplate/elements/menu.html b/httemplate/elements/menu.html index cd4fb39ec..4ba7b2f00 100644 --- a/httemplate/elements/menu.html +++ b/httemplate/elements/menu.html @@ -656,6 +656,10 @@ if ( $curuser->access_right('Configuration') ) { $config_billing{'separator4'} = ''; #its a separator! $config_billing{'Credit reasons'} = [ $fsurl.'browse/reason.html?class=R', 'Credit reasons explain why a credit was issued.' ]; $config_billing{'Credit reason types'} = [ $fsurl.'browse/reason_type.html?class=R', 'Credit reason types define groups of reasons.' ]; + + $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.' ]; } #XXX also to be unified |