-sub get_tuple {
-  $main::lxdebug->enter_sub();
-
-  my ( $self, $myconfig, $form ) = @_;
-
-  my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
-
-  my $dbh   = $form->dbconnect($myconfig);
-  my $query =
-    qq|SELECT ct.*, b.id AS business, cp.* | .
-    qq|FROM $cv ct | .
-    qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
-    qq|LEFT JOIN contacts cp ON (ct.id = cp.cp_cv_id) | .
-    qq|WHERE (ct.id = ?) | .
-    qq|ORDER BY cp.cp_id LIMIT 1|;
-  my $sth = prepare_execute_query($form, $dbh, $query, $form->{id});
-
-  my $ref = $sth->fetchrow_hashref("NAME_lc");
-
-  map { $form->{$_} = $ref->{$_} } keys %$ref;
-
-  # remove any trailing whitespace
-  $form->{curr} =~ s/\s*$//;
-
-  $sth->finish;
-  if ( $form->{salesman_id} ) {
-    my $query =
-      qq|SELECT ct.name AS salesman | .
-      qq|FROM $cv ct | .
-      qq|WHERE ct.id = ?|;
-    ($form->{salesman}) =
-      selectrow_query($form, $dbh, $query, $form->{salesman_id});
-  }
-
-  my ($employee_id) = selectrow_query($form, $dbh, qq|SELECT id FROM employee WHERE login = ?|, $form->{login});
-  $query =
-    qq|SELECT n.*, n.itime::DATE AS created_on,
-         e.name AS created_by_name, e.login AS created_by_login
-       FROM notes n
-       LEFT JOIN employee e ON (n.created_by = e.id)
-       WHERE (n.trans_id = ?) AND (n.trans_module = 'ct')|;
-  $form->{NOTES} = selectall_hashref_query($form, $dbh, $query, conv_i($form->{id}));
-
-  $query =
-    qq|SELECT fu.follow_up_date, fu.done AS follow_up_done, e.name AS created_for_name, e.name AS created_for_login
-       FROM follow_ups fu
-       LEFT JOIN employee e ON (fu.created_for_user = e.id)
-       WHERE (fu.note_id = ?)
-         AND NOT COALESCE(fu.done, FALSE)
-         AND (   (fu.created_by = ?)
-              OR (fu.created_by IN (SELECT DISTINCT what FROM follow_up_access WHERE who = ?)))|;
-  $sth = prepare_query($form, $dbh, $query);
-
-  foreach my $note (@{ $form->{NOTES} }) {
-    do_statement($form, $sth, $query, conv_i($note->{id}), conv_i($note->{created_by}), conv_i($employee_id));
-    $ref = $sth->fetchrow_hashref();
-
-    map { $note->{$_} = $ref->{$_} } keys %{ $ref } if ($ref);
-  }
-
-  $sth->finish();
-
-  if ($form->{edit_note_id}) {
-    $query =
-      qq|SELECT n.id AS NOTE_id, n.subject AS NOTE_subject, n.body AS NOTE_body,
-           fu.id AS FU_id, fu.follow_up_date AS FU_date, fu.done AS FU_done, fu.created_for_user AS FU_created_for_user
-         FROM notes n
-         LEFT JOIN follow_ups fu ON ((n.id = fu.note_id) AND NOT COALESCE(fu.done, FALSE))
-         WHERE n.id = ?|;
-    $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{edit_note_id}));
-
-    if ($ref) {
-      foreach my $key (keys %{ $ref }) {
-        my $new_key       =  $key;
-        $new_key          =~ s/^([^_]+)/\U$1\E/;
-        $form->{$new_key} =  $ref->{$key};
-      }
-    }
-  }
-
-  # check if it is orphaned
-  my $arap      = ( $form->{db} eq 'customer' ) ? "ar" : "ap";
-  my $num_args  = 2;
-  my $makemodel = '';
-  if ($form->{db} eq 'vendor') {
-    $makemodel = qq| UNION SELECT 1 FROM makemodel mm WHERE mm.make = ?|;
-    $num_args++;
-  }
-
-  $query =
-    qq|SELECT a.id | .
-    qq|FROM $arap a | .
-    qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
-    qq|WHERE ct.id = ? | .
-    qq|UNION | .
-    qq|SELECT a.id | .
-    qq|FROM oe a | .
-    qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
-    qq|WHERE ct.id = ?|
-    . $makemodel;
-  my ($dummy) = selectrow_query($form, $dbh, $query, (conv_i($form->{id})) x $num_args);
-
-  $form->{status} = "orphaned" unless ($dummy);
-
-  $dbh->disconnect;
-
-  $main::lxdebug->leave_sub();
-}
-
-sub populate_drop_down_boxes {
-  $main::lxdebug->enter_sub();
-
-  my ($self, $myconfig, $form, $provided_dbh) = @_;
-  my $query;
-
-  my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect($myconfig);
-
-  # get business types
-  $query = qq|SELECT id, description FROM business ORDER BY id|;
-  $form->{all_business} = selectall_hashref_query($form, $dbh, $query);
-
-  # get shipto address
-  $query =
-    qq|SELECT shipto_id, shiptoname, shiptodepartment_1, shiptostreet, shiptocity
-       FROM shipto
-       WHERE (trans_id = ?) AND (module = 'CT')|;
-  $form->{SHIPTO} = selectall_hashref_query($form, $dbh, $query, $form->{id});
-
-  # get contacts
-  $query  = qq|SELECT cp_id, cp_name, cp_givenname FROM contacts WHERE cp_cv_id = ? ORDER BY cp_name|;
-  $form->{CONTACTS} = selectall_hashref_query($form, $dbh, $query, $form->{id});
-
-  # get languages
-  $query = qq|SELECT id, description FROM language ORDER BY id|;
-  $form->{languages} = selectall_hashref_query($form, $dbh, $query);
-
-  # get payment terms
-  $query = qq|SELECT id, description FROM payment_terms ORDER BY sortkey|;
-  $form->{payment_terms} = selectall_hashref_query($form, $dbh, $query);
-
-  $dbh->disconnect() unless ($provided_dbh);
-
-  $main::lxdebug->leave_sub();
-}
-
-sub query_titles_and_greetings {
-  $main::lxdebug->enter_sub();
-
-  my ( $self, $myconfig, $form ) = @_;
-  my ( %tmp,  $ref, $query );
-
-  my $dbh = $form->dbconnect($myconfig);
-
-  $query =
-    qq|SELECT DISTINCT(greeting) | .
-    qq|FROM customer | .
-    qq|WHERE greeting ~ '[a-zA-Z]' | .
-    qq|UNION | .
-    qq|SELECT DISTINCT(greeting) | .
-    qq|FROM vendor | .
-    qq|WHERE greeting ~ '[a-zA-Z]' | .
-    qq|ORDER BY greeting|;
-
-  map({ $tmp{$_} = 1; } selectall_array_query($form, $dbh, $query));
-  $form->{COMPANY_GREETINGS} = [ sort(keys(%tmp)) ];
-
-  $query =
-    qq|SELECT DISTINCT(cp_title) | .
-    qq|FROM contacts | .
-    qq|WHERE cp_title ~ '[a-zA-Z]'|;
-  $form->{TITLES} = [ selectall_array_query($form, $dbh, $query) ];
-
-  $query =
-    qq|SELECT DISTINCT(cp_abteilung) | .
-    qq|FROM contacts | .
-    qq|WHERE cp_abteilung ~ '[a-zA-Z]'|;
-  $form->{DEPARTMENT} = [ selectall_array_query($form, $dbh, $query) ];
-
-  $dbh->disconnect();
-  $main::lxdebug->leave_sub();
-}
-
-sub save_customer {
-  $main::lxdebug->enter_sub();
-
-  my ( $self, $myconfig, $form ) = @_;
-
-  # set pricegroup to default
-  $form->{klass} = 0 unless ($form->{klass});
-
-  # connect to database
-  my $dbh = $form->get_standard_dbh;
-
-  map( {
-    $form->{"cp_${_}"} = $form->{"selected_cp_${_}"}
-    if ( $form->{"selected_cp_${_}"} );
-       } qw(title greeting abteilung) );
-  $form->{"greeting"} = $form->{"selected_company_greeting"}
-  if ( $form->{"selected_company_greeting"} );
-
-  # assign value discount, terms, creditlimit
-  $form->{discount} = $form->parse_amount( $myconfig, $form->{discount} );
-  $form->{discount} /= 100;
-  $form->{creditlimit} = $form->parse_amount( $myconfig, $form->{creditlimit} );
-
-  my ( $query, $sth, $f_id );
-
-  if ( $form->{id} ) {
-    $query = qq|SELECT id FROM customer WHERE customernumber = ?|;
-    ($f_id) = selectrow_query($form, $dbh, $query, $form->{customernumber});
-
-    if (($f_id ne $form->{id}) && ($f_id ne "")) {
-      $main::lxdebug->leave_sub();
-      return 3;
-    }
-
-  } else {
-    my $customernumber      = SL::TransNumber->new(type        => 'customer',
-                                                   dbh         => $dbh,
-                                                   number      => $form->{customernumber},
-                                                   business_id => $form->{business},
-                                                   save        => 1);
-    $form->{customernumber} = $customernumber->create_unique unless $customernumber->is_unique;
-
-    $query = qq|SELECT nextval('id')|;
-    ($form->{id}) = selectrow_query($form, $dbh, $query);
-
-    $query = qq|INSERT INTO customer (id, name) VALUES (?, '')|;
-    do_query($form, $dbh, $query, $form->{id});
-  }
-
-  $query = qq|UPDATE customer SET | .
-    qq|customernumber = ?, | .
-    qq|name = ?, | .
-    qq|greeting = ?, | .
-    qq|department_1 = ?, | .
-    qq|department_2 = ?, | .
-    qq|street = ?, | .
-    qq|zipcode = ?, | .
-    qq|city = ?, | .
-    qq|country = ?, | .
-    qq|homepage = ?, | .
-    qq|contact = ?, | .
-    qq|phone = ?, | .
-    qq|fax = ?, | .
-    qq|email = ?, | .
-    qq|cc = ?, | .
-    qq|bcc = ?, | .
-    qq|notes = ?, | .
-    qq|discount = ?, | .
-    qq|creditlimit = ?, | .
-    qq|terms = ?, | .
-    qq|business_id = ?, | .
-    qq|taxnumber = ?, | .
-    qq|language = ?, | .
-    qq|account_number = ?, | .
-    qq|bank_code = ?, | .
-    qq|bank = ?, | .
-    qq|iban = ?, | .
-    qq|bic = ?, | .
-    qq|obsolete = ?, | .
-    qq|direct_debit = ?, | .
-    qq|ustid = ?, | .
-    qq|username = ?, | .
-    qq|salesman_id = ?, | .
-    qq|language_id = ?, | .
-    qq|payment_id = ?, | .
-    qq|taxzone_id = ?, | .
-    qq|user_password = ?, | .
-    qq|c_vendor_id = ?, | .
-    qq|klass = ?, | .
-    qq|curr = ?, | .
-    qq|taxincluded_checked = ? | .
-    qq|WHERE id = ?|;
-  my @values = (
-    $form->{customernumber},
-    $form->{name},
-    $form->{greeting},
-    $form->{department_1},
-    $form->{department_2},
-    $form->{street},
-    $form->{zipcode},
-    $form->{city},
-    $form->{country},
-    $form->{homepage},
-    $form->{contact},
-    $form->{phone},
-    $form->{fax},
-    $form->{email},
-    $form->{cc},
-    $form->{bcc},
-    $form->{notes},
-    $form->{discount},
-    $form->{creditlimit},
-    conv_i($form->{terms}),
-    conv_i($form->{business}),
-    $form->{taxnumber},
-    $form->{language},
-    $form->{account_number},
-    $form->{bank_code},
-    $form->{bank},
-    $form->{iban},
-    $form->{bic},
-    $form->{obsolete} ? 't' : 'f',
-    $form->{direct_debit} ? 't' : 'f',
-    $form->{ustid},
-    $form->{username},
-    conv_i($form->{salesman_id}),
-    conv_i($form->{language_id}),
-    conv_i($form->{payment_id}),
-    conv_i($form->{taxzone_id}, 0),
-    $form->{user_password},
-    $form->{c_vendor_id},
-    conv_i($form->{klass}),
-    substr($form->{currency}, 0, 3),
-    $form->{taxincluded_checked} ne '' ? $form->{taxincluded_checked} : undef,
-    $form->{id}
-    );
-  do_query( $form, $dbh, $query, @values );
-
-  $form->{cp_id} = $self->_save_contact($form, $dbh);
-
-  # add shipto
-  $form->add_shipto( $dbh, $form->{id}, "CT" );
-
-  $self->_save_note('dbh' => $dbh);
-  $self->_delete_selected_notes('dbh' => $dbh);
-
-  CVar->save_custom_variables('dbh'       => $dbh,
-                              'module'    => 'CT',
-                              'trans_id'  => $form->{id},
-                              'variables' => $form,
-                              'always_valid' => 1);
-  if ($form->{cp_id}) {
-    CVar->save_custom_variables('dbh'       => $dbh,
-                                'module'    => 'Contacts',
-                                'trans_id'  => $form->{cp_id},
-                                'variables' => $form,
-                                'name_prefix'  => 'cp',
-                                'always_valid' => 1);
-  }
-
-  my $rc = $dbh->commit();
-
-  $main::lxdebug->leave_sub();
-  return $rc;
-}
-
-sub save_vendor {
-  $main::lxdebug->enter_sub();
-
-  my ( $self, $myconfig, $form ) = @_;
-
-  $form->{taxzone_id} *= 1;
-  # connect to database
-  my $dbh = $form->get_standard_dbh;
-
-  map( {
-    $form->{"cp_${_}"} = $form->{"selected_cp_${_}"}
-    if ( $form->{"selected_cp_${_}"} );
-       } qw(title greeting abteilung) );
-  $form->{"greeting"} = $form->{"selected_company_greeting"}
-  if ( $form->{"selected_company_greeting"} );
-
-  $form->{discount} = $form->parse_amount( $myconfig, $form->{discount} );
-  $form->{discount} /= 100;
-  $form->{creditlimit} = $form->parse_amount( $myconfig, $form->{creditlimit} );
-
-  my $query;
-
-  if (!$form->{id}) {
-    $query = qq|SELECT nextval('id')|;
-    ($form->{id}) = selectrow_query($form, $dbh, $query);
-
-    $query = qq|INSERT INTO vendor (id, name) VALUES (?, '')|;
-    do_query($form, $dbh, $query, $form->{id});
-
-    my $vendornumber      = SL::TransNumber->new(type   => 'vendor',
-                                                 dbh    => $dbh,
-                                                 number => $form->{vendornumber},
-                                                 save   => 1);
-    $form->{vendornumber} = $vendornumber->create_unique unless $vendornumber->is_unique;
-  }
-
-  $query =
-    qq|UPDATE vendor SET | .
-    qq|  vendornumber = ?, | .
-    qq|  name = ?, | .
-    qq|  greeting = ?, | .
-    qq|  department_1 = ?, | .
-    qq|  department_2 = ?, | .
-    qq|  street = ?, | .
-    qq|  zipcode = ?, | .
-    qq|  city = ?, | .
-    qq|  country = ?, | .
-    qq|  homepage = ?, | .
-    qq|  contact = ?, | .
-    qq|  phone = ?, | .
-    qq|  fax = ?, | .
-    qq|  email = ?, | .
-    qq|  cc = ?, | .
-    qq|  bcc = ?, | .
-    qq|  notes = ?, | .
-    qq|  terms = ?, | .
-    qq|  discount = ?, | .
-    qq|  creditlimit = ?, | .
-    qq|  business_id = ?, | .
-    qq|  taxnumber = ?, | .
-    qq|  language = ?, | .
-    qq|  account_number = ?, | .
-    qq|  bank_code = ?, | .
-    qq|  bank = ?, | .
-    qq|  iban = ?, | .
-    qq|  bic = ?, | .
-    qq|  obsolete = ?, | .
-    qq|  direct_debit = ?, | .
-    qq|  ustid = ?, | .
-    qq|  payment_id = ?, | .
-    qq|  taxzone_id = ?, | .
-    qq|  language_id = ?, | .
-    qq|  username = ?, | .
-    qq|  user_password = ?, | .
-    qq|  v_customer_id = ?, | .
-    qq|  curr = ? | .
-    qq|WHERE id = ?|;
-  my @values = (
-    $form->{vendornumber},
-    $form->{name},
-    $form->{greeting},
-    $form->{department_1},
-    $form->{department_2},
-    $form->{street},
-    $form->{zipcode},
-    $form->{city},
-    $form->{country},
-    $form->{homepage},
-    $form->{contact},
-    $form->{phone},
-    $form->{fax},
-    $form->{email},
-    $form->{cc},
-    $form->{bcc},
-    $form->{notes},
-    conv_i($form->{terms}),
-    $form->{discount},
-    $form->{creditlimit},
-    conv_i($form->{business}),
-    $form->{taxnumber},
-    $form->{language},
-    $form->{account_number},
-    $form->{bank_code},
-    $form->{bank},
-    $form->{iban},
-    $form->{bic},
-    $form->{obsolete} ? 't' : 'f',
-    $form->{direct_debit} ? 't' : 'f',
-    $form->{ustid},
-    conv_i($form->{payment_id}),
-    conv_i($form->{taxzone_id}, 0),
-    conv_i( $form->{language_id}),
-    $form->{username},
-    $form->{user_password},
-    $form->{v_customer_id},
-    substr($form->{currency}, 0, 3),
-    $form->{id}
-    );
-  do_query($form, $dbh, $query, @values);
-
-  $form->{cp_id} = $self->_save_contact($form, $dbh);
-
-  # add shipto
-  $form->add_shipto( $dbh, $form->{id}, "CT" );
-
-  $self->_save_note('dbh' => $dbh);
-  $self->_delete_selected_notes('dbh' => $dbh);
-
-  CVar->save_custom_variables('dbh'       => $dbh,
-                              'module'    => 'CT',
-                              'trans_id'  => $form->{id},
-                              'variables' => $form,
-                              'always_valid' => 1);
-  if ($form->{cp_id}) {
-    CVar->save_custom_variables('dbh'       => $dbh,
-                                'module'    => 'Contacts',
-                                'trans_id'  => $form->{cp_id},
-                                'variables' => $form,
-                                'name_prefix'  => 'cp',
-                                'always_valid' => 1);
-  }
-
-  my $rc = $dbh->commit();
-
-  $main::lxdebug->leave_sub();
-  return $rc;
-}
-
-sub _save_contact {
-  my ($self, $form, $dbh) = @_;
-
-  return undef unless $form->{cp_id} || $form->{cp_name} || $form->{cp_givenname};
-
-  my @columns = qw(cp_title cp_givenname cp_name cp_email cp_phone1 cp_phone2 cp_abteilung cp_fax
-                   cp_mobile1 cp_mobile2 cp_satphone cp_satfax cp_project cp_privatphone cp_privatemail cp_birthday cp_gender
-                   cp_street cp_zipcode cp_city);
-  my @values  = map { $_ eq 'cp_gender' ? ($form->{$_} eq 'f' ? 'f' : 'm') : $form->{$_} } @columns;
-
-  my ($query, $cp_id);
-  if ($form->{cp_id}) {
-    $query = qq|UPDATE contacts SET | . join(', ', map { "${_} = ?" } @columns) . qq| WHERE cp_id = ?|;
-    push @values, $form->{cp_id};
-    $cp_id = $form->{cp_id};
-
-  } else {
-    ($cp_id) = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
-
-    $query = qq|INSERT INTO contacts (| . join(', ', @columns, 'cp_cv_id', 'cp_id') . qq|) VALUES (| . join(', ', ('?') x (2 + scalar @columns)) . qq|)|;
-    push @values, $form->{id}, $cp_id;
-  }
-
-  do_query($form, $dbh, $query, @values);
-
-  return $cp_id;
-}
-
-sub delete {
-  $main::lxdebug->enter_sub();
-
-  my ( $self, $myconfig, $form ) = @_;
-  # connect to database
-  my $dbh = $form->dbconnect($myconfig);
-
-  # delete vendor
-  my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
-  my $query = qq|DELETE FROM $cv WHERE id = ?|;
-  do_query($form, $dbh, $query, $form->{id});
-
-  $dbh->disconnect;
-
-  $main::lxdebug->leave_sub();
-}
-