[freeside-commits] freeside/httemplate/view cust_refund.html, NONE, 1.1
Ivan,,,
ivan at wavetail.420.am
Sun Jun 1 15:48:17 PDT 2008
- Previous message: [freeside-commits] freeside/httemplate/view/cust_main/payment_history credit.html, NONE, 1.1 invoice.html, NONE, 1.1 payment.html, NONE, 1.1 refund.html, NONE, 1.1 voided_payment.html, NONE, 1.1
- Next message: [freeside-commits] freeside/httemplate/search/elements cust_pay_or_refund.html, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/cvsroot/freeside/httemplate/view
In directory wavetail.420.am:/tmp/cvs-serv3210/httemplate/view
Added Files:
cust_refund.html
Log Message:
refactor payment history slightly, add refund receipts, have "unapplied" refunds show like other unapplied/open things, RT#3545
--- NEW FILE: cust_refund.html ---
% if ( $link eq 'popup' ) {
<% include('/elements/header-popup.html', "Refund Receipt" ) %>
<CENTER><A HREF="javascript:self.parent.location = '<% $pr_link %>'">Print</A></CENTER><BR>
% } elsif ( $link eq 'print' ) {
<% include('/elements/header-popup.html', "Refund 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(
"View this customer (#$custnum)" => "${p}view/cust_main.cgi?$custnum",
)
%>
<BR><BR>
% } else {
<% include('/elements/header.html', "Refund Receipt", menubar(
"View this customer (#$custnum)" => "${p}view/cust_main.cgi?$custnum",
'Print receipt' => $pr_link,
))
%>
% }
% unless ($link eq 'popup' ) {
<% include('/elements/small_custview.html',
$custnum,
scalar($conf->config('countrydefault')),
1, #no balance
)
%>
<BR><BR>
% }
<% ntable("#cccccc", 2) %>
<TR>
<TD ALIGN="right">Refund#</TD>
<TD BGCOLOR="#FFFFFF"><B><% $cust_refund->refundnum %></B></TD>
</TR>
<TR>
<TD ALIGN="right">Date</TD>
<TD BGCOLOR="#FFFFFF"><B><% time2str"%a %b %o, %Y %r", $cust_refund->_date %></B></TD>
</TR>
<TR>
<TD ALIGN="right">Amount</TD>
<TD BGCOLOR="#FFFFFF"><B><% $money_char. $cust_refund->refund %></B></TD>
</TR>
<TR>
<TD ALIGN="right">Reason</TD>
<TD BGCOLOR="#FFFFFF"><B><% $cust_refund->reason %></B></TD>
</TR>
<TR>
<TD ALIGN="right">Refund method</TD>
<TD BGCOLOR="#FFFFFF"><B><% $cust_refund->payby_name %> #<% $cust_refund->paymask %></B></TD>
</TR>
% if ( $cust_refund->payby =~ /^(CARD|CHEK|LECB)$/ && $cust_refund->paybatch ) {
<TR>
<TD ALIGN="right">Processor</TD>
<TD BGCOLOR="#FFFFFF"><B><% $cust_refund->processor %></B></TD>
</TR>
<TR>
<TD ALIGN="right">Authorization#</TD>
<TD BGCOLOR="#FFFFFF"><B><% $cust_refund->authorization %></B></TD>
</TR>
% if ( $cust_refund->order_number ) {
<TR>
<TD ALIGN="right">Order#</TD>
<TD BGCOLOR="#FFFFFF"><B><% $cust_refund->order_number %></B></TD>
</TR>
% }
% }
</TABLE>
% if ( $link eq 'print' ) {
<SCRIPT TYPE="text/javascript">
window.print();
</SCRIPT>
% }
% if ( $link =~ /^(popup|print)$/ ) {
</BODY>
</HTML>
% } else {
<% include('/elements/footer.html') %>
% }
<%init>
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' ???
$cgi->param('refundnum') =~ /^(\d+)$/ or die "no refundnum";
my $refundnum = $1;
my $link = '';
if ( $cgi->param('link') =~ /^(\w+)$/ ) {
$link = $1;
}
my $cust_refund = qsearchs({
'select' => 'cust_refund.*',
'table' => 'cust_refund',
'addl_from' => 'LEFT JOIN cust_main USING ( custnum )',
'hashref' => { 'refundnum' => $refundnum },
'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql,
});
die "Refund #$refundnum not found!" unless $cust_refund;
my $pr_link = "${p}view/cust_refund.html?link=print;refundnum=$refundnum";
my $custnum = $cust_refund->custnum;
my $conf = new FS::Conf;
my $money_char = $conf->config('money_char') || '$';
tie my %payby, 'Tie::IxHash', FS::payby->payby2longname;
</%init>
- Previous message: [freeside-commits] freeside/httemplate/view/cust_main/payment_history credit.html, NONE, 1.1 invoice.html, NONE, 1.1 payment.html, NONE, 1.1 refund.html, NONE, 1.1 voided_payment.html, NONE, 1.1
- Next message: [freeside-commits] freeside/httemplate/search/elements cust_pay_or_refund.html, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the freeside-commits
mailing list