summaryrefslogtreecommitdiff
path: root/httemplate/edit/prospect_main.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/edit/prospect_main.html')
-rw-r--r--httemplate/edit/prospect_main.html44
1 files changed, 0 insertions, 44 deletions
diff --git a/httemplate/edit/prospect_main.html b/httemplate/edit/prospect_main.html
index c260eb8..e867907 100644
--- a/httemplate/edit/prospect_main.html
+++ b/httemplate/edit/prospect_main.html
@@ -5,7 +5,6 @@
'agentnum' => 'Agent',
'company' => 'Company',
'contactnum' => 'Contact',
- 'locationnum' => ' ',
},
'fields' => [
{ 'field' => 'agentnum',
@@ -35,7 +34,6 @@
'empty_label' => 'No address',
},
],
- 'new_callback' => $new_callback,
'edit_callback' => $edit_callback,
'error_callbacck' => $error_callback,
'agent_virt' => 1,
@@ -64,48 +62,6 @@ if ( $cgi->param('error') ) {
}
-my $new_callback = sub {
- my( $cgi, $prospect_main, $fields_listref, $opt_hashref ) = @_;
-
- if ( $cgi->param('session') =~ /^(\w+)$/ ) {
- my $session = $1;
-
- #add a link to the image.cgi for this card
- $opt_hashref->{'html_bottom'} .=
- qq(<BR><IMG SRC="${p}view/image.cgi?type=png;prefname=bizcard$session" ).
- ' WIDTH=604 HEIGHT=328><BR>';
-
- #fill in the incoming params: name, address1/address2, city_state_zip
- foreach my $param ( grep /^sel\d+$/, $cgi->param ) {
- $param =~ /^sel(\d+)$/ or die 'again, wtf (daily)';
- my $num = $1;
- my $field = $cgi->param($param);
- my $value = $cgi->param("val$num");
- $cgi->param($field => $value);
- }
-
- if ( $cgi->param('company') ) {
- $prospect_main->company( $cgi->param('company') );
- }
-
- if ( $cgi->param('name') =~ /^(.*\S+)\s+(\w+)\s*$/ ) {
- $cgi->param('contactnum0_first' => $1);
- $cgi->param('contactnum0_last' => $2);
- }
-
- if ( grep $cgi->param($_), qw( address1 address2 city_state_zip ) ) {
- $cgi->param('locationnum', -1);
- if ( $cgi->param('city_state_zip') =~ /^(\s*)([\w\s]+)[\., ]+(\w{2})[, ]+(\d{5}(-\d{4})?)/ ) {
- $cgi->param('city' => $2);
- $cgi->param('state' => $3);
- $cgi->param('zip' => $4);
- }
- }
-
- }
-
-};
-
my $edit_callback = sub {
#my( $cgi, $prospect_main, $fields_listref, $opt_hashref ) = @_;
my( $cgi, $prospect_main ) = @_;