diff options
author | Joshua Goodman <jgoodman1990@gmail.com> | 2014-02-25 05:45:23 +0000 |
---|---|---|
committer | Joshua Goodman <jgoodman1990@gmail.com> | 2014-02-25 05:45:23 +0000 |
commit | 43839f03bf937eb086c7f2a55c059a606571ab77 (patch) | |
tree | 69bc836ea849be52bc20700d04e00cf013fea22d | |
parent | afe30fc7315196cc4ae6da7606995cb8388d1a32 (diff) |
added refund reason_type class
-rwxr-xr-x | httemplate/elements/tr-select-reason.html | 6 |
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"; } |