diff options
author | ivan <ivan> | 2007-11-30 03:24:47 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-11-30 03:24:47 +0000 |
commit | bcff4149a031e47937c8457a969e463f23b41b61 (patch) | |
tree | 2c43080d912636a16c2241be11532cdac4df7bd0 /FS | |
parent | 581563335009a706a8cb9f249680a18b81c0c97e (diff) |
add customer import format with company
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_main.pm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index d2e242ac7..8aa94c805 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -4906,6 +4906,18 @@ sub batch_import { svc_acct.username svc_acct._password ); $payby = 'BILL'; + } elsif ( $format eq 'extended-plus_company' ) { + @fields = qw( agent_custid refnum + last first company address1 address2 city state zip country + daytime night + ship_last ship_first ship_company ship_address1 ship_address2 + ship_city ship_state ship_zip ship_country + payinfo paycvv paydate + invoicing_list + cust_pkg.pkgpart + svc_acct.username svc_acct._password + ); + $payby = 'BILL'; } else { die "unknown format $format"; } |