X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2Fprocess%2Faccess_user.html;h=fcd210f83c57569517b2dcc38fa4898f49208fe9;hb=3dd3c5bb7cb8343733164dd706b333ae3f67a55a;hp=7fc7c25e13e5ffa6077c0493404abb5e922e91ca;hpb=120718856665ca90ad852535d1155f8ea8ecb6b6;p=freeside.git diff --git a/httemplate/edit/process/access_user.html b/httemplate/edit/process/access_user.html index 7fc7c25e1..fcd210f83 100644 --- a/httemplate/edit/process/access_user.html +++ b/httemplate/edit/process/access_user.html @@ -11,7 +11,8 @@ 'target_table' => 'access_group', }, 'precheck_callback' => \&precheck_callback, - 'post_new_object_callback' => \&post_new_object_callback, + #'post_new_object_callback' => \&post_new_object_callback, + 'noerror_callback' => \&noerror_callback, ) %> % } @@ -28,7 +29,7 @@ if ( FS::Conf->new->exists('disable_acl_changes') ) { sub precheck_callback { my $cgi = shift; - my $o = FS::access_user->new({username => $cgi->param('username')}); + my $o = FS::access_user->new({username => scalar($cgi->param('username'))}); if( $o->is_system_user and !$cgi->param('usernum') ) { $cgi->param('username',''); return "username '".$o->username."' reserved for system account." @@ -37,12 +38,49 @@ sub precheck_callback { return ''; } -sub post_new_object_callback { +#sub post_new_object_callback { +# my( $cgi, $access_user ) = @_; +# +# if ( length($cgi->param('_password')) ) { +# my $password = scalar($cgi->param('_password')); +# my $error = $access_user->is_password_allowed($password); +# #XXX and then bubble the error back up to the UI +# } +#} + +sub noerror_callback { my( $cgi, $access_user ) = @_; if ( length($cgi->param('_password')) ) { my $password = scalar($cgi->param('_password')); - $access_user->change_password_fields($password); + $access_user->change_password($password); + } + + #handle installer checkbox + my @sched_item = $access_user->sched_item; + my $sched_item = $sched_item[0]; + if ( $cgi->param('sched_item_enabled') ) { + + if ( ! $sched_item ) { + my $sched_item = new FS::sched_item { + 'usernum' => $access_user->usernum, + }; + my $error = $sched_item->insert; + die $error if $error; #wtf? shouldn't happen + } elsif ( $sched_item->disabled ) { + $sched_item->disabled(''); + my $error = $sched_item->replace; + die $error if $error; #wtf? shouldn't happen + } + + } elsif ( ! $cgi->param('sched_item_enabled') + && $sched_item + && ! $sched_item->disabled + ) + { + $sched_item->disabled('Y'); + my $error = $sched_item->replace; + die $error if $error; #wtf? shouldn't happen } }