X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fct.pl;h=31c70d0ccfbd6a9ad7afe5695318db8c8036dbb0;hb=eb8ba4764dff48ed8e67a00c48d02c9e7c6e5de5;hp=c2d3b9069ed1be5195c0233aebb9452fc4922e9f;hpb=61c893cd56f13b314ad0491873f6f197eaf6987f;p=kivitendo-erp.git diff --git a/bin/mozilla/ct.pl b/bin/mozilla/ct.pl index c2d3b9069..31c70d0cc 100644 --- a/bin/mozilla/ct.pl +++ b/bin/mozilla/ct.pl @@ -45,11 +45,14 @@ # $locale->text('Vendor deleted!') # $locale->text('Cannot delete vendor!') -use CGI::Ajax; use POSIX qw(strftime); use SL::CT; use SL::CVar; +use SL::Request qw(flatten); +use SL::DB::Business; +use SL::DB::Default; +use SL::Helper::Flash; use SL::ReportGenerator; require "bin/mozilla/common.pl"; @@ -108,6 +111,24 @@ sub search { $main::lxdebug->leave_sub(); } +sub search_contact { + $::lxdebug->enter_sub; + $::auth->assert('customer_vendor_edit'); + + $::form->{CUSTOM_VARIABLES} = CVar->get_configs('module' => 'Contacts'); + ($::form->{CUSTOM_VARIABLES_FILTER_CODE}, + $::form->{CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables' => $::form->{CUSTOM_VARIABLES}, + 'include_prefix' => 'l.', + 'filter_prefix' => 'filter.', + 'include_value' => 'Y'); + + $::form->{title} = $::locale->text('Search contacts'); + $::form->header; + print $::form->parse_html_template('ct/search_contact'); + + $::lxdebug->leave_sub; +} + sub list_names { $main::lxdebug->enter_sub(); @@ -141,6 +162,14 @@ sub list_names { push @options, $locale->text('Billing/shipping address (zipcode)') . " : $form->{zipcode}" if $form->{addr_zipcode}; push @options, $locale->text('Billing/shipping address (street)') . " : $form->{street}" if $form->{addr_street}; + if ($form->{business_id}) { + my $business = SL::DB::Manager::Business->find_by(id => $form->{business_id}); + if ($business) { + my $label = $form->{IS_CUSTOMER} ? $::locale->text('Customer type') : $::locale->text('Vendor type'); + push @options, $label . " : " . $business->description; + } + } + my @columns = ( 'id', 'name', "$form->{db}number", 'contact', 'phone', 'fax', 'email', 'taxnumber', 'street', 'zipcode' , 'city', @@ -175,7 +204,14 @@ sub list_names { map { $column_defs{$_}->{visible} = $form->{"l_$_"} eq 'Y' } @columns; - my @hidden_variables = (qw(db status obsolete name contact email cp_name addr_city), "$form->{db}number", @searchable_custom_variables, map { "l_$_" } @columns); + my @hidden_variables = ( qw( + db status obsolete name contact email cp_name addr_street addr_zipcode + addr_city business_id + ), "$form->{db}number", + map({ "cvar_$_->{name}" } @searchable_custom_variables), + map({ "l_$_" } @columns), + ); + my @hidden_nondefault = grep({ $form->{$_} } @hidden_variables); my $callback = build_std_url('action=list_names', grep { $form->{$_} } @hidden_nondefault); $form->{callback} = "$callback&sort=" . E($form->{sort}) . "&sortdir=" . E($form->{sortdir}); @@ -208,6 +244,7 @@ sub list_names { 'attachment_basename' => $attachment_basename . strftime('_%Y%m%d', localtime time), ); $report->set_options_from_form(); + $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv'; $report->set_columns(%column_defs); $report->set_column_order(@columns); @@ -250,6 +287,123 @@ sub list_names { $main::lxdebug->leave_sub(); } +sub list_contacts { + $::lxdebug->enter_sub; + $::auth->assert('customer_vendor_edit'); + + $::form->{sortdir} = 1 unless defined $::form->{sortdir}; + + my @contacts = CT->search_contacts( + search_term => $::form->{search_term}, + filter => $::form->{filter}, + ); + + my $cvar_configs = CVar->get_configs('module' => 'Contacts'); + + my @columns = qw( + cp_id vcname vcnumber cp_name cp_givenname cp_street cp_zipcode cp_city cp_phone1 cp_phone2 + cp_mobile1 cp_mobile2 cp_email cp_abteilung cp_birthday cp_gender + ); + + my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs }; + my @searchable_custom_variables = grep { $_->{searchable} } @{ $cvar_configs }; + my %column_defs_cvars = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @includeable_custom_variables; + + push @columns, map { "cvar_$_->{name}" } @includeable_custom_variables; + + my @visible_columns; + if ($::form->{l}) { + @visible_columns = grep { $::form->{l}{$_} } @columns; + push @visible_columns, qw(cp_phone1 cp_phone2) if $::form->{l}{cp_phone}; + push @visible_columns, qw(cp_mobile1 cp_mobile2) if $::form->{l}{cp_mobile}; + } else { + @visible_columns = qw(vcname vcnumber cp_name cp_givenname cp_phone1 cp_phone2 cp_mobile1 cp_email); + } + + my %column_defs = ( + 'cp_id' => { 'text' => $::locale->text('ID'), }, + 'vcname' => { 'text' => $::locale->text('Customer/Vendor'), }, + 'vcnumber' => { 'text' => $::locale->text('Customer/Vendor Number'), }, + 'cp_name' => { 'text' => $::locale->text('Name'), }, + 'cp_givenname' => { 'text' => $::locale->text('Given Name'), }, + 'cp_street' => { 'text' => $::locale->text('Street'), }, + 'cp_zipcode' => { 'text' => $::locale->text('Zipcode'), }, + 'cp_city' => { 'text' => $::locale->text('City'), }, + 'cp_phone1' => { 'text' => $::locale->text('Phone1'), }, + 'cp_phone2' => { 'text' => $::locale->text('Phone2'), }, + 'cp_mobile1' => { 'text' => $::locale->text('Mobile1'), }, + 'cp_mobile2' => { 'text' => $::locale->text('Mobile2'), }, + 'cp_email' => { 'text' => $::locale->text('E-mail'), }, + 'cp_abteilung' => { 'text' => $::locale->text('Department'), }, + 'cp_birthday' => { 'text' => $::locale->text('Birthday'), }, + 'cp_gender' => { 'text' => $::locale->text('Gender'), }, + %column_defs_cvars, + ); + + map { $column_defs{$_}->{visible} = 1 } @visible_columns; + + my @hidden_variables = (qw(search_term filter l)); + my $hide_vars = { map { $_ => $::form->{$_} } @hidden_variables }; + my @hidden_nondefault = grep({ $::form->{$_} } @hidden_variables); + my $callback = build_std_url('action=list_contacts', join '&', map { E($_->[0]) . '=' . E($_->[1]) } @{ flatten($hide_vars) }); + $::form->{callback} = "$callback&sort=" . E($::form->{sort}); + + map { $column_defs{$_}->{link} = "${callback}&sort=${_}&sortdir=" . ($::form->{sort} eq $_ ? 1 - $::form->{sortdir} : $::form->{sortdir}) } @columns; + + $::form->{title} = $::locale->text('Contacts'); + + my $report = SL::ReportGenerator->new(\%::myconfig, $::form); + + my @options; + push @options, $::locale->text('Search term') . ': ' . $::form->{search_term} if $::form->{search_term}; + for (qw(cp_name cp_givenname cp_title cp_email cp_abteilung cp_project)) { + push @options, $column_defs{$_}{text} . ': ' . $::form->{filter}{$_} if $::form->{filter}{$_}; + } + if ($::form->{filter}{status}) { + push @options, $::locale->text('Status') . ': ' . ( + $::form->{filter}{status} =~ /active/ ? $::locale->text('Active') : + $::form->{filter}{status} =~ /orphaned/ ? $::locale->text('Orphaned') : + $::form->{filter}{status} =~ /all/ ? $::locale->text('All') : '' + ); + } + + + $report->set_options('top_info_text' => join("\n", @options), + 'output_format' => 'HTML', + 'title' => $::form->{title}, + 'attachment_basename' => $::locale->text('contact_list') . strftime('_%Y%m%d', localtime time), + ); + $report->set_options_from_form; + + $report->set_columns(%column_defs); + $report->set_column_order(@columns); + + $report->set_export_options('list_contacts', @hidden_variables); + + $report->set_sort_indicator($::form->{sort}, $::form->{sortdir}); + + CVar->add_custom_variables_to_report('module' => 'Contacts', + 'trans_id_field' => 'cp_id', + 'configs' => $cvar_configs, + 'column_defs' => \%column_defs, + 'data' => \@contacts); + + + foreach my $ref (@contacts) { + my $row = { map { $_ => { 'data' => $ref->{$_} } } @columns }; + + $row->{vcname}->{link} = build_std_url('action=edit', 'id=' . E($ref->{vcid}), 'db=' . E($ref->{db}), 'callback', @hidden_nondefault); + $row->{vcnumber}->{link} = $row->{vcname}->{link}; + $row->{cp_email}->{link} = 'mailto:' . E($ref->{cp_email}); + + $report->add_data($row); + } + + $report->generate_with_headers; + + $::lxdebug->leave_sub; +} + sub edit { $main::lxdebug->enter_sub(); @@ -269,6 +423,8 @@ sub edit { # format discount $form->{discount} *= 100; + # format uri + $form->{homepage} = 'http://' . $form->{homepage} unless ((!$form->{homepage}) || $form->{homepage} =~ m|^https?://|); &form_header; &form_footer; @@ -276,6 +432,15 @@ sub edit { $main::lxdebug->leave_sub(); } +sub _shipto_label { + my $s = shift(@_); + join('; ', grep { $_ } map { $s->{"shipto$_"} } qw(name department_1 street city)) || ' ' +} + +sub _contacts_label { + join ", ", grep { $_ } $_[0]->{cp_name}, $_[0]->{cp_givenname}; +} + sub form_header { $main::lxdebug->enter_sub(); @@ -285,37 +450,57 @@ sub form_header { my %myconfig = %main::myconfig; my $locale = $main::locale; - $form->get_lists(employees => "ALL_EMPLOYEES", - taxzones => "ALL_TAXZONES", - business_types => { key => 'ALL_SALESMAN_BUSINESSES', salesman => 1 }); + $form->get_lists(taxzones => "ALL_TAXZONES", + currencies => "ALL_CURRENCIES"); $form->get_pricegroup(\%myconfig, { all => 1 }); - $form->{ALL_SALESMEN} = $form->{ALL_EMPLOYEES}; + $form->get_lists(customers => { key => "ALL_SALESMAN_CUSTOMERS", business_is_salesman => 1 }) if $::lx_office_conf{features}->{vertreter}; + $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $::form->{FU_created_for_user}, deleted => 0 ] ]); + $form->{ALL_SALESMEN} = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $::form->{salesman_id}, deleted => 0 ] ]); + $form->{USER} = SL::DB::Manager::Employee->current; + $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : ""; - $form->{is_admin} = $myconfig{role} eq 'admin'; $form->{is_customer} = $form->{db} eq 'customer'; - $form->{salesman_label} = sub { $_[0]->{name} ne "" ? $_[0]->{name} : $_[0]->{login} }; - $form->{shipto_label} = sub { my $s = shift(@_); join('; ', grep { $_ } map { $s->{"shipto$_"} } qw(name department_1 street city)) || ' ' }; - $form->{contacts_label} = sub { join ", ", grep { $_ } $_[0]->{cp_name}, $_[0]->{cp_givenname} }; + $form->{shipto_label} = \&_shipto_label; + $form->{contacts_label} = \&_contacts_label; $form->{taxzone_id} = 0 if !$form->{id}; $form->{jsscript} = 1; $form->{fokus} = "ct.greeting"; - $form->{AJAX} = [ new CGI::Ajax( map {; "get_$_" => "$form->{script}?action=get_$_" } qw(shipto contact delivery) ) ]; - - unshift @{ $form->{SHIPTO} }, +{ shipto_id => '0', shiptoname => '' }, +{ shipto_id => '0', shiptoname => 'Alle' }; - unshift @{ $form->{CONTACTS} }, +{ cp_id => '0', cp_name => $locale->text('New contact') }; + $form->{SHIPTO_ALL} = [ +{ shipto_id => '0', shiptoname => $::locale->text('All') }, @{ $form->{SHIPTO} } ]; $form->{title} = $form->{title_save} || $locale->text("$form->{title} " . ucfirst $form->{db}) . ($form->{title} eq "Edit" ? " $form->{name}" : ''); CT->query_titles_and_greetings(\%myconfig, \%$form); - map { $form->{"MB_$_"} = [ map +{ id => $_, description => $_ }, @{ $form->{$_} } ] } qw(TITLES GREETINGS COMPANY_GREETINGS DEPARTMENT); + map { $form->{"MB_$_"} = [ map +{ id => $_, description => $_ }, @{ $form->{$_} } ] } qw(COMPANY_GREETINGS); $form->{NOTES} ||= [ ]; - $form->{CUSTOM_VARIABLES} = CVar->get_custom_variables('module' => 'CT', 'trans_id' => $form->{id}); + if (!$form->{'language_id'}) { + my $l_id = SL::DB::Default->get->{'language_id'}; + if ($l_id) { + $form->{'default_language_id'} = $l_id; + } + } + + if (!$form->{'id'}) { + $form->{'currency'} = $form->get_default_currency(\%myconfig); + } else { + $form->{currency} = $form->{curr}; + } + + $::form->{CUSTOM_VARIABLES} = { }; + my %specs = ( CT => { field => 'id', name_prefix => '', }, + Contacts => { field => 'cp_id', name_prefix => 'cp', }, + ); + + for my $module (keys %specs) { + my $spec = $specs{$module}; - CVar->render_inputs('variables' => $form->{CUSTOM_VARIABLES}) if (scalar @{ $form->{CUSTOM_VARIABLES} }); + $::form->{CUSTOM_VARIABLES}->{$module} = CVar->get_custom_variables(module => $module, trans_id => $::form->{ $spec->{field} }); + CVar->render_inputs(variables => $::form->{CUSTOM_VARIABLES}->{$module}, name_prefix => $spec->{name_prefix}) + if scalar @{ $::form->{CUSTOM_VARIABLES}->{$module} }; + } $form->header; print $form->parse_html_template('ct/form_header'); @@ -335,6 +520,29 @@ sub form_footer { $main::lxdebug->leave_sub(); } +sub _do_save { + $main::auth->assert('customer_vendor_edit & ' . + '(general_ledger | invoice_edit | vendor_invoice_edit | ' . + ' request_quotation_edit | sales_quotation_edit | sales_order_edit | purchase_order_edit)'); + + $::form->isblank("name", $::locale->text("Name missing!")); + + if ($::form->{new_salesman_id} && $::lx_office_conf{features}->{vertreter}) { + $::form->{salesman_id} = $::form->{new_salesman_id}; + delete $::form->{new_salesman_id}; + } + + my $res = $::form->{db} eq 'customer' ? CT->save_customer(\%::myconfig, $::form) : CT->save_vendor(\%::myconfig, $::form); + + if (3 == $res) { + if ($::form->{"db"} eq "customer") { + $::form->error($::locale->text('This customer number is already in use.')); + } else { + $::form->error($::locale->text('This vendor number is already in use.')); + } + } +} + sub add_transaction { $main::lxdebug->enter_sub(); @@ -349,16 +557,11 @@ sub add_transaction { # # saving the history # if(!exists $form->{addition}) { # $form->{addition} = "ADD TRANSACTION"; -# $form->save_history($form->dbconnect(\%myconfig)); +# $form->save_history; # } # # /saving the history - $form->isblank("name", $locale->text("Name missing!")); - if ($form->{"db"} eq "customer") { - CT->save_customer(\%myconfig, \%$form); - } else { - CT->save_vendor(\%myconfig, \%$form); - } + _do_save(); $form->{callback} = $form->escape($form->{callback}, 1); my $name = $form->escape("$form->{name}", 1); @@ -383,7 +586,7 @@ sub save_and_ap_transaction { if(!exists $form->{addition}) { $form->{snumbers} = qq|invnumber_| . $form->{invnumber}; $form->{addition} = "SAVED"; - $form->save_history($form->dbconnect(\%myconfig)); + $form->save_history; } # /saving the history &add_transaction; @@ -403,7 +606,7 @@ sub save_and_ar_transaction { if(!exists $form->{addition}) { $form->{snumbers} = qq|invnumber_| . $form->{invnumber}; $form->{addition} = "SAVED"; - $form->save_history($form->dbconnect(\%myconfig)); + $form->save_history; } # /saving the history &add_transaction; @@ -428,7 +631,7 @@ sub save_and_invoice { if(!exists $form->{addition}) { $form->{snumbers} = qq|invnumber_| . $form->{invnumber}; $form->{addition} = "SAVED"; - $form->save_history($form->dbconnect(\%myconfig)); + $form->save_history; } # /saving the history &add_transaction; @@ -449,7 +652,7 @@ sub save_and_rfq { if(!exists $form->{addition}) { $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber}; $form->{addition} = "SAVED"; - $form->save_history($form->dbconnect(\%myconfig)); + $form->save_history; } # /saving the history &add_transaction; @@ -470,7 +673,7 @@ sub save_and_quotation { if(!exists $form->{addition}) { $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber}; $form->{addition} = "SAVED"; - $form->save_history($form->dbconnect(\%myconfig)); + $form->save_history; } # /saving the history &add_transaction; @@ -496,7 +699,7 @@ sub save_and_order { if(!exists $form->{addition}) { $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber}; $form->{addition} = "SAVED"; - $form->save_history($form->dbconnect(\%myconfig)); + $form->save_history; } # /saving the history &add_transaction; @@ -515,21 +718,13 @@ sub save_and_close { my $msg = ucfirst $form->{db}; $msg .= " saved!"; - $form->isblank("name", $locale->text("Name missing!")); - my $rc; - if ($form->{"db"} eq "customer") { - $rc = CT->save_customer(\%myconfig, \%$form); - } else { - $rc = CT->save_vendor(\%myconfig, \%$form); - } - if ($rc == 3) { - $form->error($locale->text('customernumber not unique!')); - } + _do_save(); + # saving the history if(!exists $form->{addition}) { $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber}); $form->{addition} = "SAVED"; - $form->save_history($form->dbconnect(\%myconfig)); + $form->save_history; } # /saving the history $form->redirect($locale->text($msg)); @@ -549,32 +744,19 @@ sub save { my $msg = ucfirst $form->{db}; $msg .= " saved!"; - $form->isblank("name", $locale->text("Name missing!")); - - my $res; - if ($form->{"db"} eq "customer") { - $res = CT->save_customer(\%myconfig, \%$form); - } else { - $res = CT->save_vendor(\%myconfig, \%$form); - } + _do_save(); - if (3 == $res) { - if ($form->{"db"} eq "customer") { - $form->error($locale->text('This customer number is already in use.')); - } else { - $form->error($locale->text('This vendor number is already in use.')); - } - } # saving the history if(!exists $form->{addition}) { $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber}); $form->{addition} = "SAVED"; - $form->save_history($form->dbconnect(\%myconfig)); + $form->save_history; } # /saving the history &edit; - exit; + $main::lxdebug->leave_sub(); + ::end_of_request(); } sub delete { @@ -594,14 +776,11 @@ sub delete { if(!exists $form->{addition}) { $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber}); $form->{addition} = "DELETED"; - $form->save_history($form->dbconnect(\%myconfig)); + $form->save_history; } # /saving the history $form->redirect($locale->text($msg)); - $msg = "Cannot delete $form->{db}"; - $form->error($locale->text($msg)); - $main::lxdebug->leave_sub(); } @@ -634,14 +813,19 @@ sub get_contact { $main::auth->assert('customer_vendor_edit'); - my $form = $main::form; - my %myconfig = %main::myconfig; + CT->populate_drop_down_boxes(\%::myconfig, $::form); + CT->query_titles_and_greetings(\%::myconfig, $::form); + CT->get_contact(\%::myconfig, $::form) if $::form->{cp_id}; - CT->get_contact(\%myconfig, \%$form); - print $form->ajax_response_header(), join '__pjx__', map $form->{"cp_$_"}, - qw(name title givenname phone1 phone2 email abteilung fax mobile1 mobile2 satphone satfax project privatphone privatemail birthday used gender); - $main::lxdebug->leave_sub(); + $::form->{CUSTOM_VARIABLES}{Contacts} = CVar->get_custom_variables(module => 'Contacts', trans_id => $::form->{cp_id}); + CVar->render_inputs(variables => $::form->{CUSTOM_VARIABLES}{Contacts}, name_prefix => 'cp') + if scalar @{ $::form->{CUSTOM_VARIABLES}->{Contacts} }; + $::form->{contacts_label} = \&_contacts_label; + + print $::form->ajax_response_header(), $::form->parse_html_template('ct/_contact'); + + $main::lxdebug->leave_sub(); } sub get_shipto { @@ -649,14 +833,14 @@ sub get_shipto { $main::auth->assert('customer_vendor_edit'); - my $form = $main::form; - my %myconfig = %main::myconfig; + CT->populate_drop_down_boxes(\%::myconfig, $::form); + CT->get_shipto(\%::myconfig, $::form) if $::form->{shipto_id}; - CT->get_shipto(\%myconfig, \%$form); - print $form->ajax_response_header(), join '__pjx__', map $form->{"shipto$_"}, - qw(name department_1 department_2 street zipcode city country contact phone fax email used); - $main::lxdebug->leave_sub(); + $::form->{shipto_label} = \&_shipto_label; + + print $::form->ajax_response_header(), $::form->parse_html_template('ct/_shipto'); + $main::lxdebug->leave_sub(); } sub get_delivery { @@ -676,43 +860,57 @@ sub get_delivery { } sub delete_shipto { - $main::lxdebug->enter_sub(); + $::lxdebug->enter_sub; + $::auth->assert('customer_vendor_edit'); - $main::auth->assert('customer_vendor_edit'); + if (!$::form->{shipto_id}) { + flash('error', $::locale->text('No shipto selected to delete')); + } else { - my $form = $main::form; - my %myconfig = %main::myconfig; + CT->get_shipto(\%::myconfig, $::form); - CT->get_shipto(\%myconfig, \%$form); + my $shipto = SL::DB::Manager::Shipto->find_by(shipto_id => $::form->{shipto_id}); - unless ($form->{shiptoused}) { - CT->delete_shipto($form->{shipto_id}); - @$form{ grep /^shipto/, keys %$form } = undef; + if ($shipto->used) { + $shipto->detach->save; + flash('info', $::locale->text('Shipto is in use and was flagged invalid.')); + } else { + $shipto->delete; + flash('info', $::locale->text('Shipto deleted.')); + } + delete $::form->{$_} for grep /^shipto/, keys %$::form; } edit(); - $main::lxdebug->leave_sub(); + $::lxdebug->leave_sub; } sub delete_contact { - $main::lxdebug->enter_sub(); + $::lxdebug->enter_sub; + $::auth->assert('customer_vendor_edit'); - $main::auth->assert('customer_vendor_edit'); + if (!$::form->{cp_id}) { + flash('error', $::locale->text('No contact selected to delete')); + } else { - my $form = $main::form; - my %myconfig = %main::myconfig; + CT->get_contact(\%::myconfig, $::form); - CT->get_contact(\%myconfig, \%$form); + my $contact = SL::DB::Manager::Contact->find_by(cp_id => $::form->{cp_id}); - unless ($form->{cp_used}) { - CT->delete_shipto($form->{cp_id}); - @$form{ grep /^cp_/, keys %$form } = undef; + if ($contact->used) { + $contact->detach->save; + flash('info', $::locale->text('Contact is in use and was flagged invalid.')); + } else { + $contact->delete; + flash('info', $::locale->text('Contact deleted.')); + } + delete $::form->{$_} for grep /^cp_/, keys %$::form; } edit(); - $main::lxdebug->leave_sub(); + $::lxdebug->leave_sub; } sub ajax_autocomplete {