% if ( $link eq 'popup' ) {
<& /elements/header-popup.html, mt("$thing Receipt") &>
% } elsif ( $link eq 'print' ) {
<& /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
<% menubar(
emt("View this customer (#[_1])",$display_custnum) => "${p}view/cust_main.cgi?$custnum",
)
%>
% } elsif ( $link eq 'email' ) {
% if ( $email_error ) {
<& /elements/header-popup.html, mt("Error re-emailing receipt: [_1]", $email_error) &>
% } else {
<& /elements/header-popup.html, mt("Re-emailed receipt") &>
% }
% } else {
<& /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,
)
&>
% }
% unless ($link =~ /^(popup|email)$/ ) {
<& /elements/small_custview.html,
$custnum,
scalar($conf->config('countrydefault')),
1, #no balance
&>
% }
<% ntable("#cccccc", 2) %>
<% mt('Payment #') |h %> |
<% $cust_pay->paynum %> |
<% mt('Date') |h %> |
<% time2str"%a %b %o, %Y %r", $cust_pay->_date %> |
% if ( $void ) {
<% mt('Void Date') |h %> |
<% time2str"%a %b %o, %Y %r", $cust_pay->void_date %> |
%#
%# <% mt('Void reason') |h %> |
%# <% $cust_pay->reason %> |
%#
% }
<% mt('Amount') |h %> |
<% $money_char. $cust_pay->paid %> |
<% mt('Payment method') |h %> |
<% $cust_pay->payby_name %> #<% $cust_pay->paymask %> |
% if ( $cust_pay->payby =~ /^(CARD|CHEK|LECB)$/ && $cust_pay->processor ) {
<% mt('Processor') |h %> |
<% $cust_pay->processor %> |
<% mt('Authorization #') |h %> |
<% $cust_pay->auth %> |
% if ( $cust_pay->order_number ) {
<% mt('Order #') |h %> |
<% $cust_pay->order_number %> |
% }
% }
% 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 } );
<% mt('For package') |h %> |
<% $cust_pkg->pkg_label_long %> |
% }
% if ( $link eq 'print' ) {
% } elsif ( $link eq 'email' ) {
% }
% if ( $link =~ /^(popup|print|email)$/ ) {