X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2Fprocess%2Fprospect_main.html;h=49481d44f2017ba666f1abb350396514ebdea498;hb=36bb53a4a79512e7e24321873ddbbff525d629fb;hp=34d26421b6883f266d9793a12ebc1bf93d581552;hpb=63a268637b2d51a8766412617724b9436439deb6;p=freeside.git diff --git a/httemplate/edit/process/prospect_main.html b/httemplate/edit/process/prospect_main.html index 34d26421b..49481d44f 100644 --- a/httemplate/edit/process/prospect_main.html +++ b/httemplate/edit/process/prospect_main.html @@ -4,7 +4,7 @@ 'agent_virt' => 1, 'process_o2m' => { 'table' => 'contact', - 'fields' => [qw( first last title comment )], + 'fields' => \@contact_fields, }, 'redirect' => popurl(3). 'view/prospect_main.html?', ) @@ -22,7 +22,10 @@ my $args_callback = sub { my $cust_location = new FS::cust_location { map { $_ => scalar($cgi->param($_)) } - qw( address1 address2 city county state zip country ) + qw( address1 address2 city county state zip country + latitude longitude + location_kind location_type location_number + ) }; $cust_location->locationnum($locationnum) unless $locationnum == -1; @@ -31,4 +34,9 @@ my $args_callback = sub { }; +my @contact_fields = qw( first last title comment emailaddress ); +foreach my $phone_type ( qsearch({table=>'phone_type', order_by=>'weight'}) ) { + push @contact_fields, 'phonetypenum'.$phone_type->phonetypenum; +} +