X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=httemplate%2Fview%2Fcust_pay.html;h=76a24884af7bf11b68d517aa9f01848c7f28a709;hb=1354ae82ecc6638211bf4b1dcf7a130c7502478b;hp=9871ff91c4f5b5b9f310c7956dba11ea799122a0;hpb=a9916ce48023939ab1d2506704f5545eb183a2ea;p=freeside.git diff --git a/httemplate/view/cust_pay.html b/httemplate/view/cust_pay.html index 9871ff91c..76a24884a 100644 --- a/httemplate/view/cust_pay.html +++ b/httemplate/view/cust_pay.html @@ -1,6 +1,6 @@ % if ( $link eq 'popup' ) { - <& /elements/header-popup.html, emt("$thing Receipt") &> + <& /elements/header-popup.html, mt("$thing Receipt") &>
<% mt('Print') |h %> | @@ -9,7 +9,7 @@ % } elsif ( $link eq 'print' ) { - <& /elements/header-popup.html, emt("$thing Receipt") &> + <& /elements/header-popup.html, mt("$thing Receipt") &> % #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 @@ -20,13 +20,13 @@

% } elsif ( $link eq 'email' ) { % if ( $email_error ) { - <& /elements/header-popup.html, emt("Error re-emailing receipt: [_1]", $email_error) &> + <& /elements/header-popup.html, mt("Error re-emailing receipt: [_1]", $email_error) &> % } else { - <& /elements/header-popup.html, emt("Re-emailed receipt") &> + <& /elements/header-popup.html, mt("Re-emailed receipt") &> % } % } else { - <& /elements/header.html, emt("$thing Receipt"), menubar( + <& /elements/header.html, mt("$thing Receipt"), menubar( emt("View this customer (#[_1])",$display_custnum) => "${p}view/cust_main.cgi?$custnum", emt('Print receipt') => $pr_link, ) @@ -77,7 +77,7 @@ <% $cust_pay->payby_name %> #<% $cust_pay->paymask %> -% if ( $cust_pay->payby =~ /^(CARD|CHEK|LECB)$/ && $cust_pay->paybatch ) { +% if ( $cust_pay->payby =~ /^(CARD|CHEK|LECB)$/ && $cust_pay->processor ) { <% mt('Processor') |h %> @@ -86,7 +86,7 @@ <% mt('Authorization #') |h %> - <% $cust_pay->authorization %> + <% $cust_pay->auth %> % if ( $cust_pay->order_number ) { @@ -98,6 +98,28 @@ % } +% if ( $cust_pay->payby eq 'CASH' && $cust_pay->payinfo ) { + + <% mt('Bank') |h %> + <% $cust_pay->bank %> + + + + <% mt('Teller #') |h %> + <% $cust_pay->teller %> + + + + <% mt('Depositor') |h %> + <% $cust_pay->depositor %> + + + + <% mt('Account #') |h %> + <% $cust_pay->account %> + +% } + % if ( $conf->exists('pkg-balances') && $cust_pay->pkgnum ) { % my $cust_pkg = qsearchs('cust_pkg', { 'pkgnum' => $cust_pay->pkgnum } ); @@ -134,8 +156,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'); + unless $curuser->access_right('View invoices') #remove this in 2.5 (2.7?) + || $curuser->access_right('View payments'); $cgi->param('paynum') =~ /^(\d+)$/ or die "no paynum"; my $paynum = $1;