diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-01-25 21:45:02 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-01-25 21:45:02 -0800 |
commit | 76a7bc00ed44a8123a5ceb0b57f7b9ad05ae82c4 (patch) | |
tree | dbf6232a8b5107477ea2d3c9b3715677550811db /httemplate/edit/cust_refund.cgi | |
parent | ef175582574b8ec5cb6fe24d11b2643647c7e4fc (diff) |
manual echeck payment type, RT#26995
Diffstat (limited to 'httemplate/edit/cust_refund.cgi')
-rwxr-xr-x | httemplate/edit/cust_refund.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/cust_refund.cgi b/httemplate/edit/cust_refund.cgi index df42e63ae..486534375 100755 --- a/httemplate/edit/cust_refund.cgi +++ b/httemplate/edit/cust_refund.cgi @@ -137,7 +137,7 @@ my $reason = $cgi->param('reason'); my $link = $cgi->param('popup') ? 'popup' : ''; my @rights = (); -push @rights, 'Post refund' if $payby =~ /^(BILL|CASH|MCRD)$/; +push @rights, 'Post refund' if $payby =~ /^(BILL|CASH|MCRD|MCHK)$/; push @rights, 'Post check refund' if $payby eq 'BILL'; push @rights, 'Post cash refund ' if $payby eq 'CASH'; push @rights, 'Refund payment' if $payby =~ /^(CARD|CHEK)$/; |