X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_refund.html;h=31976150694c3b894eeede8bb83edbb965068532;hb=e5d6af11f52aabe8c9e6e12ce43c3401ccf025a8;hp=7f6a34f5d9323e02245727ae51eba80feeb6b088;hpb=2238711675eefa60cd2feb47c8d3e43d3e6f1860;p=freeside.git diff --git a/httemplate/view/cust_refund.html b/httemplate/view/cust_refund.html index 7f6a34f5d..319761506 100644 --- a/httemplate/view/cust_refund.html +++ b/httemplate/view/cust_refund.html @@ -11,7 +11,7 @@ % #it would be nice if the menubar could be hidden for print, but better to % # have it available than not, otherwise the user winds up at a dead end <% menubar( - mt("View this customer (#[_1])",$display_custnum) => "${p}view/cust_main.cgi?$custnum", + emt("View this customer (#[_1])",$display_custnum) => "${p}view/cust_main.cgi?$custnum", ) %>

@@ -19,8 +19,8 @@ % } else { <& /elements/header.html, mt('Refund Receipt'), menubar( - mt("View this customer (#[_1])",$display_custnum) => "${p}view/cust_main.cgi?$custnum", - mt('Print receipt') => $pr_link, + emt("View this customer (#[_1])",$display_custnum) => "${p}view/cust_main.cgi?$custnum", + emt('Print receipt') => $pr_link, ) &> @@ -62,7 +62,7 @@ <% $cust_refund->payby_name %><% $cust_refund->paymask ? ' #'.$cust_refund->paymask : '' %> -% if ( $cust_refund->payby =~ /^(CARD|CHEK|LECB)$/ && $cust_refund->paybatch ) { +% if ( $cust_refund->payby =~ /^(CARD|CHEK|LECB)$/ && $cust_refund->processor ) { <% mt('Processor') |h %> @@ -71,7 +71,7 @@ <% mt('Authorization #') |h %> - <% $cust_refund->authorization %> + <% $cust_refund->auth %> % if ( $cust_refund->order_number ) { @@ -105,10 +105,8 @@ my $curuser = $FS::CurrentUser::CurrentUser; die "access denied" - unless $curuser->access_right('View invoices') #remove this in 1.9 EVENTUALLY - || $curuser->access_right('View customer payments'); - #'View customer refunds' ??? - + unless $curuser->access_right('View invoices') #remove this in 2.5 (2.7?) + || $curuser->access_right('View refunds'); $cgi->param('refundnum') =~ /^(\d+)$/ or die "no refundnum"; my $refundnum = $1;