[freeside-commits] freeside/FS/FS cust_bill.pm,1.239,1.240
Ivan,,,
ivan at wavetail.420.am
Tue Apr 14 19:15:47 PDT 2009
Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv5257
Modified Files:
cust_bill.pm
Log Message:
this should fix credits pushing typeset invoices off the right
Index: cust_bill.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/cust_bill.pm,v
retrieving revision 1.239
retrieving revision 1.240
diff -u -d -r1.239 -r1.240
--- cust_bill.pm 24 Mar 2009 02:36:31 -0000 1.239
+++ cust_bill.pm 15 Apr 2009 02:15:45 -0000 1.240
@@ -2281,6 +2281,7 @@
# credits
my $credittotal = 0;
foreach my $credit ( $self->_items_credits ) {
+
my $total;
$total->{'total_item'} = &$escape_function($credit->{'description'});
$credittotal += $credit->{'amount'};
@@ -2297,26 +2298,15 @@
product_code => '',
section => $adjust_section,
};
- }else{
+ } else {
push @total_items, $total;
}
+
+ push @buf, [ $credit->{'description'}, $money_char.$credit->{'amount'} ];
+
}
$invoice_data{'credittotal'} = sprintf('%.2f', $credittotal);
- # credits (again)
- foreach ( $self->cust_credited ) {
-
- #something more elaborate if $_->amount ne $_->cust_credit->credited ?
-
- my $reason = substr($_->cust_credit->reason,0,32);
- $reason .= '...' if length($reason) < length($_->cust_credit->reason);
- $reason = " ($reason) " if $reason;
- push @buf,[
- "Credit #". $_->crednum. " (". time2str("%x",$_->cust_credit->_date) .")". $reason,
- $money_char. sprintf("%10.2f",$_->amount)
- ];
- }
-
# payments
my $paymenttotal = 0;
foreach my $payment ( $self->_items_payments ) {
@@ -2936,10 +2926,10 @@
#something more elaborate if $_->amount ne $_->cust_credit->credited ?
- my $reason = $_->cust_credit->reason;
- #my $reason = substr($_->cust_credit->reason,0,32);
- #$reason .= '...' if length($reason) < length($_->cust_credit->reason);
+ my $reason = substr($_->cust_credit->reason,0,32);
+ $reason .= '...' if length($reason) < length($_->cust_credit->reason);
$reason = " ($reason) " if $reason;
+
push @b, {
#'description' => 'Credit ref\#'. $_->crednum.
# " (". time2str("%x",$_->cust_credit->_date) .")".
@@ -2949,12 +2939,6 @@
'amount' => sprintf("%.2f",$_->amount),
};
}
- #foreach ( @cr_cust_credit ) {
- # push @buf,[
- # "Credit #". $_->crednum. " (" . time2str("%x",$_->_date) .")",
- # $money_char. sprintf("%10.2f",$_->credited)
- # ];
- #}
@b;
More information about the freeside-commits
mailing list