package LIMS::Controller::Admin::Config::ReferralSources; use base 'LIMS::Base'; use LIMS::Local::Sugar; use Moose; with ( 'LIMS::Controller::Roles::SearchConstraint', 'LIMS::Controller::Roles::LocationSearch', ); __PACKAGE__->meta->make_immutable(inline_constructor => 0); __PACKAGE__->authz->authz_runmodes( ':all' => 'do_admin' ); # ------------------------------------------------------------------------------------- startmode default ($errs) { $self->_debug_path($self->get_current_runmode); # $self->stash(errs => $errs); # get js validation foo_onsubmit & foo_dfv_js vars into tt_params: $self->js_validation_profile('referral_sources'); return $self->tt_process($errs); } # ------------------------------------------------------------------------------------- runmode search { $self->_debug_path($self->get_current_runmode); # function located in LIMS::Controller::Roles::LocationSearch: return $self->referral_source_search; } # ------------------------------------------------------------------------------------- runmode edit ($errs, $id) { $self->_debug_path($self->get_current_runmode); $id || return $self->error('no id passed to '.$self->get_current_runmode); # $self->debug('id:'.$id); my $data = $self->model('ReferralSource')->get_referral_source($id); my $parent_organisations = $self->model('ReferralSource') ->get_parent_organisations({}, { sort_by => 'description' }); # 1st arg = $search_terms $self->tt_params( errs => $errs, data => $data, parent_organisations => $parent_organisations, ); # get js validation foo_onsubmit & foo_dfv_js vars into tt_params: $self->js_validation_profile('referral_sources'); return $self->tt_process($errs); } # ------------------------------------------------------------------------------------- runmode update ($id) { $self->_debug_path($self->get_current_runmode); # put id (if submitted) into params() as _record_id for validation: if ( $id ) { $self->query->param( _record_id => $id ); } # if param 'id' passed, return error to edit(): my $error_rm = $id ? 'edit' : 'default'; my $dfv = $self->check_rm($error_rm, $self->validate('referral_sources') ) || return $self->dfv_error_page; my $data = $dfv->valid || return $self->forward('default'); # $self->debug($data); # eg if empty param # provide 'id' if supplied, so record updated, otherwise new one created: if ( $id ) { $data->{id} = $id; } my $rtn = $self->model('ReferralSource')->update_referral_sources($data); if ($rtn) { return $self->error($rtn); } else { # set success message: my $msg = $id ? 'edit_success' : 'create_success'; $self->flash( info => $self->messages('action')->{$msg} ); if ( # issue outreach practice warning on new practice: $msg eq 'create_success' && $self->cfg('settings')->{have_outreach} && $data->{referral_type} eq 'practice' ) { my $msg = $self->messages('admin')->{referral_source}->{outreach}; $self->flash( warning => $msg ); } $self->redirect( $self->query->url . '/config/referral-sources' ); } } # ------------------------------------------------------------------------------------- =begin # can't use numerical values with show/hide javascript sub _get_referral_types_map { my $self = shift; my $referral_types = $self->model('ReferralSource')->get_referral_types(); my %referral_types_map = map { $_->description => $_->id; } @$referral_types; return \%referral_types_map; } =cut 1;