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 #======================================================================
 
  51   $main::lxdebug->enter_sub();
 
  53   my ( $self, $myconfig, $form ) = @_;
 
  55   my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
 
  57   my $dbh   = $form->dbconnect($myconfig);
 
  59     qq|SELECT ct.*, b.id AS business, cp.* | .
 
  61     qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
  62     qq|LEFT JOIN contacts cp ON (ct.id = cp.cp_cv_id) | .
 
  63     qq|WHERE (ct.id = ?) | .
 
  64     qq|ORDER BY cp.cp_id LIMIT 1|;
 
  65   my $sth = prepare_execute_query($form, $dbh, $query, $form->{id});
 
  67   my $ref = $sth->fetchrow_hashref("NAME_lc");
 
  69   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
  72   if ( $form->{salesman_id} ) {
 
  74       qq|SELECT ct.name AS salesman | .
 
  78       selectrow_query($form, $dbh, $query, $form->{salesman_id});
 
  81   my ($employee_id) = selectrow_query($form, $dbh, qq|SELECT id FROM employee WHERE login = ?|, $form->{login});
 
  83     qq|SELECT n.*, n.itime::DATE AS created_on,
 
  84          e.name AS created_by_name, e.login AS created_by_login
 
  86        LEFT JOIN employee e ON (n.created_by = e.id)
 
  87        WHERE (n.trans_id = ?) AND (n.trans_module = 'ct')|;
 
  88   $form->{NOTES} = selectall_hashref_query($form, $dbh, $query, conv_i($form->{id}));
 
  91     qq|SELECT fu.follow_up_date, fu.done AS follow_up_done, e.name AS created_for_name, e.name AS created_for_login
 
  93        LEFT JOIN employee e ON (fu.created_for_user = e.id)
 
  94        WHERE (fu.note_id = ?)
 
  95          AND NOT COALESCE(fu.done, FALSE)
 
  96          AND (   (fu.created_by = ?)
 
  97               OR (fu.created_by IN (SELECT DISTINCT what FROM follow_up_access WHERE who = ?)))|;
 
  98   $sth = prepare_query($form, $dbh, $query);
 
 100   foreach my $note (@{ $form->{NOTES} }) {
 
 101     do_statement($form, $sth, $query, conv_i($note->{id}), conv_i($note->{created_by}), conv_i($employee_id));
 
 102     $ref = $sth->fetchrow_hashref();
 
 104     map { $note->{$_} = $ref->{$_} } keys %{ $ref } if ($ref);
 
 109   if ($form->{edit_note_id}) {
 
 111       qq|SELECT n.id AS NOTE_id, n.subject AS NOTE_subject, n.body AS NOTE_body,
 
 112            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
 
 114          LEFT JOIN follow_ups fu ON ((n.id = fu.note_id) AND NOT COALESCE(fu.done, FALSE))
 
 116     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{edit_note_id}));
 
 119       foreach my $key (keys %{ $ref }) {
 
 121         $new_key          =~ s/^([^_]+)/\U$1\E/;
 
 122         $form->{$new_key} =  $ref->{$key};
 
 127   # check if it is orphaned
 
 128   my $arap      = ( $form->{db} eq 'customer' ) ? "ar" : "ap";
 
 131   if ($form->{db} eq 'vendor') {
 
 132     $makemodel = qq| UNION SELECT 1 FROM makemodel mm WHERE mm.make = ?|;
 
 139     qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
 
 140     qq|WHERE ct.id = ? | .
 
 144     qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
 
 147   my ($dummy) = selectrow_query($form, $dbh, $query, (conv_i($form->{id})) x $num_args);
 
 149   $form->{status} = "orphaned" unless ($dummy);
 
 153   $main::lxdebug->leave_sub();
 
 156 sub populate_drop_down_boxes {
 
 157   $main::lxdebug->enter_sub();
 
 159   my ($self, $myconfig, $form, $provided_dbh) = @_;
 
 162   my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect($myconfig);
 
 165   $query = qq|SELECT id, description FROM business ORDER BY id|;
 
 166   $form->{all_business} = selectall_hashref_query($form, $dbh, $query);
 
 170     qq|SELECT shipto_id, shiptoname, shiptodepartment_1, shiptostreet, shiptocity
 
 172        WHERE (trans_id = ?) AND (module = 'CT')|;
 
 173   $form->{SHIPTO} = selectall_hashref_query($form, $dbh, $query, $form->{id});
 
 176   $query  = qq|SELECT cp_id, cp_name, cp_givenname FROM contacts WHERE cp_cv_id = ? ORDER BY cp_name|;
 
 177   $form->{CONTACTS} = selectall_hashref_query($form, $dbh, $query, $form->{id});
 
 180   $query = qq|SELECT id, description FROM language ORDER BY id|;
 
 181   $form->{languages} = selectall_hashref_query($form, $dbh, $query);
 
 184   $query = qq|SELECT id, description FROM payment_terms ORDER BY sortkey|;
 
 185   $form->{payment_terms} = selectall_hashref_query($form, $dbh, $query);
 
 187   $dbh->disconnect() unless ($provided_dbh);
 
 189   $main::lxdebug->leave_sub();
 
 192 sub query_titles_and_greetings {
 
 193   $main::lxdebug->enter_sub();
 
 195   my ( $self, $myconfig, $form ) = @_;
 
 196   my ( %tmp,  $ref, $query );
 
 198   my $dbh = $form->dbconnect($myconfig);
 
 201     qq|SELECT DISTINCT(greeting) | .
 
 203     qq|WHERE greeting ~ '[a-zA-Z]' | .
 
 205     qq|SELECT DISTINCT(greeting) | .
 
 207     qq|WHERE greeting ~ '[a-zA-Z]' | .
 
 208     qq|ORDER BY greeting|;
 
 210   map({ $tmp{$_} = 1; } selectall_array_query($form, $dbh, $query));
 
 211   $form->{COMPANY_GREETINGS} = [ sort(keys(%tmp)) ];
 
 214     qq|SELECT DISTINCT(cp_title) | .
 
 216     qq|WHERE cp_title ~ '[a-zA-Z]'|;
 
 217   $form->{TITLES} = [ selectall_array_query($form, $dbh, $query) ];
 
 220     qq|SELECT DISTINCT(cp_abteilung) | .
 
 222     qq|WHERE cp_abteilung ~ '[a-zA-Z]'|;
 
 223   $form->{DEPARTMENT} = [ selectall_array_query($form, $dbh, $query) ];
 
 226   $main::lxdebug->leave_sub();
 
 230   $main::lxdebug->enter_sub();
 
 232   my ( $self, $myconfig, $form ) = @_;
 
 234   # set pricegroup to default
 
 235   $form->{klass} = 0 unless ($form->{klass});
 
 237   # connect to database
 
 238   my $dbh = $form->dbconnect_noauto($myconfig);
 
 241     $form->{"cp_${_}"} = $form->{"selected_cp_${_}"}
 
 242     if ( $form->{"selected_cp_${_}"} );
 
 243        } qw(title greeting abteilung) );
 
 244   $form->{"greeting"} = $form->{"selected_company_greeting"}
 
 245   if ( $form->{"selected_company_greeting"} );
 
 247   # assign value discount, terms, creditlimit
 
 248   $form->{discount} = $form->parse_amount( $myconfig, $form->{discount} );
 
 249   $form->{discount} /= 100;
 
 250   $form->{creditlimit} = $form->parse_amount( $myconfig, $form->{creditlimit} );
 
 252   my ( $query, $sth, $f_id );
 
 255     $query = qq|SELECT id FROM customer WHERE customernumber = ?|;
 
 256     ($f_id) = selectrow_query($form, $dbh, $query, $form->{customernumber});
 
 258     if (($f_id ne $form->{id}) && ($f_id ne "")) {
 
 259       $main::lxdebug->leave_sub();
 
 264     if (!$form->{customernumber} && $form->{business}) {
 
 265       $form->{customernumber} =
 
 266         $form->update_business($myconfig, $form->{business}, $dbh);
 
 268     if (!$form->{customernumber}) {
 
 269       $form->{customernumber} =
 
 270         $form->update_defaults($myconfig, "customernumber", $dbh);
 
 273     $query  = qq|SELECT c.id FROM customer c WHERE c.customernumber = ?|;
 
 274     ($f_id) = selectrow_query($form, $dbh, $query, $form->{customernumber});
 
 276       $main::lxdebug->leave_sub();
 
 280     $query = qq|SELECT nextval('id')|;
 
 281     ($form->{id}) = selectrow_query($form, $dbh, $query);
 
 283     $query = qq|INSERT INTO customer (id, name) VALUES (?, '')|;
 
 284     do_query($form, $dbh, $query, $form->{id});
 
 287   $query = qq|UPDATE customer SET | .
 
 288     qq|customernumber = ?, | .
 
 291     qq|department_1 = ?, | .
 
 292     qq|department_2 = ?, | .
 
 306     qq|creditlimit = ?, | .
 
 308     qq|business_id = ?, | .
 
 309     qq|taxnumber = ?, | .
 
 311     qq|account_number = ?, | .
 
 312     qq|bank_code = ?, | .
 
 317     qq|direct_debit = ?, | .
 
 320     qq|salesman_id = ?, | .
 
 321     qq|language_id = ?, | .
 
 322     qq|payment_id = ?, | .
 
 323     qq|taxzone_id = ?, | .
 
 324     qq|user_password = ?, | .
 
 325     qq|c_vendor_id = ?, | .
 
 329     $form->{customernumber},
 
 332     $form->{department_1},
 
 333     $form->{department_2},
 
 347     $form->{creditlimit},
 
 348     conv_i($form->{terms}),
 
 349     conv_i($form->{business}),
 
 352     $form->{account_number},
 
 357     $form->{obsolete} ? 't' : 'f',
 
 358     $form->{direct_debit} ? 't' : 'f',
 
 361     conv_i($form->{salesman_id}),
 
 362     conv_i($form->{language_id}),
 
 363     conv_i($form->{payment_id}),
 
 364     conv_i($form->{taxzone_id}, 0),
 
 365     $form->{user_password},
 
 366     $form->{c_vendor_id},
 
 367     conv_i($form->{klass}),
 
 370   do_query( $form, $dbh, $query, @values );
 
 373   if ( $form->{cp_id} ) {
 
 374     $query = qq|UPDATE contacts SET | .
 
 376       qq|cp_givenname = ?, | .
 
 379       qq|cp_phone1 = ?, | .
 
 380       qq|cp_phone2 = ?, | .
 
 381       qq|cp_abteilung = ?, | .
 
 383       qq|cp_mobile1 = ?, | .
 
 384       qq|cp_mobile2 = ?, | .
 
 385       qq|cp_satphone = ?, | .
 
 386       qq|cp_satfax = ?, | .
 
 387       qq|cp_project = ?, | .
 
 388       qq|cp_privatphone = ?, | .
 
 389       qq|cp_privatemail = ?, | .
 
 390       qq|cp_birthday = ?, | .
 
 395       $form->{cp_givenname},
 
 400       $form->{cp_abteilung},
 
 404       $form->{cp_satphone},
 
 407       $form->{cp_privatphone},
 
 408       $form->{cp_privatemail},
 
 409       $form->{cp_birthday},
 
 410       $form->{cp_gender} eq 'f' ? 'f' : 'm',
 
 413   } elsif ( $form->{cp_name} || $form->{cp_givenname} ) {
 
 415       qq|INSERT INTO contacts ( cp_cv_id, cp_title, cp_givenname,  | .
 
 416       qq|  cp_name, cp_email, cp_phone1, cp_phone2, cp_abteilung, cp_fax, cp_mobile1, | .
 
 417       qq|  cp_mobile2, cp_satphone, cp_satfax, cp_project, cp_privatphone, cp_privatemail, | .
 
 418       qq|  cp_birthday, cp_gender) | .
 
 419       qq|VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
 423       $form->{cp_givenname},
 
 428       $form->{cp_abteilung},
 
 432       $form->{cp_satphone},
 
 435       $form->{cp_privatphone},
 
 436       $form->{cp_privatemail},
 
 437       $form->{cp_birthday},
 
 438       $form->{cp_gender} eq 'f' ? 'f' : 'm',
 
 441   do_query( $form, $dbh, $query, @values ) if ($query);
 
 444   $form->add_shipto( $dbh, $form->{id}, "CT" );
 
 446   $self->_save_note('dbh' => $dbh);
 
 447   $self->_delete_selected_notes('dbh' => $dbh);
 
 449   CVar->save_custom_variables('dbh'       => $dbh,
 
 451                               'trans_id'  => $form->{id},
 
 452                               'variables' => $form,
 
 453                               'always_valid' => 1);
 
 455   my $rc = $dbh->commit();
 
 458   $main::lxdebug->leave_sub();
 
 463   $main::lxdebug->enter_sub();
 
 465   my ( $self, $myconfig, $form ) = @_;
 
 467   $form->{taxzone_id} *= 1;
 
 468   # connect to database
 
 469   my $dbh = $form->dbconnect_noauto($myconfig);
 
 472     $form->{"cp_${_}"} = $form->{"selected_cp_${_}"}
 
 473     if ( $form->{"selected_cp_${_}"} );
 
 474        } qw(title greeting abteilung) );
 
 475   $form->{"greeting"} = $form->{"selected_company_greeting"}
 
 476   if ( $form->{"selected_company_greeting"} );
 
 478   $form->{discount} = $form->parse_amount( $myconfig, $form->{discount} );
 
 479   $form->{discount} /= 100;
 
 480   $form->{creditlimit} = $form->parse_amount( $myconfig, $form->{creditlimit} );
 
 485     $query = qq|SELECT nextval('id')|;
 
 486     ($form->{id}) = selectrow_query($form, $dbh, $query);
 
 488     $query = qq|INSERT INTO vendor (id, name) VALUES (?, '')|;
 
 489     do_query($form, $dbh, $query, $form->{id});
 
 491     if ( !$form->{vendornumber} ) {
 
 492       $form->{vendornumber} = $form->update_defaults( $myconfig, "vendornumber", $dbh );
 
 497     qq|UPDATE vendor SET | .
 
 498     qq|  vendornumber = ?, | .
 
 500     qq|  greeting = ?, | .
 
 501     qq|  department_1 = ?, | .
 
 502     qq|  department_2 = ?, | .
 
 507     qq|  homepage = ?, | .
 
 516     qq|  discount = ?, | .
 
 517     qq|  creditlimit = ?, | .
 
 518     qq|  business_id = ?, | .
 
 519     qq|  taxnumber = ?, | .
 
 520     qq|  language = ?, | .
 
 521     qq|  account_number = ?, | .
 
 522     qq|  bank_code = ?, | .
 
 526     qq|  obsolete = ?, | .
 
 527     qq|  direct_debit = ?, | .
 
 529     qq|  payment_id = ?, | .
 
 530     qq|  taxzone_id = ?, | .
 
 531     qq|  language_id = ?, | .
 
 532     qq|  username = ?, | .
 
 533     qq|  user_password = ?, | .
 
 534     qq|  v_customer_id = ? | .
 
 537     $form->{vendornumber},
 
 540     $form->{department_1},
 
 541     $form->{department_2},
 
 554     conv_i($form->{terms}),
 
 556     $form->{creditlimit},
 
 557     conv_i($form->{business}),
 
 560     $form->{account_number},
 
 565     $form->{obsolete} ? 't' : 'f',
 
 566     $form->{direct_debit} ? 't' : 'f',
 
 568     conv_i($form->{payment_id}),
 
 569     conv_i($form->{taxzone_id}, 0),
 
 570     conv_i( $form->{language_id}),
 
 572     $form->{user_password},
 
 573     $form->{v_customer_id},
 
 576   do_query($form, $dbh, $query, @values);
 
 579   if ( $form->{cp_id} ) {
 
 580     $query = qq|UPDATE contacts SET | .
 
 582       qq|cp_givenname = ?, | .
 
 585       qq|cp_phone1 = ?, | .
 
 586       qq|cp_phone2 = ?, | .
 
 587       qq|cp_abteilung = ?, | .
 
 589       qq|cp_mobile1 = ?, | .
 
 590       qq|cp_mobile2 = ?, | .
 
 591       qq|cp_satphone = ?, | .
 
 592       qq|cp_satfax = ?, | .
 
 593       qq|cp_project = ?, | .
 
 594       qq|cp_privatphone = ?, | .
 
 595       qq|cp_privatemail = ?, | .
 
 596       qq|cp_birthday = ?, | .
 
 601       $form->{cp_givenname},
 
 606       $form->{cp_abteilung},
 
 610       $form->{cp_satphone},
 
 613       $form->{cp_privatphone},
 
 614       $form->{cp_privatemail},
 
 615       $form->{cp_birthday},
 
 616       $form->{cp_gender} eq 'f' ? 'f' : 'm',
 
 619   } elsif ( $form->{cp_name} || $form->{cp_givenname} ) {
 
 621       qq|INSERT INTO contacts ( cp_cv_id, cp_title, cp_givenname,  | .
 
 622       qq|  cp_name, cp_email, cp_phone1, cp_phone2, cp_abteilung, cp_fax, cp_mobile1, | .
 
 623       qq|  cp_mobile2, cp_satphone, cp_satfax, cp_project, cp_privatphone, cp_privatemail, | .
 
 624       qq|  cp_birthday, cp_gender) | .
 
 625       qq|VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
 629       $form->{cp_givenname},
 
 634       $form->{cp_abteilung},
 
 638       $form->{cp_satphone},
 
 641       $form->{cp_privatphone},
 
 642       $form->{cp_privatemail},
 
 643       $form->{cp_birthday},
 
 647   do_query($form, $dbh, $query, @values) if ($query);
 
 650   $form->add_shipto( $dbh, $form->{id}, "CT" );
 
 652   $self->_save_note('dbh' => $dbh);
 
 653   $self->_delete_selected_notes('dbh' => $dbh);
 
 655   CVar->save_custom_variables('dbh'       => $dbh,
 
 657                               'trans_id'  => $form->{id},
 
 658                               'variables' => $form,
 
 659                               'always_valid' => 1);
 
 661   my $rc = $dbh->commit();
 
 664   $main::lxdebug->leave_sub();
 
 669   $main::lxdebug->enter_sub();
 
 671   my ( $self, $myconfig, $form ) = @_;
 
 672   # connect to database
 
 673   my $dbh = $form->dbconnect($myconfig);
 
 676   my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
 
 677   my $query = qq|DELETE FROM $cv WHERE id = ?|;
 
 678   do_query($form, $dbh, $query, $form->{id});
 
 682   $main::lxdebug->leave_sub();
 
 686   $main::lxdebug->enter_sub();
 
 688   my ( $self, $myconfig, $form ) = @_;
 
 690   # connect to database
 
 691   my $dbh = $form->dbconnect($myconfig);
 
 693   my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
 
 698   my %allowed_sort_columns =
 
 699     map({ $_, 1 } qw(id customernumber vendornumber name contact phone fax email
 
 700                      taxnumber business invnumber ordnumber quonumber));
 
 701   my $sortorder    = $form->{sort} && $allowed_sort_columns{$form->{sort}} ? $form->{sort} : "name";
 
 702   $form->{sort} = $sortorder;
 
 703   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
 
 705   if ($sortorder ne 'id' && 1 >= scalar grep { $form->{$_} } qw(l_ordnumber l_quonumber l_invnumber)) {
 
 706     $sortorder  = "lower($sortorder) ${sortdir}";
 
 708     $sortorder .= " ${sortdir}";
 
 711   if ($form->{"${cv}number"}) {
 
 712     $where .= " AND ct.${cv}number ILIKE ?";
 
 713     push(@values, '%' . $form->{"${cv}number"} . '%');
 
 716   foreach my $key (qw(name contact email)) {
 
 718       $where .= " AND ct.$key ILIKE ?";
 
 719       push(@values, '%' . $form->{$key} . '%');
 
 723   if ($form->{cp_name}) {
 
 724     $where .= " AND ct.id IN (SELECT cp_cv_id FROM contacts WHERE lower(cp_name) LIKE lower(?))";
 
 725     push @values, '%' . $form->{cp_name} . '%';
 
 728   if ($form->{addr_city}) {
 
 729     $where .= " AND ((lower(ct.city) LIKE lower(?))
 
 734                         WHERE (module = 'CT')
 
 735                           AND (lower(shiptocity) LIKE lower(?))
 
 738     push @values, ('%' . $form->{addr_city} . '%') x 2;
 
 741   if ( $form->{status} eq 'orphaned' ) {
 
 743       qq| AND ct.id NOT IN | .
 
 744       qq|   (SELECT o.${cv}_id FROM oe o, $cv cv WHERE cv.id = o.${cv}_id)|;
 
 745     if ($cv eq 'customer') {
 
 747         qq| AND ct.id NOT IN | .
 
 748         qq| (SELECT a.customer_id FROM ar a, customer cv | .
 
 749         qq|  WHERE cv.id = a.customer_id)|;
 
 751     if ($cv eq 'vendor') {
 
 753         qq| AND ct.id NOT IN | .
 
 754         qq| (SELECT a.vendor_id FROM ap a, vendor cv | .
 
 755         qq|  WHERE cv.id = a.vendor_id)|;
 
 757     $form->{l_invnumber} = $form->{l_ordnumber} = $form->{l_quonumber} = "";
 
 760   if ($form->{obsolete} eq "Y") {
 
 761     $where .= qq| AND obsolete|;
 
 762   } elsif ($form->{obsolete} eq "N") {
 
 763     $where .= qq| AND NOT obsolete|;
 
 766   if ($form->{business_id}) {
 
 767     $where .= qq| AND (business_id = ?)|;
 
 768     push(@values, conv_i($form->{business_id}));
 
 771   my ($cvar_where, @cvar_values) = CVar->build_filter_query('module'         => 'CT',
 
 772                                                             'trans_id_field' => 'ct.id',
 
 776     $where .= qq| AND ($cvar_where)|;
 
 777     push @values, @cvar_values;
 
 780   if ($form->{addr_street}) {
 
 781     $where .= qq| AND (street ILIKE ?)|;
 
 782     push @values, '%' . $form->{addr_street} . '%';
 
 785   if ($form->{addr_zipcode}) {
 
 786     $where .= qq| AND (zipcode ILIKE ?)|;
 
 787     push @values, $form->{addr_zipcode} . '%';
 
 791     qq|SELECT ct.*, b.description AS business | .
 
 793     qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 796   my @saved_values = @values;
 
 797   # redo for invoices, orders and quotations
 
 798   if ($form->{l_invnumber} || $form->{l_ordnumber} || $form->{l_quonumber}) {
 
 799     my ($ar, $union, $module);
 
 802     if ($form->{l_invnumber}) {
 
 803       my $ar = $cv eq 'customer' ? 'ar' : 'ap';
 
 804       my $module = $ar eq 'ar' ? 'is' : 'ir';
 
 807         qq|SELECT ct.*, b.description AS business, | .
 
 808         qq|  a.invnumber, a.ordnumber, a.quonumber, a.id AS invid, | .
 
 809         qq|  '$module' AS module, 'invoice' AS formtype, | .
 
 810         qq|  (a.amount = a.paid) AS closed | .
 
 812         qq|JOIN $ar a ON (a.${cv}_id = ct.id) | .
 
 813         qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 814         qq|WHERE $where AND (a.invoice = '1')|;
 
 819     if ( $form->{l_ordnumber} ) {
 
 820       if ($union eq "UNION") {
 
 821         push(@values, @saved_values);
 
 825         qq|SELECT ct.*, b.description AS business,| .
 
 826         qq|  ' ' AS invnumber, o.ordnumber, o.quonumber, o.id AS invid, | .
 
 827         qq|  'oe' AS module, 'order' AS formtype, o.closed | .
 
 829         qq|JOIN oe o ON (o.${cv}_id = ct.id) | .
 
 830         qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 831         qq|WHERE $where AND (o.quotation = '0')|;
 
 836     if ( $form->{l_quonumber} ) {
 
 837       if ($union eq "UNION") {
 
 838         push(@values, @saved_values);
 
 842         qq|SELECT ct.*, b.description AS business, | .
 
 843         qq|  ' ' AS invnumber, o.ordnumber, o.quonumber, o.id AS invid, | .
 
 844         qq|  'oe' AS module, 'quotation' AS formtype, o.closed | .
 
 846         qq|JOIN oe o ON (o.${cv}_id = ct.id) | .
 
 847         qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 848         qq|WHERE $where AND (o.quotation = '1')|;
 
 852   $query .= qq| ORDER BY $sortorder|;
 
 854   $form->{CT} = selectall_hashref_query($form, $dbh, $query, @values);
 
 856   $main::lxdebug->leave_sub();
 
 860   $main::lxdebug->enter_sub();
 
 862   my ( $self, $myconfig, $form ) = @_;
 
 863   my $dbh   = $form->dbconnect($myconfig);
 
 865     qq|SELECT * FROM contacts c | .
 
 866     qq|WHERE cp_id = ? ORDER BY cp_id limit 1|;
 
 867   my $sth = prepare_execute_query($form, $dbh, $query, $form->{cp_id});
 
 868   my $ref = $sth->fetchrow_hashref("NAME_lc");
 
 870   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 872   $query = qq|SELECT COUNT(cp_id) AS used FROM (
 
 873     SELECT cp_id FROM oe UNION
 
 874     SELECT cp_id FROM ar UNION
 
 875     SELECT cp_id FROM ap UNION
 
 876     SELECT cp_id FROM delivery_orders
 
 877   ) AS cpid WHERE cp_id = ? OR ? = 0|;
 
 878   ($form->{cp_used}) = selectfirst_array_query($form, $dbh, $query, ($form->{cp_id})x2);
 
 883   $main::lxdebug->leave_sub();
 
 887   $main::lxdebug->enter_sub();
 
 889   my ( $self, $myconfig, $form ) = @_;
 
 890   my $dbh   = $form->dbconnect($myconfig);
 
 891   my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
 
 892   my $sth = prepare_execute_query($form, $dbh, $query, $form->{shipto_id});
 
 894   my $ref = $sth->fetchrow_hashref("NAME_lc");
 
 896   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 898   $query = qq|SELECT COUNT(shipto_id) AS used FROM (
 
 899     SELECT shipto_id FROM oe UNION
 
 900     SELECT shipto_id FROM ar UNION
 
 901     SELECT shipto_id FROM delivery_orders
 
 902   ) AS stid WHERE shipto_id = ? OR ? = 0|;
 
 903   ($form->{shiptoused}) = selectfirst_array_query($form, $dbh, $query, ($form->{shipto_id})x2);
 
 908   $main::lxdebug->leave_sub();
 
 912   $main::lxdebug->enter_sub();
 
 914   my ( $self, $myconfig, $form ) = @_;
 
 915   my $dbh = $form->dbconnect($myconfig);
 
 917   my $arap = $form->{db} eq "vendor" ? "ap" : "ar";
 
 918   my $db = $form->{db} eq "customer" ? "customer" : "vendor";
 
 919   my $qty_sign = $form->{db} eq 'vendor' ? ' * -1 AS qty' : '';
 
 921   my $where = " WHERE 1=1 ";
 
 924   if ($form->{shipto_id} && ($arap eq "ar")) {
 
 925     $where .= "AND ${arap}.shipto_id = ?";
 
 926     push(@values, $form->{shipto_id});
 
 928     $where .= "AND ${arap}.${db}_id = ?";
 
 929     push(@values, $form->{id});
 
 933     $where .= "AND ${arap}.transdate >= ?";
 
 934     push(@values, conv_date($form->{from}));
 
 937     $where .= "AND ${arap}.transdate <= ?";
 
 938     push(@values, conv_date($form->{to}));
 
 941     qq|SELECT s.shiptoname, i.qty $qty_sign, | .
 
 942     qq|  ${arap}.id, ${arap}.transdate, ${arap}.invnumber, ${arap}.ordnumber, | .
 
 943     qq|  i.description, i.unit, i.sellprice, | .
 
 944     qq|  oe.id AS oe_id | .
 
 946     qq|LEFT JOIN shipto s ON | .
 
 948      ? qq|(ar.shipto_id = s.shipto_id) |
 
 949      : qq|(ap.id = s.trans_id) |) .
 
 950     qq|LEFT JOIN invoice i ON (${arap}.id = i.trans_id) | .
 
 951     qq|LEFT join parts p ON (p.id = i.parts_id) | .
 
 952     qq|LEFT JOIN oe ON (oe.ordnumber = ${arap}.ordnumber AND NOT ${arap}.ordnumber = '') | .
 
 954     qq|ORDER BY ${arap}.transdate DESC LIMIT 15|;
 
 956   $form->{DELIVERY} = selectall_hashref_query($form, $dbh, $query, @values);
 
 960   $main::lxdebug->leave_sub();
 
 964   $main::lxdebug->enter_sub();
 
 969   my $form   = $main::form;
 
 971   Common::check_params(\%params, 'dbh');
 
 973   if (!$form->{NOTE_subject}) {
 
 974     $main::lxdebug->leave_sub();
 
 978   my $dbh = $params{dbh};
 
 982     'id'           => $form->{NOTE_id},
 
 983     'subject'      => $form->{NOTE_subject},
 
 984     'body'         => $form->{NOTE_body},
 
 985     'trans_id'     => $form->{id},
 
 986     'trans_module' => 'ct',
 
 989   $note{id} = Notes->save(%note);
 
 991   if ($form->{FU_date}) {
 
 993       'id'               => $form->{FU_id},
 
 994       'note_id'          => $note{id},
 
 995       'follow_up_date'   => $form->{FU_date},
 
 996       'created_for_user' => $form->{FU_created_for_user},
 
 997       'done'             => $form->{FU_done} ? 1 : 0,
 
 998       'subject'          => $form->{NOTE_subject},
 
 999       'body'             => $form->{NOTE_body},
 
1002           'trans_id'     => $form->{id},
 
1003           'trans_type'   => $form->{db} eq 'customer' ? 'customer' : 'vendor',
 
1004           'trans_info'   => $form->{name},
 
1009     $follow_up{id} = FU->save(%follow_up);
 
1011   } elsif ($form->{FU_id}) {
 
1012     do_query($form, $dbh, qq|DELETE FROM follow_up_links WHERE follow_up_id = ?|, conv_i($form->{FU_id}));
 
1013     do_query($form, $dbh, qq|DELETE FROM follow_ups      WHERE id = ?|,           conv_i($form->{FU_id}));
 
1016   delete @{$form}{grep { /^NOTE_|^FU_/ } keys %{ $form }};
 
1018   $main::lxdebug->leave_sub();
 
1021 sub _delete_selected_notes {
 
1022   $main::lxdebug->enter_sub();
 
1027   Common::check_params(\%params, 'dbh');
 
1029   my $form = $main::form;
 
1030   my $dbh  = $params{dbh};
 
1032   foreach my $i (1 .. $form->{NOTES_rowcount}) {
 
1033     next unless ($form->{"NOTE_delete_$i"} && $form->{"NOTE_id_$i"});
 
1035     Notes->delete('dbh' => $params{dbh},
 
1036                   'id'  => $form->{"NOTE_id_$i"});
 
1039   $main::lxdebug->leave_sub();
 
1043   $main::lxdebug->enter_sub();
 
1046   my $shipto_id = shift;
 
1048   my $form      = $main::form;
 
1049   my %myconfig  = %main::myconfig;
 
1050   my $dbh       = $form->get_standard_dbh(\%myconfig);
 
1052   do_query($form, $dbh, qq|UPDATE contacts SET cp_cv_id = NULL WHERE cp_id = ?|, $shipto_id);
 
1056   $main::lxdebug->leave_sub();
 
1060   $main::lxdebug->enter_sub();
 
1065   Common::check_params(\%params, qw(vc id));
 
1067   my $myconfig = \%main::myconfig;
 
1068   my $form     = $main::form;
 
1070   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
 
1072   my $table        = $params{vc} eq 'customer' ? 'customer' : 'vendor';
 
1073   my @ids          = ref $params{id} eq 'ARRAY' ? @{ $params{id} } : ($params{id});
 
1074   my $placeholders = ('?') x scalar @ids;
 
1075   my $query        = qq|SELECT id, name, account_number, bank, bank_code, iban, bic
 
1077                         WHERE id IN (${placeholders})|;
 
1079   my $result       = selectall_hashref_query($form, $dbh, $query, map { conv_i($_) } @ids);
 
1081   if (ref $params{id} eq 'ARRAY') {
 
1082     $result = { map { $_->{id} => $_ } @{ $result } };
 
1084     $result = $result->[0] || { 'id' => $params{id} };
 
1087   $main::lxdebug->leave_sub();