X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcust_bill_pkg.pm;h=638e707c4e23f297e809e96eb19a56becf6e1dba;hb=efc68f41987d007de5e792b88df1c63bf3dedf4c;hp=e92c05dc7b6a1f56968ead5fe42c1d66bc27bc5d;hpb=988ec48fea05902eb7ea22e43a44e86a36eee06a;p=freeside.git diff --git a/FS/FS/cust_bill_pkg.pm b/FS/FS/cust_bill_pkg.pm index e92c05dc7..638e707c4 100644 --- a/FS/FS/cust_bill_pkg.pm +++ b/FS/FS/cust_bill_pkg.pm @@ -55,7 +55,7 @@ supported: =item edate - ending date of recurring fee -=item itemdesc - Line item description (currentlty used only when pkgnum is 0 or -1) +=item itemdesc - Line item description (overrides normal package description) =item quantity - If not set, defaults to 1 @@ -116,10 +116,9 @@ sub insert { foreach my $detail ( @{$self->get('details')} ) { my $cust_bill_pkg_detail = new FS::cust_bill_pkg_detail { - 'pkgnum' => $self->pkgnum, - 'invnum' => $self->invnum, - 'format' => (ref($detail) ? $detail->[0] : '' ), - 'detail' => (ref($detail) ? $detail->[1] : $detail ), + 'billpkgnum' => $self->billpkgnum, + 'format' => (ref($detail) ? $detail->[0] : '' ), + 'detail' => (ref($detail) ? $detail->[1] : $detail ), }; $error = $cust_bill_pkg_detail->insert; if ( $error ) { @@ -286,15 +285,15 @@ sub details { } if $format eq 'latex'; + $format_sub = $opt{format_function} if $opt{format_function}; + map { ( $_->format eq 'C' ? &{$format_sub}( $_->detail ) : &{$escape_function}( $_->detail ) ) } qsearch ({ 'table' => 'cust_bill_pkg_detail', - 'hashref' => { 'pkgnum' => $self->pkgnum, - 'invnum' => $self->invnum, - }, + 'hashref' => { 'billpkgnum' => $self->billpkgnum }, 'order_by' => 'ORDER BY detailnum', }); #qsearch ( 'cust_bill_pkg_detail', { 'lineitemnum' => $self->lineitemnum }); @@ -313,7 +312,7 @@ sub desc { my $self = shift; if ( $self->pkgnum > 0 ) { - $self->part_pkg->pkg; + $self->itemdesc || $self->part_pkg->pkg; } else { $self->itemdesc || 'Tax'; }