toten Code entfernt
authorJan Büren <jan@kivitendo.de>
Thu, 29 Nov 2018 10:15:30 +0000 (11:15 +0100)
committerJan Büren <jan@kivitendo.de>
Thu, 29 Nov 2018 10:15:30 +0000 (11:15 +0100)
SL/DO.pm
SL/IS.pm
SL/OE.pm

index 70fa876..1f431ce 100644 (file)
--- a/SL/DO.pm
+++ b/SL/DO.pm
@@ -1073,21 +1073,6 @@ sub order_details {
   $main::lxdebug->leave_sub();
 }
 
-sub project_description {
-  $main::lxdebug->enter_sub();
-
-  my ($self, $dbh, $id) = @_;
-
-  my $form     =  $main::form;
-
-  my $query = qq|SELECT description FROM project WHERE id = ?|;
-  my ($value) = selectrow_query($form, $dbh, $query, $id);
-
-  $main::lxdebug->leave_sub();
-
-  return $value;
-}
-
 sub unpack_stock_information {
   $main::lxdebug->enter_sub();
 
index dc3604d..97e7248 100644 (file)
--- a/SL/IS.pm
+++ b/SL/IS.pm
@@ -562,20 +562,6 @@ sub invoice_details {
   $main::lxdebug->leave_sub();
 }
 
-sub project_description {
-  $main::lxdebug->enter_sub();
-
-  my ($self, $dbh, $id) = @_;
-  my $form = \%main::form;
-
-  my $query = qq|SELECT description FROM project WHERE id = ?|;
-  my ($description) = selectrow_query($form, $dbh, $query, conv_i($id));
-
-  $main::lxdebug->leave_sub();
-
-  return $_;
-}
-
 sub customer_details {
   $main::lxdebug->enter_sub();
 
index a2dea99..3954a93 100644 (file)
--- a/SL/OE.pm
+++ b/SL/OE.pm
@@ -1616,19 +1616,6 @@ sub order_details {
   $main::lxdebug->leave_sub();
 }
 
-sub project_description {
-  $main::lxdebug->enter_sub();
-
-  my ($self, $dbh, $id) = @_;
-
-  my $query = qq|SELECT description FROM project WHERE id = ?|;
-  my ($value) = selectrow_query($main::form, $dbh, $query, $id);
-
-  $main::lxdebug->leave_sub();
-
-  return $value;
-}
-
 1;
 
 __END__