diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-06-21 14:25:56 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-06-21 14:25:56 -0700 |
commit | bdc7f571703df7e79c9b154631615fa9929713a0 (patch) | |
tree | b02295c5192bc396f2d5deb02f7fdc8caf01274b | |
parent | e7d76b20692213f2eee6e9992d960a4ce4b0dac0 (diff) |
fix refund deletion, RT#18192FREESIDE_2_1_BRANCH
-rw-r--r-- | httemplate/view/cust_main/payment_history.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/view/cust_main/payment_history.html b/httemplate/view/cust_main/payment_history.html index 3288f15a7..dbfaaf758 100644 --- a/httemplate/view/cust_main/payment_history.html +++ b/httemplate/view/cust_main/payment_history.html @@ -480,7 +480,7 @@ foreach my $cust_credit ($cust_main->cust_credit) { foreach my $cust_refund ($cust_main->cust_refund) { push @history, { 'date' => $cust_refund->_date, - 'desc' => include('payment_history/refund.html', $cust_refund), + 'desc' => include('payment_history/refund.html', $cust_refund, %opt), 'refund' => $cust_refund->refund, }; |