diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2019-03-15 15:26:33 -0400 |
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2019-03-15 15:26:33 -0400 |
| commit | 44576664ce3cb013a563bad7926d5b7d04657368 (patch) | |
| tree | 312da9cda14904005ac7c618a23b632ffe673bb1 | |
| parent | 7023b257301d73ea36eb21579fff9476e7971c17 (diff) | |
RT# 83044 - V3 fix
| -rwxr-xr-x | httemplate/edit/process/cust_refund.cgi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/httemplate/edit/process/cust_refund.cgi b/httemplate/edit/process/cust_refund.cgi index 89994eb30..bea81bc12 100755 --- a/httemplate/edit/process/cust_refund.cgi +++ b/httemplate/edit/process/cust_refund.cgi @@ -97,6 +97,10 @@ if ( $cgi->param('paynum') > 0) { $_, scalar($cgi->param($_)) } fields('cust_refund'); + $hash{'payinfo'} = $cust_main->payinfo; + $hash{'paymask'} = $cust_main->paymask; + $hash{'paycardtype'} = $cust_main->paycardtype; + ## unapply payment before creating refund. while ( $cust_pay && $cust_pay->unapplied < $refund ) { my @cust_bill_pay = $cust_pay->cust_bill_pay; |
