X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2Fcust_main%2Ftop_misc.html;h=45152e183116af87eab64a016e990db1f4d88305;hb=928a126034e99d99420a1cf1a7eb551e1e1d320d;hp=041050664edd5c00dfa216a72edc20582137d8ab;hpb=c183de0b7e942672cafdc1c14a203e389ffd2c43;p=freeside.git diff --git a/httemplate/edit/cust_main/top_misc.html b/httemplate/edit/cust_main/top_misc.html index 041050664..45152e183 100644 --- a/httemplate/edit/cust_main/top_misc.html +++ b/httemplate/edit/cust_main/top_misc.html @@ -1,19 +1,41 @@ <% &ntable("#cccccc") %> +%# tags +<& /elements/tr-select-cust_tag.html, + 'custnum' => $custnum, + 'cgi' => $cgi, +&> + %# agent -<% include('/elements/tr-select-agent.html', - 'curr_value' => $cust_main->agentnum, - 'label' => "${r}Agent", - 'empty_label' => 'Select agent', - 'disable_empty' => ( $cust_main->agentnum ? 1 : 0 ), - ) -%> +% if ( $cgi->param('lock_agentnum') =~ /^(\d+)$/ && $curuser->agentnum($1) ) { +% +% my $agentnum = $1; +% $cust_main->agentnum($agentnum); + + + + + <% mt('Agent') |h %> + <% $cust_main->agent->agent |h %> + + +% } else { + + <& /elements/tr-select-agent.html, + 'curr_value' => $cust_main->agentnum, + 'label' => "${r}".emt('Agent')."", + 'empty_label' => emt('Select agent'), + 'disable_empty' => ( $cust_main->agentnum ? 1 : 0 ), + 'viewall_right' => emt('None'), + &> + +% } %# agent_custid % if ( $conf->exists('cust_main-edit_agent_custid') ) { - Customer identifier + <% mt('Customer identifier') |h %> @@ -23,6 +45,12 @@ % } +%# class +<& /elements/tr-select-cust_class.html, + 'curr_value' => $cust_main->classnum, + 'label' => emt("Class"), +&> + %# referral (advertising source) %my $refnum = $cust_main->refnum || $conf->config('referraldefault') || 0; %if ( $custnum && ! $conf->exists('editreferrals') ) { @@ -31,10 +59,9 @@ % } else { - <% include('/elements/tr-select-part_referral.html', + <& /elements/tr-select-part_referral.html, 'curr_value' => $refnum - ) - %> + &> % } @@ -43,43 +70,66 @@ %if ( $cust_main->referral_custnum % and $referring_cust_main = % qsearchs('cust_main', { custnum => $cust_main->referral_custnum } ) +% and ! $curuser->access_right('Edit referring customer') %) { - Referring customer + <% mt('Referring customer') |h %> <% $cust_main->referral_custnum %>: <% $referring_cust_main->name %> -% } elsif ( ! $conf->exists('disable_customer_referrals') ) { +% } 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, + &> -% } else { - +% } else { % } %# 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', - 'format' => $conf->config('date_format') || "%m/%d/%Y", - }) - %> + '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 { + % } @@ -92,6 +142,8 @@ my $custnum = $opt{'custnum'}; my $conf = new FS::Conf; +my $curuser = $FS::CurrentUser::CurrentUser; + my $r = qq!* !;