diff options
| author | ivan <ivan> | 2007-11-30 03:24:40 +0000 |
|---|---|---|
| committer | ivan <ivan> | 2007-11-30 03:24:40 +0000 |
| commit | 671b3cb139ae3928c13220fcb27c892f92de4792 (patch) | |
| tree | 8ffb9dc1b491109d45d9456f3bb1d4e3446035c9 /FS | |
| parent | 12ce4cf074f058aad67f1d54ae08fa5dee6c0772 (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 74d7bcbfb..9300f2c12 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -5567,6 +5567,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"; } |
