diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2015-02-03 07:14:45 -0800 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2015-02-03 07:14:45 -0800 |
| commit | 167dbdad01e2c1b62fd9be43cc05212e8c874a02 (patch) | |
| tree | 0d49c9ba03d64560f21b02a20d32d6005a790ced /fs_selfservice/FS-SelfService/cgi/select_cust.html | |
| parent | 475ae93877f1d834941f7b9adcc35ee84c5c22fa (diff) | |
contacts can be shared among customers / "duplicate contact emails", RT#27943
Diffstat (limited to 'fs_selfservice/FS-SelfService/cgi/select_cust.html')
| -rw-r--r-- | fs_selfservice/FS-SelfService/cgi/select_cust.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/select_cust.html b/fs_selfservice/FS-SelfService/cgi/select_cust.html new file mode 100644 index 000000000..7ab55db45 --- /dev/null +++ b/fs_selfservice/FS-SelfService/cgi/select_cust.html @@ -0,0 +1,38 @@ +<HTML> + <HEAD> + <TITLE>Select customer</TITLE> + <%= $head %> + </HEAD> + <BODY BGCOLOR="<%= $body_bgcolor || '#eeeeee' %>"> + <%= $body_header %> + +<FONT SIZE=5>Select customer</FONT><BR><BR> +<FONT SIZE="+1" COLOR="#ff0000"><%= $error %></FONT> + +<%= $selfurl =~ s/\?.*//; ''; %> +<FORM ACTION="<%= $selfurl %>" METHOD=POST> +<INPUT TYPE="hidden" NAME="action" VALUE="switch_cust"> +<INPUT TYPE="hidden" NAME="agentnum" VALUE="<%= $agentnum %>"> + +<TABLE BGCOLOR="<%= $box_bgcolor || '#c0c0c0' %>" BORDER=0 CELLSPACING=2 CELLPADDING=0> + + <TR> + <TH ALIGN="right">Customer </TH> + <TD> + <SELECT NAME="custnum"> + <OPTION VALUE="">Select a customer +<%= $OUT .= qq(<OPTION VALUE="$_">). encode_entities( $customers{$_} ) + foreach keys %customers; +%> + </SELECT> + </TD> + </TR> + + <TR> + <TD COLSPAN=2 ALIGN="center"><INPUT TYPE="submit" VALUE="Select customer"></TD> + </TR> + +</TABLE> +</FORM> + +<%= $body_footer %> |
