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";
 
 130     qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
 
 131     qq|WHERE ct.id = ? | .
 
 135     qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
 
 137   my ($dummy) = selectrow_query($form, $dbh, $query, $form->{id}, $form->{id});
 
 138   $form->{status} = "orphaned" unless ($dummy);
 
 142   $main::lxdebug->leave_sub();
 
 145 sub populate_drop_down_boxes {
 
 146   $main::lxdebug->enter_sub();
 
 148   my ($self, $myconfig, $form, $provided_dbh) = @_;
 
 150   my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect($myconfig);
 
 153   $query = qq|SELECT id, description FROM business ORDER BY id|;
 
 154   $form->{all_business} = selectall_hashref_query($form, $dbh, $query);
 
 158     qq|SELECT shipto_id, shiptoname, shiptodepartment_1 | .
 
 159     qq|FROM shipto WHERE (trans_id = ?) AND (module = 'CT')|;
 
 160   $form->{SHIPTO} = selectall_hashref_query($form, $dbh, $query, $form->{id});
 
 163   $query  = qq|SELECT cp_id, cp_name FROM contacts WHERE cp_cv_id = ?|;
 
 164   $form->{CONTACTS} = selectall_hashref_query($form, $dbh, $query, $form->{id});
 
 167   $query = qq|SELECT id, description FROM language ORDER BY id|;
 
 168   $form->{languages} = selectall_hashref_query($form, $dbh, $query);
 
 171   $query = qq|SELECT id, description FROM payment_terms ORDER BY sortkey|;
 
 172   $form->{payment_terms} = selectall_hashref_query($form, $dbh, $query);
 
 174   $dbh->disconnect() unless ($provided_dbh);
 
 176   $main::lxdebug->leave_sub();
 
 179 sub query_titles_and_greetings {
 
 180   $main::lxdebug->enter_sub();
 
 182   my ( $self, $myconfig, $form ) = @_;
 
 185   my $dbh = $form->dbconnect($myconfig);
 
 188     qq|SELECT DISTINCT(cp_greeting) | .
 
 190     qq|WHERE cp_greeting ~ '[a-zA-Z]' | .
 
 191     qq|ORDER BY cp_greeting|;
 
 192   $form->{GREETINGS} = [ selectall_array_query($form, $dbh, $query) ];
 
 195     qq|SELECT DISTINCT(greeting) | .
 
 197     qq|WHERE greeting ~ '[a-zA-Z]' | .
 
 199     qq|SELECT DISTINCT(greeting) | .
 
 201     qq|WHERE greeting ~ '[a-zA-Z]' | .
 
 202     qq|ORDER BY greeting|;
 
 204   map({ $tmp{$_} = 1; } selectall_array_query($form, $dbh, $query));
 
 205   $form->{COMPANY_GREETINGS} = [ sort(keys(%tmp)) ];
 
 208     qq|SELECT DISTINCT(cp_title) | .
 
 210     qq|WHERE cp_title ~ '[a-zA-Z]'|;
 
 211   $form->{TITLES} = [ selectall_array_query($form, $dbh, $query) ];
 
 214     qq|SELECT DISTINCT(cp_abteilung) | .
 
 216     qq|WHERE cp_abteilung ~ '[a-zA-Z]'|;
 
 217   $form->{DEPARTMENT} = [ selectall_array_query($form, $dbh, $query) ];
 
 220   $main::lxdebug->leave_sub();
 
 224   $main::lxdebug->enter_sub();
 
 226   my ( $self, $myconfig, $form ) = @_;
 
 228   # set pricegroup to default
 
 229   $form->{klass} = 0 unless ($form->{klass});
 
 231   # connect to database
 
 232   my $dbh = $form->dbconnect_noauto($myconfig);
 
 235     $form->{"cp_${_}"} = $form->{"selected_cp_${_}"}
 
 236     if ( $form->{"selected_cp_${_}"} );
 
 237        } qw(title greeting abteilung) );
 
 238   $form->{"greeting"} = $form->{"selected_company_greeting"}
 
 239   if ( $form->{"selected_company_greeting"} );
 
 241   # assign value discount, terms, creditlimit
 
 242   $form->{discount} = $form->parse_amount( $myconfig, $form->{discount} );
 
 243   $form->{discount} /= 100;
 
 244   $form->{creditlimit} = $form->parse_amount( $myconfig, $form->{creditlimit} );
 
 246   my ( $query, $sth, $f_id );
 
 249     $query = qq|SELECT id FROM customer WHERE customernumber = ?|;
 
 250     ($f_id) = selectrow_query($form, $dbh, $query, $form->{customernumber});
 
 252     if (($f_id ne $form->{id}) && ($f_id ne "")) {
 
 253       $main::lxdebug->leave_sub();
 
 258     if (!$form->{customernumber} && $form->{business}) {
 
 259       $form->{customernumber} =
 
 260         $form->update_business($myconfig, $form->{business}, $dbh);
 
 262     if (!$form->{customernumber}) {
 
 263       $form->{customernumber} =
 
 264         $form->update_defaults($myconfig, "customernumber", $dbh);
 
 267     $query  = qq|SELECT c.id FROM customer c WHERE c.customernumber = ?|;
 
 268     ($f_id) = selectrow_query($form, $dbh, $query, $form->{customernumber});
 
 270       $main::lxdebug->leave_sub();
 
 274     $query = qq|SELECT nextval('id')|;
 
 275     ($form->{id}) = selectrow_query($form, $dbh, $query);
 
 277     $query = qq|INSERT INTO customer (id, name) VALUES (?, '')|;
 
 278     do_query($form, $dbh, $query, $form->{id});
 
 281   $query = qq|UPDATE customer SET | .
 
 282     qq|customernumber = ?, | .
 
 285     qq|department_1 = ?, | .
 
 286     qq|department_2 = ?, | .
 
 300     qq|creditlimit = ?, | .
 
 302     qq|business_id = ?, | .
 
 303     qq|taxnumber = ?, | .
 
 306     qq|account_number = ?, | .
 
 307     qq|bank_code = ?, | .
 
 312     qq|salesman_id = ?, | .
 
 313     qq|language_id = ?, | .
 
 314     qq|payment_id = ?, | .
 
 315     qq|taxzone_id = ?, | .
 
 316     qq|user_password = ?, | .
 
 317     qq|c_vendor_id = ?, | .
 
 321     $form->{customernumber},
 
 324     $form->{department_1},
 
 325     $form->{department_2},
 
 339     $form->{creditlimit},
 
 340     conv_i($form->{terms}),
 
 341     conv_i($form->{business}),
 
 345     $form->{account_number},
 
 348     $form->{obsolete} ? 't' : 'f',
 
 351     conv_i($form->{salesman_id}),
 
 352     conv_i($form->{language_id}),
 
 353     conv_i($form->{payment_id}),
 
 354     conv_i($form->{taxzone_id}, 0),
 
 355     $form->{user_password},
 
 356     $form->{c_vendor_id},
 
 357     conv_i($form->{klass}),
 
 360   do_query( $form, $dbh, $query, @values );
 
 363   if ( $form->{cp_id} ) {
 
 364     $query = qq|UPDATE contacts SET | .
 
 365       qq|cp_greeting = ?, | .
 
 367       qq|cp_givenname = ?, | .
 
 370       qq|cp_phone1 = ?, | .
 
 371       qq|cp_phone2 = ?, | .
 
 372       qq|cp_abteilung = ?, | .
 
 374       qq|cp_mobile1 = ?, | .
 
 375       qq|cp_mobile2 = ?, | .
 
 376       qq|cp_satphone = ?, | .
 
 377       qq|cp_satfax = ?, | .
 
 378       qq|cp_project = ?, | .
 
 379       qq|cp_privatphone = ?, | .
 
 380       qq|cp_privatemail = ?, | .
 
 381       qq|cp_birthday = ? | .
 
 384       $form->{cp_greeting},
 
 386       $form->{cp_givenname},
 
 391       $form->{cp_abteilung},
 
 395       $form->{cp_satphone},
 
 398       $form->{cp_privatphone},
 
 399       $form->{cp_privatemail},
 
 400       $form->{cp_birthday},
 
 403   } elsif ( $form->{cp_name} || $form->{cp_givenname} ) {
 
 405       qq|INSERT INTO contacts ( cp_cv_id, cp_greeting, cp_title, cp_givenname,  | .
 
 406       qq|  cp_name, cp_email, cp_phone1, cp_phone2, cp_abteilung, cp_fax, cp_mobile1, | .
 
 407       qq|  cp_mobile2, cp_satphone, cp_satfax, cp_project, cp_privatphone, cp_privatemail, | .
 
 409       qq|VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
 412       $form->{cp_greeting},
 
 414       $form->{cp_givenname},
 
 419       $form->{cp_abteilung},
 
 423       $form->{cp_satphone},
 
 426       $form->{cp_privatphone},
 
 427       $form->{cp_privatemail},
 
 431   do_query( $form, $dbh, $query, @values ) if ($query);
 
 434   $form->add_shipto( $dbh, $form->{id}, "CT" );
 
 436   $self->_save_note('dbh' => $dbh);
 
 437   $self->_delete_selected_notes('dbh' => $dbh);
 
 439   CVar->save_custom_variables('dbh'       => $dbh,
 
 441                               'trans_id'  => $form->{id},
 
 442                               'variables' => $form);
 
 444   $rc = $dbh->commit();
 
 447   $main::lxdebug->leave_sub();
 
 452   $main::lxdebug->enter_sub();
 
 454   my ( $self, $myconfig, $form ) = @_;
 
 456   $form->{taxzone_id} *= 1;
 
 457   # connect to database
 
 458   my $dbh = $form->dbconnect_noauto($myconfig);
 
 461     $form->{"cp_${_}"} = $form->{"selected_cp_${_}"}
 
 462     if ( $form->{"selected_cp_${_}"} );
 
 463        } qw(title greeting abteilung) );
 
 464   $form->{"greeting"} = $form->{"selected_company_greeting"}
 
 465   if ( $form->{"selected_company_greeting"} );
 
 467   $form->{discount} = $form->parse_amount( $myconfig, $form->{discount} );
 
 468   $form->{discount} /= 100;
 
 469   $form->{creditlimit} = $form->parse_amount( $myconfig, $form->{creditlimit} );
 
 474     $query = qq|DELETE FROM shipto WHERE (trans_id = ?) AND (module = 'CT')|;
 
 475     do_query($form, $dbh, $query, $form->{id});
 
 478     $query = qq|SELECT nextval('id')|;
 
 479     ($form->{id}) = selectrow_query($form, $dbh, $query);
 
 481     $query = qq|INSERT INTO vendor (id, name) VALUES (?, '')|;
 
 482     do_query($form, $dbh, $query, $form->{id});
 
 484     if ( !$form->{vendornumber} ) {
 
 485       $form->{vendornumber} = $form->update_defaults( $myconfig, "vendornumber", $dbh );
 
 490     qq|UPDATE vendor SET | .
 
 491     qq|  vendornumber = ?, | .
 
 493     qq|  greeting = ?, | .
 
 494     qq|  department_1 = ?, | .
 
 495     qq|  department_2 = ?, | .
 
 500     qq|  homepage = ?, | .
 
 509     qq|  discount = ?, | .
 
 510     qq|  creditlimit = ?, | .
 
 511     qq|  business_id = ?, | .
 
 512     qq|  taxnumber = ?, | .
 
 513     qq|  sic_code = ?, | .
 
 514     qq|  language = ?, | .
 
 515     qq|  account_number = ?, | .
 
 516     qq|  bank_code = ?, | .
 
 518     qq|  obsolete = ?, | .
 
 520     qq|  payment_id = ?, | .
 
 521     qq|  taxzone_id = ?, | .
 
 522     qq|  language_id = ?, | .
 
 523     qq|  username = ?, | .
 
 524     qq|  user_password = ?, | .
 
 525     qq|  v_customer_id = ? | .
 
 528     $form->{vendornumber},
 
 531     $form->{department_1},
 
 532     $form->{department_2},
 
 545     conv_i($form->{terms}),
 
 547     $form->{creditlimit},
 
 548     conv_i($form->{business}),
 
 552     $form->{account_number},
 
 555     $form->{obsolete} ? 't' : 'f',
 
 557     conv_i($form->{payment_id}),
 
 558     conv_i($form->{taxzone_id}, 0),
 
 559     conv_i( $form->{language_id}),
 
 561     $form->{user_password},
 
 562     $form->{v_customer_id},
 
 565   do_query($form, $dbh, $query, @values);
 
 568   if ( $form->{cp_id} ) {
 
 569     $query = qq|UPDATE contacts SET | .
 
 570       qq|cp_greeting = ?, | .
 
 572       qq|cp_givenname = ?, | .
 
 575       qq|cp_phone1 = ?, | .
 
 576       qq|cp_phone2 = ?, | .
 
 577       qq|cp_abteilung = ?, | .
 
 579       qq|cp_mobile1 = ?, | .
 
 580       qq|cp_mobile2 = ?, | .
 
 581       qq|cp_satphone = ?, | .
 
 582       qq|cp_satfax = ?, | .
 
 583       qq|cp_project = ?, | .
 
 584       qq|cp_privatphone = ?, | .
 
 585       qq|cp_privatemail = ?, | .
 
 586       qq|cp_birthday = ? | .
 
 589       $form->{cp_greeting},
 
 591       $form->{cp_givenname},
 
 596       $form->{cp_abteilung},
 
 600       $form->{cp_satphone},
 
 603       $form->{cp_privatphone},
 
 604       $form->{cp_privatemail},
 
 605       $form->{cp_birthday},
 
 608   } elsif ( $form->{cp_name} || $form->{cp_givenname} ) {
 
 610       qq|INSERT INTO contacts ( cp_cv_id, cp_greeting, cp_title, cp_givenname,  | .
 
 611       qq|  cp_name, cp_email, cp_phone1, cp_phone2, cp_abteilung, cp_fax, cp_mobile1, | .
 
 612       qq|  cp_mobile2, cp_satphone, cp_satfax, cp_project, cp_privatphone, cp_privatemail, | .
 
 614       qq|VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
 617       $form->{cp_greeting},
 
 619       $form->{cp_givenname},
 
 624       $form->{cp_abteilung},
 
 628       $form->{cp_satphone},
 
 631       $form->{cp_privatphone},
 
 632       $form->{cp_privatemail},
 
 636   do_query($form, $dbh, $query, @values) if ($query);
 
 639   $form->add_shipto( $dbh, $form->{id}, "CT" );
 
 641   $self->_save_note('dbh' => $dbh);
 
 642   $self->_delete_selected_notes('dbh' => $dbh);
 
 644   CVar->save_custom_variables('dbh'       => $dbh,
 
 646                               'trans_id'  => $form->{id},
 
 647                               'variables' => $form);
 
 649   $rc = $dbh->commit();
 
 652   $main::lxdebug->leave_sub();
 
 657   $main::lxdebug->enter_sub();
 
 659   my ( $self, $myconfig, $form ) = @_;
 
 660   # connect to database
 
 661   my $dbh = $form->dbconnect($myconfig);
 
 664   my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
 
 665   my $query = qq|DELETE FROM $cv WHERE id = ?|;
 
 666   do_query($form, $dbh, $query, $form->{id});
 
 670   $main::lxdebug->leave_sub();
 
 674   $main::lxdebug->enter_sub();
 
 676   my ( $self, $myconfig, $form ) = @_;
 
 678   # connect to database
 
 679   my $dbh = $form->dbconnect($myconfig);
 
 681   my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
 
 686   my %allowed_sort_columns =
 
 687     map({ $_, 1 } qw(id customernumber name address contact phone fax email
 
 688                      taxnumber sic_code business invnumber ordnumber quonumber));
 
 690     $form->{sort} && $allowed_sort_columns{$form->{sort}} ?
 
 691     $form->{sort} : "name";
 
 692   $form->{sort} = $sortorder;
 
 693   $sortorder = "country,city,street" if ($sortorder eq "address");
 
 695   if ($form->{"${cv}number"}) {
 
 696     $where .= " AND ct.${cv}number ILIKE ?";
 
 697     push(@values, '%' . $form->{"${cv}number"} . '%');
 
 700   foreach my $key (qw(name contact email)) {
 
 702       $where .= " AND ct.$key ILIKE ?";
 
 703       push(@values, '%' . $form->{$key} . '%');
 
 707   if ( $form->{status} eq 'orphaned' ) {
 
 709       qq| AND ct.id NOT IN | .
 
 710       qq|   (SELECT o.${cv}_id FROM oe o, $cv cv WHERE cv.id = o.${cv}_id)|;
 
 711     if ($cv eq 'customer') {
 
 713         qq| AND ct.id NOT IN | .
 
 714         qq| (SELECT a.customer_id FROM ar a, customer cv | .
 
 715         qq|  WHERE cv.id = a.customer_id)|;
 
 717     if ($cv eq 'vendor') {
 
 719         qq| AND ct.id NOT IN | .
 
 720         qq| (SELECT a.vendor_id FROM ap a, vendor cv | .
 
 721         qq|  WHERE cv.id = a.vendor_id)|;
 
 723     $form->{l_invnumber} = $form->{l_ordnumber} = $form->{l_quonumber} = "";
 
 726   if ($form->{obsolete} eq "Y") {
 
 727     $where .= qq| AND obsolete|;
 
 728   } elsif ($form->{obsolete} eq "N") {
 
 729     $where .= qq| AND NOT obsolete|;
 
 732   if ($form->{business_id}) {
 
 733     $where .= qq| AND (business_id = ?)|;
 
 734     push(@values, conv_i($form->{business_id}));
 
 737   my ($cvar_where, @cvar_values) = CVar->build_filter_query('module'         => 'CT',
 
 738                                                             'trans_id_field' => 'ct.id',
 
 742     $where .= qq| AND ($cvar_where)|;
 
 743     push @values, @cvar_values;
 
 747     qq|SELECT ct.*, b.description AS business | .
 
 749     qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 752   my @saved_values = @values;
 
 753   # redo for invoices, orders and quotations
 
 754   if ($form->{l_invnumber} || $form->{l_ordnumber} || $form->{l_quonumber}) {
 
 755     my ($ar, $union, $module);
 
 758     if ($form->{l_invnumber}) {
 
 759       my $ar = $cv eq 'customer' ? 'ar' : 'ap';
 
 760       my $module = $ar eq 'ar' ? 'is' : 'ir';
 
 763         qq|SELECT ct.*, b.description AS business, | .
 
 764         qq|  a.invnumber, a.ordnumber, a.quonumber, a.id AS invid, | .
 
 765         qq|  '$module' AS module, 'invoice' AS formtype, | .
 
 766         qq|  (a.amount = a.paid) AS closed | .
 
 768         qq|JOIN $ar a ON (a.${cv}_id = ct.id) | .
 
 769         qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 770         qq|WHERE $where AND (a.invoice = '1')|;
 
 775     if ( $form->{l_ordnumber} ) {
 
 776       if ($union eq "UNION") {
 
 777         push(@values, @saved_values);
 
 781         qq|SELECT ct.*, b.description AS business,| .
 
 782         qq|  ' ' AS invnumber, o.ordnumber, o.quonumber, o.id AS invid, | .
 
 783         qq|  'oe' AS module, 'order' AS formtype, o.closed | .
 
 785         qq|JOIN oe o ON (o.${cv}_id = ct.id) | .
 
 786         qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 787         qq|WHERE $where AND (o.quotation = '0')|;
 
 792     if ( $form->{l_quonumber} ) {
 
 793       if ($union eq "UNION") {
 
 794         push(@values, @saved_values);
 
 798         qq|SELECT ct.*, b.description AS business, | .
 
 799         qq|  ' ' AS invnumber, o.ordnumber, o.quonumber, o.id AS invid, | .
 
 800         qq|  'oe' AS module, 'quotation' AS formtype, o.closed | .
 
 802         qq|JOIN oe o ON (o.${cv}_id = ct.id) | .
 
 803         qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 804         qq|WHERE $where AND (o.quotation = '1')|;
 
 808   $query .= qq| ORDER BY $sortorder|;
 
 810   $form->{CT} = selectall_hashref_query($form, $dbh, $query, @values);
 
 811   map({ my $ref = $_; $ref->{address} = join(" ", map({ $ref->{$_} } qw(street zipcode city country))); }
 
 814   $main::lxdebug->leave_sub();
 
 818   $main::lxdebug->enter_sub();
 
 820   my ( $self, $myconfig, $form ) = @_;
 
 821   my $dbh   = $form->dbconnect($myconfig);
 
 823     qq|SELECT * FROM contacts c | .
 
 824     qq|WHERE cp_id = ? ORDER BY cp_id limit 1|;
 
 825   my $sth = prepare_execute_query($form, $dbh, $query, $form->{cp_id});
 
 826   my $ref = $sth->fetchrow_hashref(NAME_lc);
 
 828   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 833   $main::lxdebug->leave_sub();
 
 837   $main::lxdebug->enter_sub();
 
 839   my ( $self, $myconfig, $form ) = @_;
 
 840   my $dbh   = $form->dbconnect($myconfig);
 
 841   my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
 
 842   my $sth = prepare_execute_query($form, $dbh, $query, $form->{shipto_id});
 
 844   my $ref = $sth->fetchrow_hashref(NAME_lc);
 
 846   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 851   $main::lxdebug->leave_sub();
 
 855   $main::lxdebug->enter_sub();
 
 857   my ( $self, $myconfig, $form ) = @_;
 
 858   my $dbh = $form->dbconnect($myconfig);
 
 860   my $arap = $form->{db} eq "vendor" ? "ap" : "ar";
 
 861   my $db = $form->{db} eq "customer" ? "customer" : "vendor";
 
 863   my $where = " WHERE 1=1 ";
 
 866   if ($form->{shipto_id} && ($arap eq "ar")) {
 
 867     $where .= "AND ${arap}.shipto_id = ?";
 
 868     push(@values, $form->{shipto_id});
 
 870     $where .= "AND ${arap}.${db}_id = ?";
 
 871     push(@values, $form->{id});
 
 875     $where .= "AND ${arap}.transdate >= ?";
 
 876     push(@values, conv_date($form->{from}));
 
 879     $where .= "AND ${arap}.transdate <= ?";
 
 880     push(@values, conv_date($form->{to}));
 
 883     qq|SELECT s.shiptoname, i.qty, | .
 
 884     qq|  ${arap}.transdate, ${arap}.invnumber, ${arap}.ordnumber, | .
 
 885     qq|  i.description, i.unit, i.sellprice | .
 
 887     qq|LEFT JOIN shipto s ON | .
 
 889      ? qq|(ar.shipto_id = s.shipto_id) |
 
 890      : qq|(ap.id = s.trans_id) |) .
 
 891     qq|LEFT JOIN invoice i ON (${arap}.id = i.trans_id) | .
 
 892     qq|LEFT join parts p ON (p.id = i.parts_id) | .
 
 894     qq|ORDER BY ${arap}.transdate DESC LIMIT 15|;
 
 896   $form->{DELIVERY} = selectall_hashref_query($form, $dbh, $query, @values);
 
 900   $main::lxdebug->leave_sub();
 
 904   $main::lxdebug->enter_sub();
 
 909   my $form   = $main::form;
 
 911   Common::check_params(\%params, 'dbh');
 
 913   if (!$form->{NOTE_subject}) {
 
 914     $main::lxdebug->leave_sub();
 
 918   my $dbh = $params{dbh};
 
 922     'id'           => $form->{NOTE_id},
 
 923     'subject'      => $form->{NOTE_subject},
 
 924     'body'         => $form->{NOTE_body},
 
 925     'trans_id'     => $form->{id},
 
 926     'trans_module' => 'ct',
 
 929   $note{id} = Notes->save(%note);
 
 931   if ($form->{FU_date}) {
 
 933       'id'               => $form->{FU_id},
 
 934       'note_id'          => $note{id},
 
 935       'follow_up_date'   => $form->{FU_date},
 
 936       'created_for_user' => $form->{FU_created_for_user},
 
 937       'done'             => $form->{FU_done} ? 1 : 0,
 
 938       'subject'          => $form->{NOTE_subject},
 
 939       'body'             => $form->{NOTE_body},
 
 942           'trans_id'     => $form->{id},
 
 943           'trans_type'   => $form->{db} eq 'customer' ? 'customer' : 'vendor',
 
 944           'trans_info'   => $form->{name},
 
 949     $follow_up{id} = FU->save(%follow_up);
 
 951   } elsif ($form->{FU_id}) {
 
 952     do_query($form, $dbh, qq|DELETE FROM follow_up_links WHERE follow_up_id = ?|, conv_i($form->{FU_id}));
 
 953     do_query($form, $dbh, qq|DELETE FROM follow_ups      WHERE id = ?|,           conv_i($form->{FU_id}));
 
 956   delete @{$form}{grep { /^NOTE_|^FU_/ } keys %{ $form }};
 
 958   $main::lxdebug->leave_sub();
 
 961 sub _delete_selected_notes {
 
 962   $main::lxdebug->enter_sub();
 
 967   Common::check_params(\%params, 'dbh');
 
 969   my $form = $main::form;
 
 970   my $dbh  = $params{dbh};
 
 972   foreach my $i (1 .. $form->{NOTES_rowcount}) {
 
 973     next unless ($form->{"NOTE_delete_$i"} && $form->{"NOTE_id_$i"});
 
 975     Notes->delete('dbh' => $params{dbh},
 
 976                   'id'  => $form->{"NOTE_id_$i"});
 
 979   $main::lxdebug->leave_sub();