Invoice Question
Troy Hammonds
troyh at netsignia.net
Tue Oct 21 13:27:09 PDT 2003
I have the following at the bottom of my invoice. I am trying to get put
a ----------- (cut line) with the Account # and billing history listed
again. Can anyone help me out with this?
{
join("\n",
map {
my ( $desc, $price ) = @{$_};
" ". substr( $desc. " "x65, 0, 65). " ". substr( $price. " "x11, 0,
11);
} invoice_lines(31)
);
}
-------- Receive One Free Month Of Service For Each Customer
Referal --------
I tried adding the following but didnt work. Was a long shot anyway.
------------------------------------------------------------------
{
join("\n",
map {
my ( $desc, $price ) = @{$_};
" ". substr( $desc. " "x65, 0, 65). " ". substr( $price. " "x11, 0,
11);
} invoice_lines(45)
);
}
More information about the freeside-users
mailing list