diff options
| author | Mark Wells <mark@freeside.biz> | 2016-01-12 22:07:17 -0800 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2016-01-12 22:07:17 -0800 |
| commit | 8c4fb61d3ab13ca97f9fe037555087506435d9da (patch) | |
| tree | 29ba945c9bd20cd53c4f1c8b16a550dbaaebfad5 /httemplate/view/svc_acct/basics.html | |
| parent | 992573160bf2fc89b1d957973109e03d2abf0a47 (diff) | |
allow svc_acct password field to be disabled, #39528, fixing fallout from #29354 and #32456
Diffstat (limited to 'httemplate/view/svc_acct/basics.html')
| -rw-r--r-- | httemplate/view/svc_acct/basics.html | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/httemplate/view/svc_acct/basics.html b/httemplate/view/svc_acct/basics.html index 441c20add..1b7d56b23 100644 --- a/httemplate/view/svc_acct/basics.html +++ b/httemplate/view/svc_acct/basics.html @@ -33,22 +33,29 @@ % $password = ''; % $show_pw .= '<I>('. mt('hidden') .')</I>'; % } +% my $psc = $part_svc->part_svc_column('_password'); +% if ( $psc->columnflag eq 'F' and $psc->columnvalue eq '' ) { +% # show nothing +% } else { <TR> <TD ALIGN="right"><% mt('Password') %></TD> <TD STYLE="background-color: #ffffff; white-space: nowrap"> <% $show_pw %> -% my $curuser = $FS::CurrentUser::CurrentUser; -% if ( $curuser->access_right('Provision customer service') or -% ($curuser->access_right('Edit password') and -% ! $part_svc->restrict_edit_password) ) -% { +% my $curuser = $FS::CurrentUser::CurrentUser; +% if ( $curuser->access_right('Provision customer service') or +% ($curuser->access_right('Edit password') and +% ! $part_svc->restrict_edit_password) +% and $psc->columnflag ne 'F' +% ) +% { <& /elements/change_password.html, 'svc_acct' => $svc_acct, 'curr_value' => $password, &> -% } +% } </TD> </TR> +% } % if ( $conf->exists('security_phrase') ) { <& /view/elements/tr.html, label=>mt('Security phrase'), value=>$svc_acct->sec_phrase &> |
