X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2Fcust_main%2Ftop_misc.html;h=4d2f24bacf75c1d0161d54782a818474619a555e;hb=d29246235612a059d83f7f83bb3d087c4623c4b7;hp=a2381f3684d66d3789940fb308fefda1fb2b365d;hpb=b76d8cd6704292a90d71bfea31859ed22e2fa23f;p=freeside.git diff --git a/httemplate/edit/cust_main/top_misc.html b/httemplate/edit/cust_main/top_misc.html index a2381f368..4d2f24bac 100644 --- a/httemplate/edit/cust_main/top_misc.html +++ b/httemplate/edit/cust_main/top_misc.html @@ -1,12 +1,42 @@ <% &ntable("#cccccc") %> %# tags -<% include('/elements/tr-select-cust_tag.html', +<& /elements/tr-select-cust_tag.html, 'custnum' => $custnum, 'cgi' => $cgi, - ) -%> - +&> + + %# agent % if ( $cgi->param('lock_agentnum') =~ /^(\d+)$/ && $curuser->agentnum($1) ) { % @@ -14,22 +44,23 @@ % $cust_main->agentnum($agentnum); - + - Agent + <% mt('Agent') |h %> <% $cust_main->agent->agent |h %> - + % } else { - <% include('/elements/tr-select-agent.html', + <& /elements/tr-select-agent.html, 'curr_value' => $cust_main->agentnum, - 'label' => "${r}Agent", - 'empty_label' => 'Select agent', + 'label' => "${r}".emt('Agent')."", + 'empty_label' => emt('Select agent'), 'disable_empty' => ( $cust_main->agentnum ? 1 : 0 ), - 'viewall_right' => 'None', #override default 'View customers of all agents' - ) - %> + 'viewall_right' => emt('None'), + 'onchange' => 'agent_changed(this)', + &> % } @@ -37,7 +68,7 @@ % if ( $conf->exists('cust_main-edit_agent_custid') ) { - Customer identifier + <% mt('Customer identifier') |h %> @@ -48,13 +79,10 @@ % } %# class -<% include('/elements/tr-select-cust_class.html', +<& /elements/tr-select-cust_class.html, 'curr_value' => $cust_main->classnum, - 'label' => "Class", - #'empty_label' => '(none)', - #'disable_empty' => - ) -%> + 'label' => emt("Class"), +&> %# referral (advertising source) %my $refnum = $cust_main->refnum || $conf->config('referraldefault') || 0; @@ -64,10 +92,9 @@ % } else { - <% include('/elements/tr-select-part_referral.html', + <& /elements/tr-select-part_referral.html, 'curr_value' => $refnum - ) - %> + &> % } @@ -80,9 +107,9 @@ %) { - Referring customer + <% mt('Referring customer') |h %> - <% $cust_main->referral_custnum %>: <% $referring_cust_main->name %> + <% $cust_main->referral_custnum %>: <% $referring_cust_main->name |h %> @@ -90,14 +117,12 @@ % } elsif ( ! $conf->exists('disable_customer_referrals') ) { - Referring customer + <% mt('Referring customer') |h %> - - <% include('/elements/search-cust_main.html', + <& /elements/search-cust_main.html, 'field_name' => 'referral_custnum', 'curr_value' => $cust_main->referral_custnum, - ) - %> + &> @@ -107,13 +132,37 @@ %# signup date % if ( $conf->exists('cust_main-edit_signupdate') ) { - <% include('/elements/tr-input-date-field.html', { + <& /elements/tr-input-date-field.html, { 'name' => 'signupdate', 'value' => $cust_main->signupdate, - 'label' => 'Signup date', + 'label' => emt('Signup date'), 'format' => ( $conf->config('date_format') || "%m/%d/%Y" ), - }) - %> + } + &> +% } + +% # permission to edit ticket subjects +% if ( $conf->exists('ticket_system-selfservice_edit_subject') ) { + + + edit_subject ? 'CHECKED' : '' %>> + <% mt('Can edit ticket subjects') |h %> + +% } else { + +% } + +% # permission to edit +% if ( $conf->exists('cust_main-edit_calling_list_exempt') ) { + + + calling_list_exempt ? 'CHECKED' : '' %>> + <% mt('Calling list exempt') |h %> + +% } else { + % } @@ -130,4 +179,18 @@ my $curuser = $FS::CurrentUser::CurrentUser; my $r = qq!* !; +# which agents lock the service address, if any +my %ship_locked_agents; +foreach (qsearch('agent',{})) { + my $agentnum = $_->agentnum; + next unless $conf->exists('agent-ship_address', $_->agentnum); + my $agent_cust_main = $_->agent_cust_main or next; + my $pre = ''; + $pre = 'ship_' if $agent_cust_main->has_ship_address; + $ship_locked_agents{$agentnum} = +{ + map { $_ => $agent_cust_main->get($pre.$_) } + qw(address1 city state zip country latitude longitude) + }; +} +