X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/9d208f8e3effbecf0427f855a1d0b4473016cc39..a5315ec:/bin/mozilla/ct.pl diff --git a/bin/mozilla/ct.pl b/bin/mozilla/ct.pl index 5a579e92a..9e814e17b 100644 --- a/bin/mozilla/ct.pl +++ b/bin/mozilla/ct.pl @@ -711,23 +711,30 @@ 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 { @@ -743,7 +750,7 @@ sub delete_contact { my $contact = SL::DB::Manager::Contact->find_by(cp_id => $::form->{cp_id}); if ($contact->used) { - $contact->detach; + $contact->detach->save; flash('info', $::locale->text('Contact is in use and was flagged invalid.')); } else { $contact->delete;