summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-select-reason.html
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-03-06 15:19:53 -0800
committerIvan Kohler <ivan@freeside.biz>2014-03-06 15:19:53 -0800
commite9e0cf0989259b94d9758eceff448666a2e5a5cc (patch)
treec07f9bf18ce45df21927258baea22bdbd855a328 /httemplate/elements/tr-select-reason.html
parentd535b964454fbccc5ccf44a92a6cd8d8405cc549 (diff)
parentc7bc6770f2f0b4413b788f8fc9abde6ad5548da3 (diff)
Merge branch 'master' of https://github.com/jgoodman/Freeside
(github pull request #24 -- change refunds to proper refunds)
Diffstat (limited to 'httemplate/elements/tr-select-reason.html')
-rwxr-xr-xhttemplate/elements/tr-select-reason.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/httemplate/elements/tr-select-reason.html b/httemplate/elements/tr-select-reason.html
index 9a670a26b..b7a715b42 100755
--- a/httemplate/elements/tr-select-reason.html
+++ b/httemplate/elements/tr-select-reason.html
@@ -6,8 +6,8 @@ Example:
#required
'field' => 'reasonnum',
- 'reason_class' => 'C', # currently 'C', 'R', or 'S'
- # for cancel, credit, or suspend
+ 'reason_class' => 'C', # currently 'C', 'R', 'F', or 'S'
+ # for cancel, credit, refund, or suspend
#recommended
'cgi' => $cgi, #easiest way for things to be properly "sticky" on errors
@@ -161,6 +161,8 @@ if ($class eq 'C') {
$add_access_right = 'Add on-the-fly suspend reason';
} elsif ($class eq 'R') {
$add_access_right = 'Add on-the-fly credit reason';
+} elsif ($class eq 'F') {
+ $add_access_right = 'Add on-the-fly refund reason';
} else {
die "illegal class: $class";
}