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 #======================================================================
 
  52   $main::lxdebug->enter_sub();
 
  54   my ( $self, $myconfig, $form ) = @_;
 
  56   my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
 
  58   my $dbh   = $form->dbconnect($myconfig);
 
  60     qq|SELECT ct.*, b.id AS business, cp.* | .
 
  62     qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
  63     qq|LEFT JOIN contacts cp ON (ct.id = cp.cp_cv_id) | .
 
  64     qq|WHERE (ct.id = ?) | .
 
  65     qq|ORDER BY cp.cp_id LIMIT 1|;
 
  66   my $sth = prepare_execute_query($form, $dbh, $query, $form->{id});
 
  68   my $ref = $sth->fetchrow_hashref("NAME_lc");
 
  70   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
  72   # remove any trailing whitespace
 
  73   $form->{curr} =~ s/\s*$//;
 
  76   if ( $form->{salesman_id} ) {
 
  78       qq|SELECT ct.name AS salesman | .
 
  82       selectrow_query($form, $dbh, $query, $form->{salesman_id});
 
  85   my ($employee_id) = selectrow_query($form, $dbh, qq|SELECT id FROM employee WHERE login = ?|, $form->{login});
 
  87     qq|SELECT n.*, n.itime::DATE AS created_on,
 
  88          e.name AS created_by_name, e.login AS created_by_login
 
  90        LEFT JOIN employee e ON (n.created_by = e.id)
 
  91        WHERE (n.trans_id = ?) AND (n.trans_module = 'ct')|;
 
  92   $form->{NOTES} = selectall_hashref_query($form, $dbh, $query, conv_i($form->{id}));
 
  95     qq|SELECT fu.follow_up_date, fu.done AS follow_up_done, e.name AS created_for_name, e.name AS created_for_login
 
  97        LEFT JOIN employee e ON (fu.created_for_user = e.id)
 
  98        WHERE (fu.note_id = ?)
 
  99          AND NOT COALESCE(fu.done, FALSE)
 
 100          AND (   (fu.created_by = ?)
 
 101               OR (fu.created_by IN (SELECT DISTINCT what FROM follow_up_access WHERE who = ?)))|;
 
 102   $sth = prepare_query($form, $dbh, $query);
 
 104   foreach my $note (@{ $form->{NOTES} }) {
 
 105     do_statement($form, $sth, $query, conv_i($note->{id}), conv_i($note->{created_by}), conv_i($employee_id));
 
 106     $ref = $sth->fetchrow_hashref();
 
 108     map { $note->{$_} = $ref->{$_} } keys %{ $ref } if ($ref);
 
 113   if ($form->{edit_note_id}) {
 
 115       qq|SELECT n.id AS NOTE_id, n.subject AS NOTE_subject, n.body AS NOTE_body,
 
 116            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
 
 118          LEFT JOIN follow_ups fu ON ((n.id = fu.note_id) AND NOT COALESCE(fu.done, FALSE))
 
 120     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{edit_note_id}));
 
 123       foreach my $key (keys %{ $ref }) {
 
 125         $new_key          =~ s/^([^_]+)/\U$1\E/;
 
 126         $form->{$new_key} =  $ref->{$key};
 
 131   # check if it is orphaned
 
 132   my $arap      = ( $form->{db} eq 'customer' ) ? "ar" : "ap";
 
 135   if ($form->{db} eq 'vendor') {
 
 136     $makemodel = qq| UNION SELECT 1 FROM makemodel mm WHERE mm.make = ?|;
 
 143     qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
 
 144     qq|WHERE ct.id = ? | .
 
 148     qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
 
 151   my ($dummy) = selectrow_query($form, $dbh, $query, (conv_i($form->{id})) x $num_args);
 
 153   $form->{status} = "orphaned" unless ($dummy);
 
 157   $main::lxdebug->leave_sub();
 
 160 sub populate_drop_down_boxes {
 
 161   $main::lxdebug->enter_sub();
 
 163   my ($self, $myconfig, $form, $provided_dbh) = @_;
 
 166   my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect($myconfig);
 
 169   $query = qq|SELECT id, description FROM business ORDER BY id|;
 
 170   $form->{all_business} = selectall_hashref_query($form, $dbh, $query);
 
 174     qq|SELECT shipto_id, shiptoname, shiptodepartment_1, shiptostreet, shiptocity
 
 176        WHERE (trans_id = ?) AND (module = 'CT')|;
 
 177   $form->{SHIPTO} = selectall_hashref_query($form, $dbh, $query, $form->{id});
 
 180   $query  = qq|SELECT cp_id, cp_name, cp_givenname FROM contacts WHERE cp_cv_id = ? ORDER BY cp_name|;
 
 181   $form->{CONTACTS} = selectall_hashref_query($form, $dbh, $query, $form->{id});
 
 184   $query = qq|SELECT id, description FROM language ORDER BY id|;
 
 185   $form->{languages} = selectall_hashref_query($form, $dbh, $query);
 
 188   $query = qq|SELECT id, description FROM payment_terms ORDER BY sortkey|;
 
 189   $form->{payment_terms} = selectall_hashref_query($form, $dbh, $query);
 
 191   $dbh->disconnect() unless ($provided_dbh);
 
 193   $main::lxdebug->leave_sub();
 
 196 sub query_titles_and_greetings {
 
 197   $main::lxdebug->enter_sub();
 
 199   my ( $self, $myconfig, $form ) = @_;
 
 200   my ( %tmp,  $ref, $query );
 
 202   my $dbh = $form->dbconnect($myconfig);
 
 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->get_standard_dbh;
 
 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     my $customernumber      = SL::TransNumber->new(type        => 'customer',
 
 270                                                    number      => $form->{customernumber},
 
 271                                                    business_id => $form->{business},
 
 273     $form->{customernumber} = $customernumber->create_unique unless $customernumber->is_unique;
 
 275     $query = qq|SELECT nextval('id')|;
 
 276     ($form->{id}) = selectrow_query($form, $dbh, $query);
 
 278     $query = qq|INSERT INTO customer (id, name) VALUES (?, '')|;
 
 279     do_query($form, $dbh, $query, $form->{id});
 
 282   $query = qq|UPDATE customer SET | .
 
 283     qq|customernumber = ?, | .
 
 286     qq|department_1 = ?, | .
 
 287     qq|department_2 = ?, | .
 
 301     qq|creditlimit = ?, | .
 
 303     qq|business_id = ?, | .
 
 304     qq|taxnumber = ?, | .
 
 306     qq|account_number = ?, | .
 
 307     qq|bank_code = ?, | .
 
 312     qq|direct_debit = ?, | .
 
 315     qq|salesman_id = ?, | .
 
 316     qq|language_id = ?, | .
 
 317     qq|payment_id = ?, | .
 
 318     qq|taxzone_id = ?, | .
 
 319     qq|user_password = ?, | .
 
 320     qq|c_vendor_id = ?, | .
 
 323     qq|taxincluded_checked = ? | .
 
 326     $form->{customernumber},
 
 329     $form->{department_1},
 
 330     $form->{department_2},
 
 344     $form->{creditlimit},
 
 345     conv_i($form->{terms}),
 
 346     conv_i($form->{business}),
 
 349     $form->{account_number},
 
 354     $form->{obsolete} ? 't' : 'f',
 
 355     $form->{direct_debit} ? 't' : 'f',
 
 358     conv_i($form->{salesman_id}),
 
 359     conv_i($form->{language_id}),
 
 360     conv_i($form->{payment_id}),
 
 361     conv_i($form->{taxzone_id}, 0),
 
 362     $form->{user_password},
 
 363     $form->{c_vendor_id},
 
 364     conv_i($form->{klass}),
 
 365     substr($form->{currency}, 0, 3),
 
 366     $form->{taxincluded_checked} ne '' ? $form->{taxincluded_checked} : undef,
 
 369   do_query( $form, $dbh, $query, @values );
 
 371   $form->{cp_id} = $self->_save_contact($form, $dbh);
 
 374   $form->add_shipto( $dbh, $form->{id}, "CT" );
 
 376   $self->_save_note('dbh' => $dbh);
 
 377   $self->_delete_selected_notes('dbh' => $dbh);
 
 379   CVar->save_custom_variables('dbh'       => $dbh,
 
 381                               'trans_id'  => $form->{id},
 
 382                               'variables' => $form,
 
 383                               'always_valid' => 1);
 
 384   if ($form->{cp_id}) {
 
 385     CVar->save_custom_variables('dbh'       => $dbh,
 
 386                                 'module'    => 'Contacts',
 
 387                                 'trans_id'  => $form->{cp_id},
 
 388                                 'variables' => $form,
 
 389                                 'name_prefix'  => 'cp',
 
 390                                 'always_valid' => 1);
 
 393   my $rc = $dbh->commit();
 
 395   $main::lxdebug->leave_sub();
 
 400   $main::lxdebug->enter_sub();
 
 402   my ( $self, $myconfig, $form ) = @_;
 
 404   $form->{taxzone_id} *= 1;
 
 405   # connect to database
 
 406   my $dbh = $form->get_standard_dbh;
 
 409     $form->{"cp_${_}"} = $form->{"selected_cp_${_}"}
 
 410     if ( $form->{"selected_cp_${_}"} );
 
 411        } qw(title greeting abteilung) );
 
 412   $form->{"greeting"} = $form->{"selected_company_greeting"}
 
 413   if ( $form->{"selected_company_greeting"} );
 
 415   $form->{discount} = $form->parse_amount( $myconfig, $form->{discount} );
 
 416   $form->{discount} /= 100;
 
 417   $form->{creditlimit} = $form->parse_amount( $myconfig, $form->{creditlimit} );
 
 422     $query = qq|SELECT nextval('id')|;
 
 423     ($form->{id}) = selectrow_query($form, $dbh, $query);
 
 425     $query = qq|INSERT INTO vendor (id, name) VALUES (?, '')|;
 
 426     do_query($form, $dbh, $query, $form->{id});
 
 428     my $vendornumber      = SL::TransNumber->new(type   => 'vendor',
 
 430                                                  number => $form->{vendornumber},
 
 432     $form->{vendornumber} = $vendornumber->create_unique unless $vendornumber->is_unique;
 
 436     qq|UPDATE vendor SET | .
 
 437     qq|  vendornumber = ?, | .
 
 439     qq|  greeting = ?, | .
 
 440     qq|  department_1 = ?, | .
 
 441     qq|  department_2 = ?, | .
 
 446     qq|  homepage = ?, | .
 
 455     qq|  discount = ?, | .
 
 456     qq|  creditlimit = ?, | .
 
 457     qq|  business_id = ?, | .
 
 458     qq|  taxnumber = ?, | .
 
 459     qq|  language = ?, | .
 
 460     qq|  account_number = ?, | .
 
 461     qq|  bank_code = ?, | .
 
 465     qq|  obsolete = ?, | .
 
 466     qq|  direct_debit = ?, | .
 
 468     qq|  payment_id = ?, | .
 
 469     qq|  taxzone_id = ?, | .
 
 470     qq|  language_id = ?, | .
 
 471     qq|  username = ?, | .
 
 472     qq|  user_password = ?, | .
 
 473     qq|  v_customer_id = ?, | .
 
 477     $form->{vendornumber},
 
 480     $form->{department_1},
 
 481     $form->{department_2},
 
 494     conv_i($form->{terms}),
 
 496     $form->{creditlimit},
 
 497     conv_i($form->{business}),
 
 500     $form->{account_number},
 
 505     $form->{obsolete} ? 't' : 'f',
 
 506     $form->{direct_debit} ? 't' : 'f',
 
 508     conv_i($form->{payment_id}),
 
 509     conv_i($form->{taxzone_id}, 0),
 
 510     conv_i( $form->{language_id}),
 
 512     $form->{user_password},
 
 513     $form->{v_customer_id},
 
 514     substr($form->{currency}, 0, 3),
 
 517   do_query($form, $dbh, $query, @values);
 
 519   $form->{cp_id} = $self->_save_contact($form, $dbh);
 
 522   $form->add_shipto( $dbh, $form->{id}, "CT" );
 
 524   $self->_save_note('dbh' => $dbh);
 
 525   $self->_delete_selected_notes('dbh' => $dbh);
 
 527   CVar->save_custom_variables('dbh'       => $dbh,
 
 529                               'trans_id'  => $form->{id},
 
 530                               'variables' => $form,
 
 531                               'always_valid' => 1);
 
 532   if ($form->{cp_id}) {
 
 533     CVar->save_custom_variables('dbh'       => $dbh,
 
 534                                 'module'    => 'Contacts',
 
 535                                 'trans_id'  => $form->{cp_id},
 
 536                                 'variables' => $form,
 
 537                                 'name_prefix'  => 'cp',
 
 538                                 'always_valid' => 1);
 
 541   my $rc = $dbh->commit();
 
 543   $main::lxdebug->leave_sub();
 
 548   my ($self, $form, $dbh) = @_;
 
 550   return undef unless $form->{cp_id} || $form->{cp_name} || $form->{cp_givenname};
 
 552   my @columns = qw(cp_title cp_givenname cp_name cp_email cp_phone1 cp_phone2 cp_abteilung cp_fax
 
 553                    cp_mobile1 cp_mobile2 cp_satphone cp_satfax cp_project cp_privatphone cp_privatemail cp_birthday cp_gender
 
 554                    cp_street cp_zipcode cp_city);
 
 555   my @values  = map { $_ eq 'cp_gender' ? ($form->{$_} eq 'f' ? 'f' : 'm') : $form->{$_} } @columns;
 
 558   if ($form->{cp_id}) {
 
 559     $query = qq|UPDATE contacts SET | . join(', ', map { "${_} = ?" } @columns) . qq| WHERE cp_id = ?|;
 
 560     push @values, $form->{cp_id};
 
 561     $cp_id = $form->{cp_id};
 
 564     ($cp_id) = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
 
 566     $query = qq|INSERT INTO contacts (| . join(', ', @columns, 'cp_cv_id', 'cp_id') . qq|) VALUES (| . join(', ', ('?') x (2 + scalar @columns)) . qq|)|;
 
 567     push @values, $form->{id}, $cp_id;
 
 570   do_query($form, $dbh, $query, @values);
 
 576   $main::lxdebug->enter_sub();
 
 578   my ( $self, $myconfig, $form ) = @_;
 
 579   # connect to database
 
 580   my $dbh = $form->dbconnect($myconfig);
 
 583   my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
 
 584   my $query = qq|DELETE FROM $cv WHERE id = ?|;
 
 585   do_query($form, $dbh, $query, $form->{id});
 
 589   $main::lxdebug->leave_sub();
 
 593   $main::lxdebug->enter_sub();
 
 595   my ( $self, $myconfig, $form ) = @_;
 
 597   # connect to database
 
 598   my $dbh = $form->dbconnect($myconfig);
 
 600   my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
 
 601   my $join_records = $form->{l_invnumber} || $form->{l_ordnumber} || $form->{l_quonumber};
 
 606   my %allowed_sort_columns =
 
 608       id customernumber vendornumber name contact phone fax email street
 
 609       taxnumber business invnumber ordnumber quonumber zipcode city
 
 611   my $sortorder    = $form->{sort} && $allowed_sort_columns{$form->{sort}} ? $form->{sort} : "name";
 
 612   $form->{sort} = $sortorder;
 
 613   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
 
 615   if ($sortorder !~ /(business|id)/ && !$join_records) {
 
 616     $sortorder  = "lower($sortorder) ${sortdir}";
 
 618     $sortorder .= " ${sortdir}";
 
 621   if ($form->{"${cv}number"}) {
 
 622     $where .= " AND ct.${cv}number ILIKE ?";
 
 623     push(@values, '%' . $form->{"${cv}number"} . '%');
 
 626   foreach my $key (qw(name contact email)) {
 
 628       $where .= " AND ct.$key ILIKE ?";
 
 629       push(@values, '%' . $form->{$key} . '%');
 
 633   if ($form->{cp_name}) {
 
 634     $where .= " AND ct.id IN (SELECT cp_cv_id FROM contacts WHERE lower(cp_name) LIKE lower(?))";
 
 635     push @values, '%' . $form->{cp_name} . '%';
 
 638   if ($form->{addr_city}) {
 
 639     $where .= " AND ((lower(ct.city) LIKE lower(?))
 
 644                         WHERE (module = 'CT')
 
 645                           AND (lower(shiptocity) LIKE lower(?))
 
 648     push @values, ('%' . $form->{addr_city} . '%') x 2;
 
 651   if ( $form->{status} eq 'orphaned' ) {
 
 653       qq| AND ct.id NOT IN | .
 
 654       qq|   (SELECT o.${cv}_id FROM oe o, $cv cv WHERE cv.id = o.${cv}_id)|;
 
 655     if ($cv eq 'customer') {
 
 657         qq| AND ct.id NOT IN | .
 
 658         qq| (SELECT a.customer_id FROM ar a, customer cv | .
 
 659         qq|  WHERE cv.id = a.customer_id)|;
 
 661     if ($cv eq 'vendor') {
 
 663         qq| AND ct.id NOT IN | .
 
 664         qq| (SELECT a.vendor_id FROM ap a, vendor cv | .
 
 665         qq|  WHERE cv.id = a.vendor_id)|;
 
 667     $form->{l_invnumber} = $form->{l_ordnumber} = $form->{l_quonumber} = "";
 
 670   if ($form->{obsolete} eq "Y") {
 
 671     $where .= qq| AND obsolete|;
 
 672   } elsif ($form->{obsolete} eq "N") {
 
 673     $where .= qq| AND NOT obsolete|;
 
 676   if ($form->{business_id}) {
 
 677     $where .= qq| AND (business_id = ?)|;
 
 678     push(@values, conv_i($form->{business_id}));
 
 681   # Nur Kunden finden, bei denen ich selber der Verkäufer bin
 
 682   # Gilt nicht für Lieferanten
 
 683   if ($cv eq 'customer' &&   !$main::auth->assert('customer_vendor_all_edit', 1)) {
 
 684     $where .= qq| AND ct.salesman_id = (select id from employee where login= ?)|;
 
 685     push(@values, $form->{login});
 
 688   my ($cvar_where, @cvar_values) = CVar->build_filter_query('module'         => 'CT',
 
 689                                                             'trans_id_field' => 'ct.id',
 
 693     $where .= qq| AND ($cvar_where)|;
 
 694     push @values, @cvar_values;
 
 697   if ($form->{addr_street}) {
 
 698     $where .= qq| AND (street ILIKE ?)|;
 
 699     push @values, '%' . $form->{addr_street} . '%';
 
 702   if ($form->{addr_zipcode}) {
 
 703     $where .= qq| AND (zipcode ILIKE ?)|;
 
 704     push @values, $form->{addr_zipcode} . '%';
 
 708     qq|SELECT ct.*, b.description AS business | .
 
 709     (qq|, NULL AS invnumber, NULL AS ordnumber, NULL AS quonumber, NULL AS invid, NULL AS module, NULL AS formtype, NULL AS closed | x!! $join_records) .
 
 711     qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 714   my @saved_values = @values;
 
 715   # redo for invoices, orders and quotations
 
 719     if ($form->{l_invnumber}) {
 
 720       my $ar = $cv eq 'customer' ? 'ar' : 'ap';
 
 721       my $module = $ar eq 'ar' ? 'is' : 'ir';
 
 722       push(@values, @saved_values);
 
 725         qq|SELECT ct.*, b.description AS business, | .
 
 726         qq|  a.invnumber, a.ordnumber, a.quonumber, a.id AS invid, | .
 
 727         qq|  '$module' AS module, 'invoice' AS formtype, | .
 
 728         qq|  (a.amount = a.paid) AS closed | .
 
 730         qq|JOIN $ar a ON (a.${cv}_id = ct.id) | .
 
 731         qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 732         qq|WHERE $where AND (a.invoice = '1')|;
 
 735     if ( $form->{l_ordnumber} ) {
 
 736       push(@values, @saved_values);
 
 739         qq|SELECT ct.*, b.description AS business,| .
 
 740         qq|  ' ' AS invnumber, o.ordnumber, o.quonumber, o.id AS invid, | .
 
 741         qq|  'oe' AS module, 'order' AS formtype, o.closed | .
 
 743         qq|JOIN oe o ON (o.${cv}_id = ct.id) | .
 
 744         qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 745         qq|WHERE $where AND (o.quotation = '0')|;
 
 748     if ( $form->{l_quonumber} ) {
 
 749       push(@values, @saved_values);
 
 752         qq|SELECT ct.*, b.description AS business, | .
 
 753         qq|  ' ' AS invnumber, o.ordnumber, o.quonumber, o.id AS invid, | .
 
 754         qq|  'oe' AS module, 'quotation' AS formtype, o.closed | .
 
 756         qq|JOIN oe o ON (o.${cv}_id = ct.id) | .
 
 757         qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
 
 758         qq|WHERE $where AND (o.quotation = '1')|;
 
 762   $query .= qq| ORDER BY $sortorder|;
 
 764   $form->{CT} = selectall_hashref_query($form, $dbh, $query, @values);
 
 766   $main::lxdebug->leave_sub();
 
 770   $main::lxdebug->enter_sub();
 
 772   my ( $self, $myconfig, $form ) = @_;
 
 774   die 'Missing argument: cp_id' unless $::form->{cp_id};
 
 776   my $dbh   = $form->dbconnect($myconfig);
 
 778     qq|SELECT * FROM contacts c | .
 
 779     qq|WHERE cp_id = ? ORDER BY cp_id limit 1|;
 
 780   my $sth = prepare_execute_query($form, $dbh, $query, $form->{cp_id});
 
 781   my $ref = $sth->fetchrow_hashref("NAME_lc");
 
 783   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 785   $query = qq|SELECT COUNT(cp_id) AS used FROM (
 
 786     SELECT cp_id FROM oe UNION
 
 787     SELECT cp_id FROM ar UNION
 
 788     SELECT cp_id FROM ap UNION
 
 789     SELECT cp_id FROM delivery_orders
 
 790   ) AS cpid WHERE cp_id = ? OR ? = 0|;
 
 791   ($form->{cp_used}) = selectfirst_array_query($form, $dbh, $query, ($form->{cp_id})x2);
 
 796   $main::lxdebug->leave_sub();
 
 800   $main::lxdebug->enter_sub();
 
 802   my ( $self, $myconfig, $form ) = @_;
 
 803   my $dbh   = $form->dbconnect($myconfig);
 
 804   my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
 
 805   my $sth = prepare_execute_query($form, $dbh, $query, $form->{shipto_id});
 
 807   my $ref = $sth->fetchrow_hashref("NAME_lc");
 
 809   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 811   $query = qq|SELECT COUNT(shipto_id) AS used FROM (
 
 812     SELECT shipto_id FROM oe UNION
 
 813     SELECT shipto_id FROM ar UNION
 
 814     SELECT shipto_id FROM delivery_orders
 
 815   ) AS stid WHERE shipto_id = ? OR ? = 0|;
 
 816   ($form->{shiptoused}) = selectfirst_array_query($form, $dbh, $query, ($form->{shipto_id})x2);
 
 821   $main::lxdebug->leave_sub();
 
 825   $main::lxdebug->enter_sub();
 
 827   my ( $self, $myconfig, $form ) = @_;
 
 828   my $dbh = $form->dbconnect($myconfig);
 
 830   my $arap = $form->{db} eq "vendor" ? "ap" : "ar";
 
 831   my $db = $form->{db} eq "customer" ? "customer" : "vendor";
 
 832   my $qty_sign = $form->{db} eq 'vendor' ? ' * -1 AS qty' : '';
 
 834   my $where = " WHERE 1=1 ";
 
 837   if ($form->{shipto_id} && ($arap eq "ar")) {
 
 838     $where .= "AND ${arap}.shipto_id = ?";
 
 839     push(@values, $form->{shipto_id});
 
 841     $where .= "AND ${arap}.${db}_id = ?";
 
 842     push(@values, $form->{id});
 
 846     $where .= "AND ${arap}.transdate >= ?";
 
 847     push(@values, conv_date($form->{from}));
 
 850     $where .= "AND ${arap}.transdate <= ?";
 
 851     push(@values, conv_date($form->{to}));
 
 854     qq|SELECT s.shiptoname, i.qty $qty_sign, | .
 
 855     qq|  ${arap}.id, ${arap}.transdate, ${arap}.invnumber, ${arap}.ordnumber, | .
 
 856     qq|  i.description, i.unit, i.sellprice, | .
 
 857     qq|  oe.id AS oe_id, invoice | .
 
 859     qq|LEFT JOIN shipto s ON | .
 
 861      ? qq|(ar.shipto_id = s.shipto_id) |
 
 862      : qq|(ap.id = s.trans_id) |) .
 
 863     qq|LEFT JOIN invoice i ON (${arap}.id = i.trans_id) | .
 
 864     qq|LEFT join parts p ON (p.id = i.parts_id) | .
 
 865     qq|LEFT JOIN oe ON (oe.ordnumber = ${arap}.ordnumber AND NOT ${arap}.ordnumber = '') | .
 
 867     qq|ORDER BY ${arap}.transdate DESC LIMIT 15|;
 
 869   $form->{DELIVERY} = selectall_hashref_query($form, $dbh, $query, @values);
 
 873   $main::lxdebug->leave_sub();
 
 877   $main::lxdebug->enter_sub();
 
 882   my $form   = $main::form;
 
 884   Common::check_params(\%params, 'dbh');
 
 886   if (!$form->{NOTE_subject}) {
 
 887     $main::lxdebug->leave_sub();
 
 891   my $dbh = $params{dbh};
 
 895     'id'           => $form->{NOTE_id},
 
 896     'subject'      => $form->{NOTE_subject},
 
 897     'body'         => $form->{NOTE_body},
 
 898     'trans_id'     => $form->{id},
 
 899     'trans_module' => 'ct',
 
 902   $note{id} = Notes->save(%note);
 
 904   if ($form->{FU_date}) {
 
 906       'id'               => $form->{FU_id},
 
 907       'note_id'          => $note{id},
 
 908       'follow_up_date'   => $form->{FU_date},
 
 909       'created_for_user' => $form->{FU_created_for_user},
 
 910       'done'             => $form->{FU_done} ? 1 : 0,
 
 911       'subject'          => $form->{NOTE_subject},
 
 912       'body'             => $form->{NOTE_body},
 
 915           'trans_id'     => $form->{id},
 
 916           'trans_type'   => $form->{db} eq 'customer' ? 'customer' : 'vendor',
 
 917           'trans_info'   => $form->{name},
 
 922     $follow_up{id} = FU->save(%follow_up);
 
 924   } elsif ($form->{FU_id}) {
 
 925     do_query($form, $dbh, qq|DELETE FROM follow_up_links WHERE follow_up_id = ?|, conv_i($form->{FU_id}));
 
 926     do_query($form, $dbh, qq|DELETE FROM follow_ups      WHERE id = ?|,           conv_i($form->{FU_id}));
 
 929   delete @{$form}{grep { /^NOTE_|^FU_/ } keys %{ $form }};
 
 931   $main::lxdebug->leave_sub();
 
 934 sub _delete_selected_notes {
 
 935   $main::lxdebug->enter_sub();
 
 940   Common::check_params(\%params, 'dbh');
 
 942   my $form = $main::form;
 
 943   my $dbh  = $params{dbh};
 
 945   foreach my $i (1 .. $form->{NOTES_rowcount}) {
 
 946     next unless ($form->{"NOTE_delete_$i"} && $form->{"NOTE_id_$i"});
 
 948     Notes->delete('dbh' => $params{dbh},
 
 949                   'id'  => $form->{"NOTE_id_$i"});
 
 952   $main::lxdebug->leave_sub();
 
 955 # TODO: remove in 2.7.0 stable
 
 957   $main::lxdebug->enter_sub();
 
 960   my $shipto_id = shift;
 
 962   my $form      = $main::form;
 
 963   my %myconfig  = %main::myconfig;
 
 964   my $dbh       = $form->get_standard_dbh(\%myconfig);
 
 966   do_query($form, $dbh, qq|UPDATE shipto SET trans_id = NULL WHERE shipto_id = ?|, $shipto_id);
 
 970   $main::lxdebug->leave_sub();
 
 973 # TODO: remove in 2.7.0 stable
 
 975   $main::lxdebug->enter_sub();
 
 980   my $form      = $main::form;
 
 981   my %myconfig  = %main::myconfig;
 
 982   my $dbh       = $form->get_standard_dbh(\%myconfig);
 
 984   do_query($form, $dbh, qq|UPDATE contacts SET cp_cv_id = NULL WHERE cp_id = ?|, $cp_id);
 
 988   $main::lxdebug->leave_sub();
 
 992   $main::lxdebug->enter_sub();
 
 997   Common::check_params(\%params, qw(vc id));
 
 999   my $myconfig = \%main::myconfig;
 
1000   my $form     = $main::form;
 
1002   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
 
1004   my $table        = $params{vc} eq 'customer' ? 'customer' : 'vendor';
 
1005   my @ids          = ref $params{id} eq 'ARRAY' ? @{ $params{id} } : ($params{id});
 
1006   my $placeholders = join ", ", ('?') x scalar @ids;
 
1007   my $query        = qq|SELECT id, name, account_number, bank, bank_code, iban, bic
 
1009                         WHERE id IN (${placeholders})|;
 
1011   my $result       = selectall_hashref_query($form, $dbh, $query, map { conv_i($_) } @ids);
 
1013   if (ref $params{id} eq 'ARRAY') {
 
1014     $result = { map { $_->{id} => $_ } @{ $result } };
 
1016     $result = $result->[0] || { 'id' => $params{id} };
 
1019   $main::lxdebug->leave_sub();
 
1024 sub parse_excel_file {
 
1025   $main::lxdebug->enter_sub();
 
1027   my ($self, $myconfig, $form) = @_;
 
1028   my $locale = $main::locale;
 
1030   $form->{formname}   = 'sales_quotation';
 
1031   $form->{type}   = 'sales_quotation';
 
1032   $form->{format} = 'excel';
 
1033   $form->{media}  = 'screen';
 
1034   $form->{quonumber} = 1;
 
1037   # $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
 
1038   $form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
 
1042   $form->{"${inv}date"} = $form->{transdate};
 
1043   $form->{label}        = $locale->text('Quotation');
 
1044   my $numberfld            = "sqnumber";
 
1048   $form->{what_done} = $form->{formname};
 
1050   map({ delete($form->{$_}); } grep(/^cp_/, keys(%{ $form })));
 
1052   my $output_dateformat = $myconfig->{"dateformat"};
 
1053   my $output_numberformat = $myconfig->{"numberformat"};
 
1054   my $output_longdates = 1;
 
1056   # map login user variables
 
1057   map { $form->{"login_$_"} = $myconfig->{$_} } ("name", "email", "fax", "tel", "company");
 
1060   for my $field (qw(transdate_oe deliverydate_oe)) {
 
1062       $form->{$field}[$_] = $locale->date($myconfig, $form->{$field}[$_], 1);
 
1063     } 0 .. $#{ $form->{$field} };
 
1066   if ($form->{shipto_id}) {
 
1067     $form->get_shipto($myconfig);
 
1070   $form->{notes} =~ s/^\s+//g;
 
1072   $form->{templates} = $myconfig->{templates};
 
1074   delete $form->{printer_command};
 
1076   $form->get_employee_info($myconfig);
 
1078   my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
 
1080   if (scalar @{ $cvar_date_fields }) {
 
1081     format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
 
1084   while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
 
1085     reformat_numbers($output_numberformat, $precision, @{ $field_list });
 
1089   my $extension            = 'xls';
 
1091   $form->{IN}         = "$form->{formname}.${extension}";
 
1093   delete $form->{OUT};
 
1095   $form->parse_template($myconfig);
 
1097   $main::lxdebug->leave_sub();
 
1100 sub search_contacts {
 
1101   $::lxdebug->enter_sub;
 
1106   my $dbh       = $params{dbh} || $::form->get_standard_dbh;
 
1107   my $vc        = $params{db} eq 'customer' ? 'customer' : 'vendor';
 
1110     'cp_name'   => 'cp_name, cp_givenname',
 
1111     'vcname'    => 'vcname, cp_name, cp_givenname',
 
1112     'vcnumber'  => 'vcnumber, cp_name, cp_givenname',
 
1115   my %sortcols  = map { $_ => 1 } qw(cp_name cp_givenname cp_phone1 cp_phone2 cp_mobile1 cp_email cp_street cp_zipcode cp_city vcname vcnumber);
 
1117   my $order_by  = $sortcols{$::form->{sort}} ? $::form->{sort} : 'cp_name';
 
1118   $::form->{sort} = $order_by;
 
1119   $order_by     = $sortspecs{$order_by} if ($sortspecs{$order_by});
 
1121   my $sortdir   = $::form->{sortdir} ? 'ASC' : 'DESC';
 
1122   $order_by     =~ s/,/ ${sortdir},/g;
 
1123   $order_by    .= " $sortdir";
 
1125   my @where_tokens = ();
 
1128   if ($params{search_term}) {
 
1131       'cp.cp_name      ILIKE ?',
 
1132       'cp.cp_givenname ILIKE ?',
 
1133       'cp.cp_email     ILIKE ?';
 
1134     push @values, ('%' . $params{search_term} . '%') x 3;
 
1136     if (($params{search_term} =~ m/\d/) && ($params{search_term} !~ m/[^\d \(\)+\-]/)) {
 
1137       my $number =  $params{search_term};
 
1138       $number    =~ s/[^\d]//g;
 
1139       $number    =  join '[ /\(\)+\-]*', split(m//, $number);
 
1141       push @tokens, map { "($_ ~ '$number')" } qw(cp_phone1 cp_phone2 cp_mobile1 cp_mobile2);
 
1144     push @where_tokens, map { "($_)" } join ' OR ', @tokens;
 
1147   my ($cvar_where, @cvar_values) = CVar->build_filter_query('module'         => 'Contacts',
 
1148                                                             'trans_id_field' => 'cp.cp_id',
 
1149                                                             'filter'         => $params{filter});
 
1152     push @where_tokens, $cvar_where;
 
1153     push @values, @cvar_values;
 
1156   if (my $filter = $params{filter}) {
 
1157     for (qw(name title givenname email project abteilung)) {
 
1158       next unless $filter->{"cp_$_"};
 
1159       add_token(\@where_tokens, \@values, col =>  "cp.cp_$_", val => $filter->{"cp_$_"}, method => 'ILIKE', esc => 'substr');
 
1162     push @where_tokens, 'cp.cp_cv_id IS NOT NULL' if $filter->{status} eq 'active';
 
1163     push @where_tokens, 'cp.cp_cv_id IS NULL'     if $filter->{status} eq 'orphaned';
 
1166   my $where = @where_tokens ? 'WHERE ' . join ' AND ', @where_tokens : '';
 
1168   my $query     = qq|SELECT cp.*,
 
1169                        COALESCE(c.id,             v.id)           AS vcid,
 
1170                        COALESCE(c.name,           v.name)         AS vcname,
 
1171                        COALESCE(c.customernumber, v.vendornumber) AS vcnumber,
 
1172                        CASE WHEN c.name IS NULL THEN 'vendor' ELSE 'customer' END AS db
 
1174                      LEFT JOIN customer c ON (cp.cp_cv_id = c.id)
 
1175                      LEFT JOIN vendor v   ON (cp.cp_cv_id = v.id)
 
1177                      ORDER BY $order_by|;
 
1179   my $contacts  = selectall_hashref_query($::form, $dbh, $query, @values);
 
1181   $::lxdebug->leave_sub;
 
1183   return @{ $contacts };