diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-05-09 13:02:37 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-05-09 13:02:37 -0700 |
commit | e090eaa1020ced724f5aa56728f8ce3b35a85220 (patch) | |
tree | 5234ff79f7078d687eff55d169bad02b2757287f | |
parent | 24d7bc2044c75f49fc11816b62e1a4b01b3337e9 (diff) |
add "Birthdates and account, phone and hardware services" customer import format, RT#17578
-rw-r--r-- | FS/FS/cust_main/Import.pm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/FS/FS/cust_main/Import.pm b/FS/FS/cust_main/Import.pm index 4bb77c82c..6681f9ec2 100644 --- a/FS/FS/cust_main/Import.pm +++ b/FS/FS/cust_main/Import.pm @@ -212,7 +212,7 @@ sub batch_import { ); push @fields, map "svc_phone.$_", qw(countrycode phonenum sip_password pin); push @fields, map "svc_hardware.$_", qw(typenum ip_addr hw_addr serial); -warn Dumper(@fields); + $payby = 'BILL'; } else { die "unknown format $format"; @@ -445,8 +445,6 @@ warn Dumper(@fields); } -warn Dumper(@svc_x); - $hash{$cust_pkg} = \@svc_x; } |