X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fview%2Fprospect_main.html;h=2fde797c6e914d9d1822e32e964ba34b71ce9ddd;hp=6c4595dbe1b0c75586e8e401a140e5664cc01c7f;hb=877a4eb85cb847bd314d6a9192fedb1dc35c5d02;hpb=a6fe07e49e3fc12169e801b1ed6874c3a5bd8500 diff --git a/httemplate/view/prospect_main.html b/httemplate/view/prospect_main.html index 6c4595dbe..2fde797c6 100644 --- a/httemplate/view/prospect_main.html +++ b/httemplate/view/prospect_main.html @@ -1,38 +1,30 @@ -<% include('/elements/header.html', - 'Prospect View: '. $prospect_main->company - ) -%> +<& /elements/header.html, $title &> % if ( $curuser->access_right('Edit prospect') ) { Edit this prospect % } -<% ntable("#cccccc",2) %> - - - Prospect # - <% $prospectnum %> - + -%unless ( scalar(@agentnums) == 1 -% && !$curuser->access_right('View customers of all agents') ) { -% my $agent = qsearchs('agent',{ 'agentnum' => $prospect_main->agentnum } ); +%unless ( ! $prospect_main->refnum ) { # || scalar(@part_referral) == 1 ) { +% my $part_referral = qsearchs('part_referral',{ 'refnum' => $prospect_main->refnum } ); - - + %} % if ( $prospect_main->company ) { - + % } -% foreach my $contact ( $prospect_main->contact ) { +% foreach my $prospect_contact ( $prospect_main->prospect_contact ) { +% my $contact = $prospect_contact->contact; - + %} @@ -42,7 +34,7 @@ % #but only one, for now % foreach my $cust_location (@cust_location) { - + + + +% }
Agent<% $agent->agentnum %>: <% $agent->agent %>Advertising source + <% $part_referral->referral |h %>
CompanyCompany <% $prospect_main->company |h %>
<% $contact->contact_classname %> Contact<% $prospect_contact->contact_classname %> Contact <% $contact->line %>
AddressAddress <% $cust_location->location_label( 'join_string' => '
', @@ -59,47 +51,25 @@ &> % } % } +% if ( my $tax_status = $prospect_main->tax_status ) { +
Tax status + + <% $tax_status->taxstatus %>: <% $tax_status->description %> +

-% if ( $curuser->access_right('Generate quotation') ) { - <% mt( 'Quotations' ) |h %> - New quotation -% my @quotations = $prospect_main->quotation; -% if ( @quotations ) { - <& /elements/table-grid.html &> -% my $bgcolor1 = '#eeeeee'; -% my $bgcolor2 = '#ffffff'; -% my $bgcolor = ''; - - # - <% mt('Date') |h %> - -% foreach my $quotation (@quotations) { -% if ( $bgcolor eq $bgcolor1 ) { -% $bgcolor = $bgcolor2; -% } else { -% $bgcolor = $bgcolor1; -% } -% my $a = qq(quotationnum. '">'; - - <% $a %><% $quotation->quotationnum %> - <% $a %><% time2str($date_format, $quotation->_date) |h %> - -% } - -% } -

-% } - +<& /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', + 'label' => 'New Qualification', 'actionlabel' => 'New Qualification', 'color' => '#333399', 'prospect_main' => $prospect_main, @@ -112,15 +82,7 @@

% } - +%# XXX display prospect tickets <%init> @@ -129,10 +91,6 @@ my $curuser = $FS::CurrentUser::CurrentUser; die "access denied" unless $curuser->access_right('View prospect'); -my $conf = new FS::Conf; - -my $date_format = $conf->config('date_format') || '%m/%d/%Y'; - my $prospectnum; if ( $cgi->param('prospectnum') =~ /^(\d+)$/ ) { $prospectnum = $1; @@ -150,6 +108,14 @@ my $prospect_main = qsearchs( { }); die "Prospect not found!" unless $prospect_main; +my $title = encode_entities($prospect_main->name); +$title = mt("Prospect"). ": $title"; +$title .= ' ('.mt('DISABLED').')' + if $prospect_main->disabled; + my @agentnums = $curuser->agentnums; +if (scalar(@agentnums) > 1 ) { + $title = encode_entities($prospect_main->agent->agent). " $title"; +}