X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcust_bill_pkg_discount.pm;h=9e64d20769063772c91c9dbd9f37a6bfc4446d2b;hb=292ef074d01bb925e9a466ed771bf2ac418bb44f;hp=534a067ad4e5d5ad32831cca508c5ac677f70334;hpb=32072dbf59a054529f5304574c0f56f9567d14d0;p=freeside.git diff --git a/FS/FS/cust_bill_pkg_discount.pm b/FS/FS/cust_bill_pkg_discount.pm index 534a067ad..9e64d2076 100644 --- a/FS/FS/cust_bill_pkg_discount.pm +++ b/FS/FS/cust_bill_pkg_discount.pm @@ -126,6 +126,39 @@ Returns the associated line item (see L). Returns the associated customer discount (see L). +=item description + +Returns a string describing the discount (for use on an invoice). + +=cut + +sub description { + my $self = shift; + my $discount = $self->cust_pkg_discount->discount; + my $desc = $discount->description_short; + $desc .= $self->mt(' each') if $self->cust_bill_pkg->quantity > 1; + + if ($discount->months) { + # calculate months remaining on this cust_pkg_discount after this invoice + my $date = $self->cust_bill_pkg->cust_bill->_date; + my $used = FS::Record->scalar_sql( + 'SELECT SUM(months) FROM cust_bill_pkg_discount + JOIN cust_bill_pkg USING (billpkgnum) + JOIN cust_bill USING (invnum) + WHERE pkgdiscountnum = ? AND _date <= ?', + $self->pkgdiscountnum, + $date + ); + $used ||= 0; + my $remaining = sprintf('%.2f', $discount->months - $used); + $desc .= $self->mt(' for [quant,_1,month] ([quant,_2,month] remaining)', + $self->months, + $remaining + ); + } + return $desc; +} + =back =head1 BUGS