X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fprospect_main.html;h=b5ef64f489f0a0523450dffd8a8a58322152be3a;hb=f2cf5c2843dcef5db0941a1673538eb922fd5a5a;hp=f4b2f58ee55031eadb76223dfd2d3e0c079cbc3b;hpb=0fb307c305e4bc2c9c27dc25a3308beae3a4d33c;p=freeside.git diff --git a/httemplate/view/prospect_main.html b/httemplate/view/prospect_main.html index f4b2f58ee..b5ef64f48 100644 --- a/httemplate/view/prospect_main.html +++ b/httemplate/view/prospect_main.html @@ -1,7 +1,4 @@ -<% include('/elements/header.html', - 'Prospect View: '. $prospect_main->company - ) -%> +<& /elements/header.html, 'Prospect View: '. $prospect_main->company &> % if ( $curuser->access_right('Edit prospect') ) { Edit this prospect @@ -11,7 +8,11 @@ Prospect # - <% $prospectnum %> + <% $prospectnum %> +% if ( $prospect_main->disabled ) { + (DISABLED) +% } + %unless ( scalar(@agentnums) == 1 @@ -19,18 +20,29 @@ % my $agent = qsearchs('agent',{ 'agentnum' => $prospect_main->agentnum } ); Agent - <% $agent->agentnum %>: <% $agent->agent %> + <% $agent->agentnum %>: <% $agent->agent |h %> %} - - Company - <% $prospect_main->company |h %> - +%unless ( ! $prospect_main->refnum ) { # || scalar(@part_referral) == 1 ) { +% my $part_referral = qsearchs('part_referral',{ 'refnum' => $prospect_main->refnum } ); + + Advertising source + <% $part_referral->referral |h %> + +%} -% foreach my $contact ( $prospect_main->contact ) { +% if ( $prospect_main->company ) { + + Company + <% $prospect_main->company |h %> + +% } + +% foreach my $prospect_contact ( $prospect_main->prospect_contact ) { +% my $contact = $prospect_contact->contact; - Contact + <% $prospect_contact->contact_classname %> Contact <% $contact->line %> %} @@ -49,6 +61,20 @@ ) %> + +% if ( $cust_location->latitude && $cust_location->longitude ) { + <& /elements/tr-coords.html, $cust_location->latitude, + $cust_location->longitude, + $prospect_main->name, + &> +% } +% } +% if ( my $tax_status = $prospect_main->tax_status ) { + + Tax status + + <% $tax_status->taxstatus %>: <% $tax_status->description %> + % } @@ -56,22 +82,25 @@
+<& /elements/quotations.html, prospect_main=>$prospect_main &> + % if ( $curuser->access_right('Qualify service') ) { <% include( '/elements/popup_link-prospect_main.html', - 'action' => $p. 'misc/qual.html', - 'label' => 'New Qualification', - 'actionlabel' => 'New Qualification', - 'color' => '#333399', - 'prospect_main' => $prospect_main, - 'closetext' => 'Close', - 'width' => 763, - 'height' => 436, + 'action' => $p. 'misc/qual.html', + 'label' => 'New Qualification', + 'actionlabel' => 'New Qualification', + 'color' => '#333399', + 'prospect_main' => $prospect_main, + 'closetext' => 'Close', + 'width' => 763, + 'height' => 436, ) %> | View Qualifications

% } + <%init>