1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger Accounting
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  17 # This program is free software; you can redistribute it and/or modify
 
  18 # it under the terms of the GNU General Public License as published by
 
  19 # the Free Software Foundation; either version 2 of the License, or
 
  20 # (at your option) any later version.
 
  22 # This program is distributed in the hope that it will be useful,
 
  23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  25 # GNU General Public License for more details.
 
  26 # You should have received a copy of the GNU General Public License
 
  27 # along with this program; if not, write to the Free Software
 
  28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  29 #======================================================================
 
  31 # backend code for customers and vendors
 
  34 #   DS. 2000-07-04  Created
 
  36 #======================================================================
 
  49   $main::lxdebug->enter_sub();
 
  51   my ( $self, $myconfig, $form ) = @_;
 
  53   my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
 
  55   my $dbh   = $form->dbconnect($myconfig);
 
  57     qq|SELECT ct.*, b.id AS business, cp.* | .
 
  59     qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
  60     qq|LEFT JOIN contacts cp ON (ct.id = cp.cp_cv_id) | .
 
  61     qq|WHERE (ct.id = ?) | .
 
  62     qq|ORDER BY cp.cp_id LIMIT 1|;
 
  63   my $sth = prepare_execute_query($form, $dbh, $query, $form->{id});
 
  65   my $ref = $sth->fetchrow_hashref(NAME_lc);
 
  67   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
  70   if ( $form->{salesman_id} ) {
 
  72       qq|SELECT ct.name AS salesman | .
 
  76       selectrow_query($form, $dbh, $query, $form->{salesman_id});
 
  79   my ($employee_id) = selectrow_query($form, $dbh, qq|SELECT id FROM employee WHERE login = ?|, $form->{login});
 
  81     qq|SELECT n.*, n.itime::DATE AS created_on,
 
  82          e.name AS created_by_name, e.login AS created_by_login
 
  84        LEFT JOIN employee e ON (n.created_by = e.id)
 
  85        WHERE (n.trans_id = ?) AND (n.trans_module = 'ct')|;
 
  86   $form->{NOTES} = selectall_hashref_query($form, $dbh, $query, conv_i($form->{id}));
 
  89     qq|SELECT fu.follow_up_date, fu.done AS follow_up_done, e.name AS created_for_name, e.name AS created_for_login
 
  91        LEFT JOIN employee e ON (fu.created_for_user = e.id)
 
  92        WHERE (fu.note_id = ?)
 
  93          AND NOT COALESCE(fu.done, FALSE)
 
  94          AND (   (fu.created_by = ?)
 
  95               OR (fu.created_by IN (SELECT DISTINCT what FROM follow_up_access WHERE who = ?)))|;
 
  96   $sth = prepare_query($form, $dbh, $query);
 
  98   foreach my $note (@{ $form->{NOTES} }) {
 
  99     do_statement($form, $sth, $query, conv_i($note->{id}), conv_i($note->{created_by}), conv_i($employee_id));
 
 100     $ref = $sth->fetchrow_hashref();
 
 102     map { $note->{$_} = $ref->{$_} } keys %{ $ref } if ($ref);
 
 107   if ($form->{edit_note_id}) {
 
 109       qq|SELECT n.id AS NOTE_id, n.subject AS NOTE_subject, n.body AS NOTE_body,
 
 110            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
 
 112          LEFT JOIN follow_ups fu ON ((n.id = fu.note_id) AND NOT COALESCE(fu.done, FALSE))
 
 114     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{edit_note_id}));
 
 117       foreach my $key (keys %{ $ref }) {
 
 119         $new_key          =~ s/^([^_]+)/\U\1\E/;
 
 120         $form->{$new_key} =  $ref->{$key};
 
 125   # check if it is orphaned
 
 126   my $arap      = ( $form->{db} eq 'customer' ) ? "ar" : "ap";
 
 129   if ($form->{db} eq 'vendor') {
 
 130     $makemodel = qq| UNION SELECT 1 FROM makemodel mm WHERE mm.make = ?|;
 
 137     qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
 
 138     qq|WHERE ct.id = ? | .
 
 142     qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
 
 145   my ($dummy) = selectrow_query($form, $dbh, $query, (conv_i($form->{id})) x $num_args);
 
 147   $form->{status} = "orphaned" unless ($dummy);
 
 151   $main::lxdebug->leave_sub();
 
 154 sub populate_drop_down_boxes {
 
 155   $main::lxdebug->enter_sub();
 
 157   my ($self, $myconfig, $form, $provided_dbh) = @_;
 
 159   my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect($myconfig);
 
 162   $query = qq|SELECT id, description FROM business ORDER BY id|;
 
 163   $form->{all_business} = selectall_hashref_query($form, $dbh, $query);
 
 167     qq|SELECT shipto_id, shiptoname, shiptodepartment_1, shiptostreet, shiptocity
 
 169        WHERE (trans_id = ?) AND (module = 'CT')|;
 
 170   $form->{SHIPTO} = selectall_hashref_query($form, $dbh, $query, $form->{id});
 
 173   $query  = qq|SELECT cp_id, cp_name, cp_givenname FROM contacts WHERE cp_cv_id = ? ORDER BY cp_name|;
 
 174   $form->{CONTACTS} = selectall_hashref_query($form, $dbh, $query, $form->{id});
 
 177   $query = qq|SELECT id, description FROM language ORDER BY id|;
 
 178   $form->{languages} = selectall_hashref_query($form, $dbh, $query);
 
 181   $query = qq|SELECT id, description FROM payment_terms ORDER BY sortkey|;
 
 182   $form->{payment_terms} = selectall_hashref_query($form, $dbh, $query);
 
 184   $dbh->disconnect() unless ($provided_dbh);
 
 186   $main::lxdebug->leave_sub();
 
 189 sub query_titles_and_greetings {
 
 190   $main::lxdebug->enter_sub();
 
 192   my ( $self, $myconfig, $form ) = @_;
 
 195   my $dbh = $form->dbconnect($myconfig);
 
 198     qq|SELECT DISTINCT(cp_greeting) | .
 
 200     qq|WHERE cp_greeting ~ '[a-zA-Z]' | .
 
 201     qq|ORDER BY cp_greeting|;
 
 202   $form->{GREETINGS} = [ selectall_array_query($form, $dbh, $query) ];
 
 205     qq|SELECT DISTINCT(greeting) | .
 
 207     qq|WHERE greeting ~ '[a-zA-Z]' | .
 
 209     qq|SELECT DISTINCT(greeting) | .
 
 211     qq|WHERE greeting ~ '[a-zA-Z]' | .
 
 212     qq|ORDER BY greeting|;
 
 214   map({ $tmp{$_} = 1; } selectall_array_query($form, $dbh, $query));
 
 215   $form->{COMPANY_GREETINGS} = [ sort(keys(%tmp)) ];
 
 218     qq|SELECT DISTINCT(cp_title) | .
 
 220     qq|WHERE cp_title ~ '[a-zA-Z]'|;
 
 221   $form->{TITLES} = [ selectall_array_query($form, $dbh, $query) ];
 
 224     qq|SELECT DISTINCT(cp_abteilung) | .
 
 226     qq|WHERE cp_abteilung ~ '[a-zA-Z]'|;
 
 227   $form->{DEPARTMENT} = [ selectall_array_query($form, $dbh, $query) ];
 
 230   $main::lxdebug->leave_sub();
 
 234   $main::lxdebug->enter_sub();
 
 236   my ( $self, $myconfig, $form ) = @_;
 
 238   # set pricegroup to default
 
 239   $form->{klass} = 0 unless ($form->{klass});
 
 241   # connect to database
 
 242   my $dbh = $form->dbconnect_noauto($myconfig);
 
 245     $form->{"cp_${_}"} = $form->{"selected_cp_${_}"}
 
 246     if ( $form->{"selected_cp_${_}"} );
 
 247        } qw(title greeting abteilung) );
 
 248   $form->{"greeting"} = $form->{"selected_company_greeting"}
 
 249   if ( $form->{"selected_company_greeting"} );
 
 251   # assign value discount, terms, creditlimit
 
 252   $form->{discount} = $form->parse_amount( $myconfig, $form->{discount} );
 
 253   $form->{discount} /= 100;
 
 254   $form->{creditlimit} = $form->parse_amount( $myconfig, $form->{creditlimit} );
 
 256   my ( $query, $sth, $f_id );
 
 259     $query = qq|SELECT id FROM customer WHERE customernumber = ?|;
 
 260     ($f_id) = selectrow_query($form, $dbh, $query, $form->{customernumber});
 
 262     if (($f_id ne $form->{id}) && ($f_id ne "")) {
 
 263       $main::lxdebug->leave_sub();
 
 268     if (!$form->{customernumber} && $form->{business}) {
 
 269       $form->{customernumber} =
 
 270         $form->update_business($myconfig, $form->{business}, $dbh);
 
 272     if (!$form->{customernumber}) {
 
 273       $form->{customernumber} =
 
 274         $form->update_defaults($myconfig, "customernumber", $dbh);
 
 277     $query  = qq|SELECT c.id FROM customer c WHERE c.customernumber = ?|;
 
 278     ($f_id) = selectrow_query($form, $dbh, $query, $form->{customernumber});
 
 280       $main::lxdebug->leave_sub();
 
 284     $query = qq|SELECT nextval('id')|;
 
 285     ($form->{id}) = selectrow_query($form, $dbh, $query);
 
 287     $query = qq|INSERT INTO customer (id, name) VALUES (?, '')|;
 
 288     do_query($form, $dbh, $query, $form->{id});
 
 291   $query = qq|UPDATE customer SET | .
 
 292     qq|customernumber = ?, | .
 
 295     qq|department_1 = ?, | .
 
 296     qq|department_2 = ?, | .
 
 310     qq|creditlimit = ?, | .
 
 312     qq|business_id = ?, | .
 
 313     qq|taxnumber = ?, | .
 
 315     qq|account_number = ?, | .
 
 316     qq|bank_code = ?, | .
 
 321     qq|direct_debit = ?, | .
 
 324     qq|salesman_id = ?, | .
 
 325     qq|language_id = ?, | .
 
 326     qq|payment_id = ?, | .
 
 327     qq|taxzone_id = ?, | .
 
 328     qq|user_password = ?, | .
 
 329     qq|c_vendor_id = ?, | .
 
 333     $form->{customernumber},
 
 336     $form->{department_1},
 
 337     $form->{department_2},
 
 351     $form->{creditlimit},
 
 352     conv_i($form->{terms}),
 
 353     conv_i($form->{business}),
 
 356     $form->{account_number},
 
 361     $form->{obsolete} ? 't' : 'f',
 
 362     $form->{direct_debit} ? 't' : 'f',
 
 365     conv_i($form->{salesman_id}),
 
 366     conv_i($form->{language_id}),
 
 367     conv_i($form->{payment_id}),
 
 368     conv_i($form->{taxzone_id}, 0),
 
 369     $form->{user_password},
 
 370     $form->{c_vendor_id},
 
 371     conv_i($form->{klass}),
 
 374   do_query( $form, $dbh, $query, @values );
 
 377   if ( $form->{cp_id} ) {
 
 378     $query = qq|UPDATE contacts SET | .
 
 379       qq|cp_greeting = ?, | .
 
 381       qq|cp_givenname = ?, | .
 
 384       qq|cp_phone1 = ?, | .
 
 385       qq|cp_phone2 = ?, | .
 
 386       qq|cp_abteilung = ?, | .
 
 388       qq|cp_mobile1 = ?, | .
 
 389       qq|cp_mobile2 = ?, | .
 
 390       qq|cp_satphone = ?, | .
 
 391       qq|cp_satfax = ?, | .
 
 392       qq|cp_project = ?, | .
 
 393       qq|cp_privatphone = ?, | .
 
 394       qq|cp_privatemail = ?, | .
 
 395       qq|cp_birthday = ? | .
 
 398       $form->{cp_greeting},
 
 400       $form->{cp_givenname},
 
 405       $form->{cp_abteilung},
 
 409       $form->{cp_satphone},
 
 412       $form->{cp_privatphone},
 
 413       $form->{cp_privatemail},
 
 414       $form->{cp_birthday},
 
 417   } elsif ( $form->{cp_name} || $form->{cp_givenname} ) {
 
 419       qq|INSERT INTO contacts ( cp_cv_id, cp_greeting, cp_title, cp_givenname,  | .
 
 420       qq|  cp_name, cp_email, cp_phone1, cp_phone2, cp_abteilung, cp_fax, cp_mobile1, | .
 
 421       qq|  cp_mobile2, cp_satphone, cp_satfax, cp_project, cp_privatphone, cp_privatemail, | .
 
 423       qq|VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
 426       $form->{cp_greeting},
 
 428       $form->{cp_givenname},
 
 433       $form->{cp_abteilung},
 
 437       $form->{cp_satphone},
 
 440       $form->{cp_privatphone},
 
 441       $form->{cp_privatemail},
 
 445   do_query( $form, $dbh, $query, @values ) if ($query);
 
 448   $form->add_shipto( $dbh, $form->{id}, "CT" );
 
 450   $self->_save_note('dbh' => $dbh);
 
 451   $self->_delete_selected_notes('dbh' => $dbh);
 
 453   CVar->save_custom_variables('dbh'       => $dbh,
 
 455                               'trans_id'  => $form->{id},
 
 456                               'variables' => $form);
 
 458   $rc = $dbh->commit();
 
 461   $main::lxdebug->leave_sub();
 
 466   $main::lxdebug->enter_sub();
 
 468   my ( $self, $myconfig, $form ) = @_;
 
 470   $form->{taxzone_id} *= 1;
 
 471   # connect to database
 
 472   my $dbh = $form->dbconnect_noauto($myconfig);
 
 475     $form->{"cp_${_}"} = $form->{"selected_cp_${_}"}
 
 476     if ( $form->{"selected_cp_${_}"} );
 
 477        } qw(title greeting abteilung) );
 
 478   $form->{"greeting"} = $form->{"selected_company_greeting"}
 
 479   if ( $form->{"selected_company_greeting"} );
 
 481   $form->{discount} = $form->parse_amount( $myconfig, $form->{discount} );
 
 482   $form->{discount} /= 100;
 
 483   $form->{creditlimit} = $form->parse_amount( $myconfig, $form->{creditlimit} );
 
 488     $query = qq|SELECT nextval('id')|;
 
 489     ($form->{id}) = selectrow_query($form, $dbh, $query);
 
 491     $query = qq|INSERT INTO vendor (id, name) VALUES (?, '')|;
 
 492     do_query($form, $dbh, $query, $form->{id});
 
 494     if ( !$form->{vendornumber} ) {
 
 495       $form->{vendornumber} = $form->update_defaults( $myconfig, "vendornumber", $dbh );
 
 500     qq|UPDATE vendor SET | .
 
 501     qq|  vendornumber = ?, | .
 
 503     qq|  greeting = ?, | .
 
 504     qq|  department_1 = ?, | .
 
 505     qq|  department_2 = ?, | .
 
 510     qq|  homepage = ?, | .
 
 519     qq|  discount = ?, | .
 
 520     qq|  creditlimit = ?, | .
 
 521     qq|  business_id = ?, | .
 
 522     qq|  taxnumber = ?, | .
 
 523     qq|  language = ?, | .
 
 524     qq|  account_number = ?, | .
 
 525     qq|  bank_code = ?, | .
 
 529     qq|  obsolete = ?, | .
 
 530     qq|  direct_debit = ?, | .
 
 532     qq|  payment_id = ?, | .
 
 533     qq|  taxzone_id = ?, | .
 
 534     qq|  language_id = ?, | .
 
 535     qq|  username = ?, | .
 
 536     qq|  user_password = ?, | .
 
 537     qq|  v_customer_id = ? | .
 
 540     $form->{vendornumber},
 
 543     $form->{department_1},
 
 544     $form->{department_2},
 
 557     conv_i($form->{terms}),
 
 559     $form->{creditlimit},
 
 560     conv_i($form->{business}),
 
 563     $form->{account_number},
 
 568     $form->{obsolete} ? 't' : 'f',
 
 569     $form->{direct_debit} ? 't' : 'f',
 
 571     conv_i($form->{payment_id}),
 
 572     conv_i($form->{taxzone_id}, 0),
 
 573     conv_i( $form->{language_id}),
 
 575     $form->{user_password},
 
 576     $form->{v_customer_id},
 
 579   do_query($form, $dbh, $query, @values);
 
 582   if ( $form->{cp_id} ) {
 
 583     $query = qq|UPDATE contacts SET | .
 
 584       qq|cp_greeting = ?, | .
 
 586       qq|cp_givenname = ?, | .
 
 589       qq|cp_phone1 = ?, | .
 
 590       qq|cp_phone2 = ?, | .
 
 591       qq|cp_abteilung = ?, | .
 
 593       qq|cp_mobile1 = ?, | .
 
 594       qq|cp_mobile2 = ?, | .
 
 595       qq|cp_satphone = ?, | .
 
 596       qq|cp_satfax = ?, | .
 
 597       qq|cp_project = ?, | .
 
 598       qq|cp_privatphone = ?, | .
 
 599       qq|cp_privatemail = ?, | .
 
 600       qq|cp_birthday = ? | .
 
 603       $form->{cp_greeting},
 
 605       $form->{cp_givenname},
 
 610       $form->{cp_abteilung},
 
 614       $form->{cp_satphone},
 
 617       $form->{cp_privatphone},
 
 618       $form->{cp_privatemail},
 
 619       $form->{cp_birthday},
 
 622   } elsif ( $form->{cp_name} || $form->{cp_givenname} ) {
 
 624       qq|INSERT INTO contacts ( cp_cv_id, cp_greeting, cp_title, cp_givenname,  | .
 
 625       qq|  cp_name, cp_email, cp_phone1, cp_phone2, cp_abteilung, cp_fax, cp_mobile1, | .
 
 626       qq|  cp_mobile2, cp_satphone, cp_satfax, cp_project, cp_privatphone, cp_privatemail, | .
 
 628       qq|VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
 631       $form->{cp_greeting},
 
 633       $form->{cp_givenname},
 
 638       $form->{cp_abteilung},
 
 642       $form->{cp_satphone},
 
 645       $form->{cp_privatphone},
 
 646       $form->{cp_privatemail},
 
 650   do_query($form, $dbh, $query, @values) if ($query);
 
 653   $form->add_shipto( $dbh, $form->{id}, "CT" );
 
 655   $self->_save_note('dbh' => $dbh);
 
 656   $self->_delete_selected_notes('dbh' => $dbh);
 
 658   CVar->save_custom_variables('dbh'       => $dbh,
 
 660                               'trans_id'  => $form->{id},
 
 661                               'variables' => $form);
 
 663   $rc = $dbh->commit();
 
 666   $main::lxdebug->leave_sub();
 
 671   $main::lxdebug->enter_sub();
 
 673   my ( $self, $myconfig, $form ) = @_;
 
 674   # connect to database
 
 675   my $dbh = $form->dbconnect($myconfig);
 
 678   my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
 
 679   my $query = qq|DELETE FROM $cv WHERE id = ?|;
 
 680   do_query($form, $dbh, $query, $form->{id});
 
 684   $main::lxdebug->leave_sub();
 
 688   $main::lxdebug->enter_sub();
 
 690   my ( $self, $myconfig, $form ) = @_;
 
 692   # connect to database
 
 693   my $dbh = $form->dbconnect($myconfig);
 
 695   my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
 
 700   my %allowed_sort_columns =
 
 701     map({ $_, 1 } qw(id customernumber vendornumber name contact phone fax email
 
 702                      taxnumber business invnumber ordnumber quonumber));
 
 703   $sortorder    = $form->{sort} && $allowed_sort_columns{$form->{sort}} ? $form->{sort} : "name";
 
 704   $form->{sort} = $sortorder;
 
 705   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
 
 707   if ($sortorder ne 'id' && 1 >= scalar grep { $form->{$_} } qw(l_ordnumber l_quonumber l_invnumber)) {
 
 708     $sortorder  = "lower($sortorder) ${sortdir}";
 
 710     $sortorder .= " ${sortdir}";
 
 713   if ($form->{"${cv}number"}) {
 
 714     $where .= " AND ct.${cv}number ILIKE ?";
 
 715     push(@values, '%' . $form->{"${cv}number"} . '%');
 
 718   foreach my $key (qw(name contact email)) {
 
 720       $where .= " AND ct.$key ILIKE ?";
 
 721       push(@values, '%' . $form->{$key} . '%');
 
 725   if ($form->{cp_name}) {
 
 726     $where .= " AND ct.id IN (SELECT cp_cv_id FROM contacts WHERE lower(cp_name) LIKE lower(?))";
 
 727     push @values, '%' . $form->{cp_name} . '%';
 
 730   if ($form->{addr_city}) {
 
 731     $where .= " AND ((lower(ct.city) LIKE lower(?))
 
 736                         WHERE (module = 'CT')
 
 737                           AND (lower(shiptocity) LIKE lower(?))
 
 740     push @values, ('%' . $form->{addr_city} . '%') x 2;
 
 743   if ( $form->{status} eq 'orphaned' ) {
 
 745       qq| AND ct.id NOT IN | .
 
 746       qq|   (SELECT o.${cv}_id FROM oe o, $cv cv WHERE cv.id = o.${cv}_id)|;
 
 747     if ($cv eq 'customer') {
 
 749         qq| AND ct.id NOT IN | .
 
 750         qq| (SELECT a.customer_id FROM ar a, customer cv | .
 
 751         qq|  WHERE cv.id = a.customer_id)|;
 
 753     if ($cv eq 'vendor') {
 
 755         qq| AND ct.id NOT IN | .
 
 756         qq| (SELECT a.vendor_id FROM ap a, vendor cv | .
 
 757         qq|  WHERE cv.id = a.vendor_id)|;
 
 759     $form->{l_invnumber} = $form->{l_ordnumber} = $form->{l_quonumber} = "";
 
 762   if ($form->{obsolete} eq "Y") {
 
 763     $where .= qq| AND obsolete|;
 
 764   } elsif ($form->{obsolete} eq "N") {
 
 765     $where .= qq| AND NOT obsolete|;
 
 768   if ($form->{business_id}) {
 
 769     $where .= qq| AND (business_id = ?)|;
 
 770     push(@values, conv_i($form->{business_id}));
 
 773   my ($cvar_where, @cvar_values) = CVar->build_filter_query('module'         => 'CT',
 
 774                                                             'trans_id_field' => 'ct.id',
 
 778     $where .= qq| AND ($cvar_where)|;
 
 779     push @values, @cvar_values;
 
 782   if ($form->{addr_street}) {
 
 783     $where .= qq| AND (street ILIKE ?)|;
 
 784     push @values, '%' . $form->{addr_street} . '%';
 
 787   if ($form->{addr_zipcode}) {
 
 788     $where .= qq| AND (zipcode ILIKE ?)|;
 
 789     push @values, $form->{addr_zipcode} . '%';
 
 793     qq|SELECT ct.*, b.description AS business | .
 
 795     qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 798   my @saved_values = @values;
 
 799   # redo for invoices, orders and quotations
 
 800   if ($form->{l_invnumber} || $form->{l_ordnumber} || $form->{l_quonumber}) {
 
 801     my ($ar, $union, $module);
 
 804     if ($form->{l_invnumber}) {
 
 805       my $ar = $cv eq 'customer' ? 'ar' : 'ap';
 
 806       my $module = $ar eq 'ar' ? 'is' : 'ir';
 
 809         qq|SELECT ct.*, b.description AS business, | .
 
 810         qq|  a.invnumber, a.ordnumber, a.quonumber, a.id AS invid, | .
 
 811         qq|  '$module' AS module, 'invoice' AS formtype, | .
 
 812         qq|  (a.amount = a.paid) AS closed | .
 
 814         qq|JOIN $ar a ON (a.${cv}_id = ct.id) | .
 
 815         qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 816         qq|WHERE $where AND (a.invoice = '1')|;
 
 821     if ( $form->{l_ordnumber} ) {
 
 822       if ($union eq "UNION") {
 
 823         push(@values, @saved_values);
 
 827         qq|SELECT ct.*, b.description AS business,| .
 
 828         qq|  ' ' AS invnumber, o.ordnumber, o.quonumber, o.id AS invid, | .
 
 829         qq|  'oe' AS module, 'order' AS formtype, o.closed | .
 
 831         qq|JOIN oe o ON (o.${cv}_id = ct.id) | .
 
 832         qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 833         qq|WHERE $where AND (o.quotation = '0')|;
 
 838     if ( $form->{l_quonumber} ) {
 
 839       if ($union eq "UNION") {
 
 840         push(@values, @saved_values);
 
 844         qq|SELECT ct.*, b.description AS business, | .
 
 845         qq|  ' ' AS invnumber, o.ordnumber, o.quonumber, o.id AS invid, | .
 
 846         qq|  'oe' AS module, 'quotation' AS formtype, o.closed | .
 
 848         qq|JOIN oe o ON (o.${cv}_id = ct.id) | .
 
 849         qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 850         qq|WHERE $where AND (o.quotation = '1')|;
 
 854   $query .= qq| ORDER BY $sortorder|;
 
 856   $form->{CT} = selectall_hashref_query($form, $dbh, $query, @values);
 
 858   $main::lxdebug->leave_sub();
 
 862   $main::lxdebug->enter_sub();
 
 864   my ( $self, $myconfig, $form ) = @_;
 
 865   my $dbh   = $form->dbconnect($myconfig);
 
 867     qq|SELECT * FROM contacts c | .
 
 868     qq|WHERE cp_id = ? ORDER BY cp_id limit 1|;
 
 869   my $sth = prepare_execute_query($form, $dbh, $query, $form->{cp_id});
 
 870   my $ref = $sth->fetchrow_hashref(NAME_lc);
 
 872   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 874   $query = qq|SELECT COUNT(cp_id) AS used FROM (
 
 875     SELECT cp_id FROM oe UNION
 
 876     SELECT cp_id FROM ar UNION
 
 877     SELECT cp_id FROM ap UNION
 
 878     SELECT cp_id FROM delivery_orders
 
 879   ) AS cpid WHERE cp_id = ? OR ? = 0|;
 
 880   ($form->{cp_used}) = selectfirst_array_query($form, $dbh, $query, ($form->{cp_id})x2);
 
 885   $main::lxdebug->leave_sub();
 
 889   $main::lxdebug->enter_sub();
 
 891   my ( $self, $myconfig, $form ) = @_;
 
 892   my $dbh   = $form->dbconnect($myconfig);
 
 893   my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
 
 894   my $sth = prepare_execute_query($form, $dbh, $query, $form->{shipto_id});
 
 896   my $ref = $sth->fetchrow_hashref(NAME_lc);
 
 898   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 900   $query = qq|SELECT COUNT(shipto_id) AS used FROM (
 
 901     SELECT shipto_id FROM oe UNION
 
 902     SELECT shipto_id FROM ar UNION
 
 903     SELECT shipto_id FROM delivery_orders
 
 904   ) AS stid WHERE shipto_id = ? OR ? = 0|;
 
 905   ($form->{shiptoused}) = selectfirst_array_query($form, $dbh, $query, ($form->{shipto_id})x2);
 
 910   $main::lxdebug->leave_sub();
 
 914   $main::lxdebug->enter_sub();
 
 916   my ( $self, $myconfig, $form ) = @_;
 
 917   my $dbh = $form->dbconnect($myconfig);
 
 919   my $arap = $form->{db} eq "vendor" ? "ap" : "ar";
 
 920   my $db = $form->{db} eq "customer" ? "customer" : "vendor";
 
 922   my $where = " WHERE 1=1 ";
 
 925   if ($form->{shipto_id} && ($arap eq "ar")) {
 
 926     $where .= "AND ${arap}.shipto_id = ?";
 
 927     push(@values, $form->{shipto_id});
 
 929     $where .= "AND ${arap}.${db}_id = ?";
 
 930     push(@values, $form->{id});
 
 934     $where .= "AND ${arap}.transdate >= ?";
 
 935     push(@values, conv_date($form->{from}));
 
 938     $where .= "AND ${arap}.transdate <= ?";
 
 939     push(@values, conv_date($form->{to}));
 
 942     qq|SELECT s.shiptoname, i.qty, | .
 
 943     qq|  ${arap}.id, ${arap}.transdate, ${arap}.invnumber, ${arap}.ordnumber, | .
 
 944     qq|  i.description, i.unit, i.sellprice, | .
 
 945     qq|  oe.id AS oe_id | .
 
 947     qq|LEFT JOIN shipto s ON | .
 
 949      ? qq|(ar.shipto_id = s.shipto_id) |
 
 950      : qq|(ap.id = s.trans_id) |) .
 
 951     qq|LEFT JOIN invoice i ON (${arap}.id = i.trans_id) | .
 
 952     qq|LEFT join parts p ON (p.id = i.parts_id) | .
 
 953     qq|LEFT JOIN oe ON (oe.ordnumber = ${arap}.ordnumber AND NOT ${arap}.ordnumber = '') | .
 
 955     qq|ORDER BY ${arap}.transdate DESC LIMIT 15|;
 
 957   $form->{DELIVERY} = selectall_hashref_query($form, $dbh, $query, @values);
 
 961   $main::lxdebug->leave_sub();
 
 965   $main::lxdebug->enter_sub();
 
 970   my $form   = $main::form;
 
 972   Common::check_params(\%params, 'dbh');
 
 974   if (!$form->{NOTE_subject}) {
 
 975     $main::lxdebug->leave_sub();
 
 979   my $dbh = $params{dbh};
 
 983     'id'           => $form->{NOTE_id},
 
 984     'subject'      => $form->{NOTE_subject},
 
 985     'body'         => $form->{NOTE_body},
 
 986     'trans_id'     => $form->{id},
 
 987     'trans_module' => 'ct',
 
 990   $note{id} = Notes->save(%note);
 
 992   if ($form->{FU_date}) {
 
 994       'id'               => $form->{FU_id},
 
 995       'note_id'          => $note{id},
 
 996       'follow_up_date'   => $form->{FU_date},
 
 997       'created_for_user' => $form->{FU_created_for_user},
 
 998       'done'             => $form->{FU_done} ? 1 : 0,
 
 999       'subject'          => $form->{NOTE_subject},
 
1000       'body'             => $form->{NOTE_body},
 
1003           'trans_id'     => $form->{id},
 
1004           'trans_type'   => $form->{db} eq 'customer' ? 'customer' : 'vendor',
 
1005           'trans_info'   => $form->{name},
 
1010     $follow_up{id} = FU->save(%follow_up);
 
1012   } elsif ($form->{FU_id}) {
 
1013     do_query($form, $dbh, qq|DELETE FROM follow_up_links WHERE follow_up_id = ?|, conv_i($form->{FU_id}));
 
1014     do_query($form, $dbh, qq|DELETE FROM follow_ups      WHERE id = ?|,           conv_i($form->{FU_id}));
 
1017   delete @{$form}{grep { /^NOTE_|^FU_/ } keys %{ $form }};
 
1019   $main::lxdebug->leave_sub();
 
1022 sub _delete_selected_notes {
 
1023   $main::lxdebug->enter_sub();
 
1028   Common::check_params(\%params, 'dbh');
 
1030   my $form = $main::form;
 
1031   my $dbh  = $params{dbh};
 
1033   foreach my $i (1 .. $form->{NOTES_rowcount}) {
 
1034     next unless ($form->{"NOTE_delete_$i"} && $form->{"NOTE_id_$i"});
 
1036     Notes->delete('dbh' => $params{dbh},
 
1037                   'id'  => $form->{"NOTE_id_$i"});
 
1040   $main::lxdebug->leave_sub();
 
1044   $main::lxdebug->enter_sub();
 
1047   my $shipto_id = shift;
 
1049   my $form      = $main::form;
 
1050   my %myconfig  = %main::myconfig;
 
1051   my $dbh       = $form->get_standard_dbh(\%myconfig);
 
1053   do_query($form, $dbh, qq|UPDATE shipto SET trans_id = NULL WHERE shipto_id = ?|, $shipto_id);
 
1057   $main::lxdebug->leave_sub();
 
1061   $main::lxdebug->enter_sub();
 
1064   my $shipto_id = shift;
 
1066   my $form      = $main::form;
 
1067   my %myconfig  = %main::myconfig;
 
1068   my $dbh       = $form->get_standard_dbh(\%myconfig);
 
1070   do_query($form, $dbh, qq|UPDATE contacts SET cp_cv_id = NULL WHERE cp_id = ?|, $shipto_id);
 
1074   $main::lxdebug->leave_sub();
 
1078   $main::lxdebug->enter_sub();
 
1083   Common::check_params(\%params, qw(vc id));
 
1085   my $myconfig = \%main::myconfig;
 
1086   my $form     = $main::form;
 
1088   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
 
1090   my $table        = $params{vc} eq 'customer' ? 'customer' : 'vendor';
 
1091   my @ids          = ref $params{id} eq 'ARRAY' ? @{ $params{id} } : ($params{id});
 
1092   my $placeholders = ('?') x scalar @ids;
 
1093   my $query        = qq|SELECT id, name, account_number, bank, bank_code, iban, bic
 
1095                         WHERE id IN (${placeholders})|;
 
1097   my $result       = selectall_hashref_query($form, $dbh, $query, map { conv_i($_) } @ids);
 
1099   if (ref $params{id} eq 'ARRAY') {
 
1100     $result = { map { $_->{id} => $_ } @{ $result } };
 
1102     $result = $result->[0] || { 'id' => $params{id} };
 
1105   $main::lxdebug->leave_sub();