diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2012-06-21 14:25:51 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2012-06-21 14:25:51 -0700 |
| commit | 977bf74053199c902011851d72260c44694a2793 (patch) | |
| tree | b53d32152624d07116a282c47a6d3f6583008093 | |
| parent | 28dd1fb8e816442196a14484618792f76f3cead7 (diff) | |
fix refund deletion, RT#18192
| -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 c453ffadc..b6e49b61b 100644 --- a/httemplate/view/cust_main/payment_history.html +++ b/httemplate/view/cust_main/payment_history.html @@ -491,7 +491,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, }; |
