customer import: add progress bar & redirect to a search of the imported customers...
[freeside.git] / httemplate / misc / cust_main-import.cgi
1 <% include("/elements/header.html",'Batch Customer Import') %>
2
3 Import a file containing customer records.
4 <BR><BR>
5
6 <% include( '/elements/form-file_upload.html',
7               'name'      => 'CustomerImportForm',
8               'action'    => 'process/cust_main-import.cgi',
9               'num_files' => 1,
10               'fields'    => [ 'agentnum', 'custbatch', 'format' ],
11               'message'   => 'Customer import successful',
12               'url'       => $p."search/cust_main.html?custbatch=$custbatch",
13           )
14 %>
15
16 <% &ntable("#cccccc", 2) %>
17
18   <% include( '/elements/tr-select-agent.html',
19                  #'curr_value' => '', #$agentnum,
20                  'label'       => "<B>Agent</B>",
21                  'empty_label' => 'Select agent',
22              )
23   %>
24
25   <INPUT TYPE="hidden" NAME="custbatch" VALUE="<% $custbatch %>"%>
26
27   <TR>
28     <TH ALIGN="right">Format</TH>
29     <TD>
30       <SELECT NAME="format">
31         <!-- <OPTION VALUE="simple">Simple -->
32         <OPTION VALUE="extended" SELECTED>Extended
33         <OPTION VALUE="extended-plus_company">Extended plus company
34       </SELECT>
35     </TD>
36   </TR>
37
38   <% include( '/elements/file-upload.html',
39                 'field' => 'file',
40                 'label' => 'Filename',
41             )
42   %>
43
44
45 % #include('/elements/tr-select-part_referral.html')
46 %
47
48
49 <!--
50 <TR>
51   <TH>First package</TH>
52   <TD>
53     This needs to be agent-virtualized if it gets used!
54     <SELECT NAME="pkgpart"><OPTION VALUE="">(none)</OPTION>
55 % foreach my $part_pkg ( qsearch('part_pkg',{'disabled'=>'' }) ) { 
56
57        <OPTION VALUE="<% $part_pkg->pkgpart %>"><% $part_pkg->pkg. ' - '. $part_pkg->comment %></OPTION>
58 % } 
59
60     </SELECT>
61   </TD>
62 </TR>
63 -->
64
65   <TR>
66     <TD COLSPAN=2 ALIGN="center" STYLE="padding-top:6px">
67       <INPUT TYPE    = "submit"
68              ID      = "submit"
69              VALUE   = "Import file"
70              onClick = "document.CustomerImportForm.submit.disabled=true;"
71       >
72     </TD>
73   </TR>
74
75 </TABLE>
76
77 </FORM>
78
79 <BR>
80
81 <!-- Simple file format is CSV, with the following field order: <i>cust_pkg.setup, dayphone, first, last, address1, address2, city, state, zip, comments</i>
82 <BR><BR> -->
83
84 Uploaded files can be CSV (comma-separated value) files or Excel spreadsheets.  The file should have a .CSV or .XLS extension.
85 <BR><BR>
86
87 <b>Extended</b> format has the following field order: <i>agent_custid, refnum<%$req%>, last<%$req%>, first<%$req%>, address1<%$req%>, address2, city<%$req%>, state<%$req%>, zip<%$req%>, country, daytime, night, ship_last, ship_first, ship_address1, ship_address2, ship_city, ship_state, ship_zip, ship_country, payinfo, paycvv, paydate, invoicing_list, pkgpart, username, _password</i>
88 <BR><BR>
89
90 <b>Extended plus company</b> format has the following field order: <i>agent_custid, refnum<%$req%>, last<%$req%>, first<%$req%>, company, address1<%$req%>, address2, city<%$req%>, state<%$req%>, zip<%$req%>, 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, pkgpart, username, _password</i>
91 <BR><BR>
92
93 <%$req%> Required fields
94 <BR><BR>
95
96 Field information:
97
98 <ul>
99
100   <li><i>agent_custid</i>: This is the reseller's idea of the customer number or identifier.  It may be left blank.  If specified, it must be unique per-agent.
101
102   <li><i>refnum</i>: Advertising source number - where a customer heard about your service.  Configuration -&gt; Miscellaneous -&gt; View/Edit advertising sources.  This field has special treatment upon import: If a string is passed instead
103 of an integer, the string is searched for and if necessary auto-created in the
104 advertising source table.
105
106   <li><i>payinfo</i>: Credit card number, or leave this, <i>paycvv</i> and <i>paydate</i> blank for email/paper invoicing.
107
108   <li><i>paycvv</i>: CVV2 number (three digits on the back of the credit card)
109
110   <li><i>paydate</i>: Credit card expiration date, MM/YYYY or MM/YY (M/YY and M/YYYY are also accepted).
111
112   <li><i>invoicing_list</i>: Email address for invoices, or POST for postal invoices.
113
114   <li><i>pkgpart</i>: Package definition.  Configuration -&gt; Provisioning, services and packages -&gt; View/Edit package definitions
115
116   <li><i>username</i> and <i>_password</i> are required if <i>pkgpart</i> is specified.
117 </ul>
118
119 <BR>
120
121 <% include('/elements/footer.html') %>
122
123 <%once>
124
125 my $req = qq!<font color="#ff0000">*</font>!;
126
127 </%once>
128 <%init>
129
130 die "access denied"
131   unless $FS::CurrentUser::CurrentUser->access_right('Import');
132
133 my $custbatch = time2str('webimport-%Y/%m/%d-%T'. "-$$-". rand() * 2**32, time);
134
135 </%init>