X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fpayment_history%2Fvoided_payment.html;h=63cfb309f428fea0d511925b9d65d132aa8cafbe;hb=e9d371c33b5f53fd078c5f5a7d93e5c36743c8bc;hp=3c2098d23075275d2e7ed20eb40df301fb6c45a1;hpb=93519f9371b41ded713a93fba031ed7a361be04c;p=freeside.git diff --git a/httemplate/view/cust_main/payment_history/voided_payment.html b/httemplate/view/cust_main/payment_history/voided_payment.html index 3c2098d23..63cfb309f 100644 --- a/httemplate/view/cust_main/payment_history/voided_payment.html +++ b/httemplate/view/cust_main/payment_history/voided_payment.html @@ -1,9 +1,15 @@ <% mt("Payment [_1] by [_2]", $info, $cust_pay_void->otaker ) |h %> -<% mt("voided [_1]", time2str($date_format, $cust_pay_void->void_date) ) |h %> +voided % my $void_user = $cust_pay_void->void_access_user; % if ($void_user) { - by <% $void_user->username %> + by <% $void_user->username %> % } +% my $reason = $cust_pay_void->reason; +% if ($reason) { + (<% $reason %>) +% } +<% mt("on [_1]", time2str($date_format, $cust_pay_void->void_date) ) |h %> + <% $unvoid %> <%init> @@ -11,8 +17,6 @@ my( $cust_pay_void, %opt ) = @_; my $date_format = $opt{'date_format'} || '%m/%d/%Y'; -my $curuser = $FS::CurrentUser::CurrentUser; - my ($payby,$payinfo) = translate_payinfo($cust_pay_void); $payby = translate_payby($payby,$payinfo); my $info = $payby ? "($payby$payinfo)" : ''; @@ -24,13 +28,13 @@ if ( $opt{'pkg-balances'} && $cust_pay_void->pkgnum ) { my $unvoid = ''; my $unvoidmsg = $cust_pay_void->payby =~ /^(CARD|CHEK)$/ - ? ' ('.mt('do not send anything to the payment gateway') .')' + ? ' ('.emt('do not send anything to the payment gateway') .')' : ''; $unvoid = areyousure_link("${p}misc/unvoid-cust_pay_void.cgi?".$cust_pay_void->paynum, - mt('Are you sure you want to unvoid this payment?'), - mt('Unvoid this payment from the database') . $unvoidmsg, - mt('unvoid') + emt('Are you sure you want to unvoid this payment?'), + emt('Unvoid this payment from the database') . $unvoidmsg, + emt('unvoid') ) - if ( $cust_pay_void->closed !~ /^Y/i && $curuser->access_right('Unvoid') ); + if $cust_pay_void->closed !~ /^Y/i && $opt{'Unvoid payments'};