diff options
author | ivan <ivan> | 2008-10-10 19:25:53 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-10-10 19:25:53 +0000 |
commit | 2db1910ce6cdc5cc583ba07c0c15661685d98e46 (patch) | |
tree | 71df083e5091c0f72b537ad0a21a69764be2f346 | |
parent | 987b49fbf7754b4954018e258d27a6ea72499f84 (diff) |
add options to auto-generate agent_custid and display it as the customer number, RT#4099
-rw-r--r-- | FS/FS/cust_bill.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index 83a79658a..45a73cc19 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -1881,7 +1881,7 @@ sub print_generic { my %invoice_data = ( 'company_name' => scalar( $conf->config('company_name') ), 'company_address' => join("\n", $conf->config('company_address') ). "\n", - 'custnum' => $self->custnum, + 'custnum' => $cust_main->display_custnum, 'invnum' => $self->invnum, 'date' => time2str($date_format, $self->_date), 'today' => time2str('%b %o, %Y', $today), |