event refactor, landing on HEAD!
[freeside.git] / httemplate / misc / cust_main-import.cgi
1 <% include("/elements/header.html",'Batch Customer Import') %>
2
3 <FORM ACTION="process/cust_main-import.cgi" METHOD="post" ENCTYPE="multipart/form-data">
4
5 Import a CSV file containing customer records.
6 <BR><BR>
7
8 <!-- Simple file format is CSV, with the following field order: <i>cust_pkg.setup, dayphone, first, last, address1, address2, city, state, zip, comments</i>
9 <BR><BR> -->
10
11 Extended file format is CSV, with the following field order: <i>agent_custid, refnum[1]<%$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<%$req%>, paycvv, paydate<%$req%>, invoicing_list, pkgpart, username[2], _password[2]</i>
12 <BR><BR>
13
14 <%$req%> Required fields
15 <BR><BR>
16
17 [1] This field has special treatment upon import: If a string is passed instead
18 of an integer, the string is searched for and if necessary auto-created in the
19 target table.
20 <BR><BR>
21
22 [2] <i>username</i> and <i>_password</i> are required if <i>pkgpart</i> is specified.
23 <BR><BR>
24
25 <% &ntable("#cccccc") %>
26
27 <% include('/elements/tr-select-agent.html',
28               #'curr_value' => '', #$agentnum,
29               'label'       => "<B>Agent</B>",
30               'empty_label' => 'Select agent',
31            )
32 %>
33
34 <TR>
35   <TH ALIGN="right">Format</TH>
36   <TD>
37     <SELECT NAME="format">
38 <!--      <OPTION VALUE="simple">Simple -->
39       <OPTION VALUE="extended" SELECTED>Extended
40     </SELECT>
41   </TD>
42 </TR>
43
44 <TR>
45   <TH ALIGN="right">CSV filename</TH>
46   <TD><INPUT TYPE="file" NAME="csvfile"></TD>
47 </TR>
48 % #include('/elements/tr-select-part_referral.html')
49 %
50
51
52 <!--
53 <TR>
54   <TH>First package</TH>
55   <TD>
56     <SELECT NAME="pkgpart"><OPTION VALUE="">(none)</OPTION>
57 % foreach my $part_pkg ( qsearch('part_pkg',{'disabled'=>'' }) ) { 
58
59        <OPTION VALUE="<% $part_pkg->pkgpart %>"><% $part_pkg->pkg. ' - '. $part_pkg->comment %></OPTION>
60 % } 
61
62     </SELECT>
63   </TD>
64 </TR>
65 -->
66
67 </TABLE>
68 <BR><BR>
69
70 <INPUT TYPE="submit" VALUE="Import">
71 </FORM>
72
73 <% include('/elements/footer.html') %>
74
75 <%once>
76 my $req = qq!<font color="#ff0000">*</font>!;
77 </%once>