kivitendo/SL/CT.pm @ 462bdf7c
d319704a | Moritz Bunkus | #=====================================================================
|
||
# LX-Office ERP
|
||||
# Copyright (C) 2004
|
||||
# Based on SQL-Ledger Version 2.1.9
|
||||
# Web http://www.lx-office.org
|
||||
#
|
||||
#=====================================================================
|
||||
# SQL-Ledger Accounting
|
||||
# Copyright (C) 2001
|
||||
#
|
||||
# Author: Dieter Simader
|
||||
# Email: dsimader@sql-ledger.org
|
||||
# Web: http://www.sql-ledger.org
|
||||
#
|
||||
# Contributors:
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#======================================================================
|
||||
#
|
||||
# backend code for customers and vendors
|
||||
#
|
||||
# CHANGE LOG:
|
||||
# DS. 2000-07-04 Created
|
||||
#
|
||||
#======================================================================
|
||||
package CT;
|
||||
8688e71e | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | use Data::Dumper;
|
||
8688e71e | Moritz Bunkus | |||
7a7f33b5 | Moritz Bunkus | use SL::Common;
|
||
8688e71e | Moritz Bunkus | use SL::CVar;
|
||
af853490 | Moritz Bunkus | use SL::DBUtils;
|
||
7a7f33b5 | Moritz Bunkus | use SL::FU;
|
||
use SL::Notes;
|
||||
becda06d | Moritz Bunkus | use SL::TransNumber;
|
||
d319704a | Moritz Bunkus | |||
c510d88b | Sven Schöling | use strict;
|
||
d319704a | Moritz Bunkus | sub get_tuple {
|
||
$main::lxdebug->enter_sub();
|
||||
93a4e424 | Moritz Bunkus | my ( $self, $myconfig, $form ) = @_;
|
||
my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
|
||||
d319704a | Moritz Bunkus | |||
my $dbh = $form->dbconnect($myconfig);
|
||||
93a4e424 | Moritz Bunkus | my $query =
|
||
qq|SELECT ct.*, b.id AS business, cp.* | .
|
||||
qq|FROM $cv ct | .
|
||||
qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
|
||||
qq|LEFT JOIN contacts cp ON (ct.id = cp.cp_cv_id) | .
|
||||
qq|WHERE (ct.id = ?) | .
|
||||
qq|ORDER BY cp.cp_id LIMIT 1|;
|
||||
my $sth = prepare_execute_query($form, $dbh, $query, $form->{id});
|
||||
d319704a | Moritz Bunkus | |||
d744e4f2 | Sven Schöling | my $ref = $sth->fetchrow_hashref("NAME_lc");
|
||
d319704a | Moritz Bunkus | |||
map { $form->{$_} = $ref->{$_} } keys %$ref;
|
||||
94802c79 | Bernd Bleßmann | # remove any trailing whitespace
|
||
$form->{curr} =~ s/\s*$//;
|
||||
d319704a | Moritz Bunkus | $sth->finish;
|
||
93a4e424 | Moritz Bunkus | if ( $form->{salesman_id} ) {
|
||
my $query =
|
||||
qq|SELECT ct.name AS salesman | .
|
||||
qq|FROM $cv ct | .
|
||||
qq|WHERE ct.id = ?|;
|
||||
($form->{salesman}) =
|
||||
selectrow_query($form, $dbh, $query, $form->{salesman_id});
|
||||
d319704a | Moritz Bunkus | }
|
||
7a7f33b5 | Moritz Bunkus | my ($employee_id) = selectrow_query($form, $dbh, qq|SELECT id FROM employee WHERE login = ?|, $form->{login});
|
||
$query =
|
||||
qq|SELECT n.*, n.itime::DATE AS created_on,
|
||||
e.name AS created_by_name, e.login AS created_by_login
|
||||
FROM notes n
|
||||
LEFT JOIN employee e ON (n.created_by = e.id)
|
||||
WHERE (n.trans_id = ?) AND (n.trans_module = 'ct')|;
|
||||
$form->{NOTES} = selectall_hashref_query($form, $dbh, $query, conv_i($form->{id}));
|
||||
$query =
|
||||
qq|SELECT fu.follow_up_date, fu.done AS follow_up_done, e.name AS created_for_name, e.name AS created_for_login
|
||||
FROM follow_ups fu
|
||||
LEFT JOIN employee e ON (fu.created_for_user = e.id)
|
||||
WHERE (fu.note_id = ?)
|
||||
AND NOT COALESCE(fu.done, FALSE)
|
||||
AND ( (fu.created_by = ?)
|
||||
OR (fu.created_by IN (SELECT DISTINCT what FROM follow_up_access WHERE who = ?)))|;
|
||||
$sth = prepare_query($form, $dbh, $query);
|
||||
foreach my $note (@{ $form->{NOTES} }) {
|
||||
do_statement($form, $sth, $query, conv_i($note->{id}), conv_i($note->{created_by}), conv_i($employee_id));
|
||||
$ref = $sth->fetchrow_hashref();
|
||||
map { $note->{$_} = $ref->{$_} } keys %{ $ref } if ($ref);
|
||||
}
|
||||
$sth->finish();
|
||||
if ($form->{edit_note_id}) {
|
||||
$query =
|
||||
qq|SELECT n.id AS NOTE_id, n.subject AS NOTE_subject, n.body AS NOTE_body,
|
||||
fu.id AS FU_id, fu.follow_up_date AS FU_date, fu.done AS FU_done, fu.created_for_user AS FU_created_for_user
|
||||
FROM notes n
|
||||
LEFT JOIN follow_ups fu ON ((n.id = fu.note_id) AND NOT COALESCE(fu.done, FALSE))
|
||||
WHERE n.id = ?|;
|
||||
$ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{edit_note_id}));
|
||||
if ($ref) {
|
||||
foreach my $key (keys %{ $ref }) {
|
||||
my $new_key = $key;
|
||||
d744e4f2 | Sven Schöling | $new_key =~ s/^([^_]+)/\U$1\E/;
|
||
7a7f33b5 | Moritz Bunkus | $form->{$new_key} = $ref->{$key};
|
||
}
|
||||
}
|
||||
}
|
||||
d319704a | Moritz Bunkus | # check if it is orphaned
|
||
4bbf708c | Geoffrey Richardson | my $arap = ( $form->{db} eq 'customer' ) ? "ar" : "ap";
|
||
my $num_args = 2;
|
||||
my $makemodel = '';
|
||||
if ($form->{db} eq 'vendor') {
|
||||
683e76d2 | Sven Schöling | $makemodel = qq| UNION SELECT 1 FROM makemodel mm WHERE mm.make = ?|;
|
||
4bbf708c | Geoffrey Richardson | $num_args++;
|
||
}
|
||||
93a4e424 | Moritz Bunkus | $query =
|
||
qq|SELECT a.id | .
|
||||
qq|FROM $arap a | .
|
||||
qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
|
||||
qq|WHERE ct.id = ? | .
|
||||
qq|UNION | .
|
||||
qq|SELECT a.id | .
|
||||
qq|FROM oe a | .
|
||||
qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
|
||||
4bbf708c | Geoffrey Richardson | qq|WHERE ct.id = ?|
|
||
. $makemodel;
|
||||
my ($dummy) = selectrow_query($form, $dbh, $query, (conv_i($form->{id})) x $num_args);
|
||||
93a4e424 | Moritz Bunkus | $form->{status} = "orphaned" unless ($dummy);
|
||
d319704a | Moritz Bunkus | |||
93a4e424 | Moritz Bunkus | $dbh->disconnect;
|
||
54e4131e | Moritz Bunkus | |||
93a4e424 | Moritz Bunkus | $main::lxdebug->leave_sub();
|
||
}
|
||||
54e4131e | Moritz Bunkus | |||
93a4e424 | Moritz Bunkus | sub populate_drop_down_boxes {
|
||
$main::lxdebug->enter_sub();
|
||||
54e4131e | Moritz Bunkus | |||
93a4e424 | Moritz Bunkus | my ($self, $myconfig, $form, $provided_dbh) = @_;
|
||
d744e4f2 | Sven Schöling | my $query;
|
||
54e4131e | Moritz Bunkus | |||
93a4e424 | Moritz Bunkus | my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect($myconfig);
|
||
54e4131e | Moritz Bunkus | |||
93a4e424 | Moritz Bunkus | # get business types
|
||
$query = qq|SELECT id, description FROM business ORDER BY id|;
|
||||
$form->{all_business} = selectall_hashref_query($form, $dbh, $query);
|
||||
54e4131e | Moritz Bunkus | |||
93a4e424 | Moritz Bunkus | # get shipto address
|
||
$query =
|
||||
26ba876e | Moritz Bunkus | qq|SELECT shipto_id, shiptoname, shiptodepartment_1, shiptostreet, shiptocity
|
||
FROM shipto
|
||||
WHERE (trans_id = ?) AND (module = 'CT')|;
|
||||
93a4e424 | Moritz Bunkus | $form->{SHIPTO} = selectall_hashref_query($form, $dbh, $query, $form->{id});
|
||
54e4131e | Moritz Bunkus | |||
# get contacts
|
||||
f50a8a82 | Moritz Bunkus | $query = qq|SELECT cp_id, cp_name, cp_givenname FROM contacts WHERE cp_cv_id = ? ORDER BY cp_name|;
|
||
93a4e424 | Moritz Bunkus | $form->{CONTACTS} = selectall_hashref_query($form, $dbh, $query, $form->{id});
|
||
54e4131e | Moritz Bunkus | |||
# get languages
|
||||
93a4e424 | Moritz Bunkus | $query = qq|SELECT id, description FROM language ORDER BY id|;
|
||
$form->{languages} = selectall_hashref_query($form, $dbh, $query);
|
||||
54e4131e | Moritz Bunkus | |||
1f96f65b | Moritz Bunkus | # get payment terms
|
||
93a4e424 | Moritz Bunkus | $query = qq|SELECT id, description FROM payment_terms ORDER BY sortkey|;
|
||
$form->{payment_terms} = selectall_hashref_query($form, $dbh, $query);
|
||||
54e4131e | Moritz Bunkus | |||
93a4e424 | Moritz Bunkus | $dbh->disconnect() unless ($provided_dbh);
|
||
d319704a | Moritz Bunkus | |||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
sub query_titles_and_greetings {
|
||||
$main::lxdebug->enter_sub();
|
||||
93a4e424 | Moritz Bunkus | my ( $self, $myconfig, $form ) = @_;
|
||
d744e4f2 | Sven Schöling | my ( %tmp, $ref, $query );
|
||
d319704a | Moritz Bunkus | |||
my $dbh = $form->dbconnect($myconfig);
|
||||
24baeb62 | Geoffrey Richardson | $query =
|
||
qq|SELECT DISTINCT(greeting) | .
|
||||
qq|FROM customer | .
|
||||
qq|WHERE greeting ~ '[a-zA-Z]' | .
|
||||
qq|UNION | .
|
||||
qq|SELECT DISTINCT(greeting) | .
|
||||
qq|FROM vendor | .
|
||||
qq|WHERE greeting ~ '[a-zA-Z]' | .
|
||||
qq|ORDER BY greeting|;
|
||||
d744e4f2 | Sven Schöling | |||
24baeb62 | Geoffrey Richardson | map({ $tmp{$_} = 1; } selectall_array_query($form, $dbh, $query));
|
||
$form->{COMPANY_GREETINGS} = [ sort(keys(%tmp)) ];
|
||||
54e4131e | Moritz Bunkus | |||
d319704a | Moritz Bunkus | $query =
|
||
93a4e424 | Moritz Bunkus | qq|SELECT DISTINCT(cp_title) | .
|
||
qq|FROM contacts | .
|
||||
qq|WHERE cp_title ~ '[a-zA-Z]'|;
|
||||
$form->{TITLES} = [ selectall_array_query($form, $dbh, $query) ];
|
||||
54e4131e | Moritz Bunkus | |||
$query =
|
||||
93a4e424 | Moritz Bunkus | qq|SELECT DISTINCT(cp_abteilung) | .
|
||
qq|FROM contacts | .
|
||||
qq|WHERE cp_abteilung ~ '[a-zA-Z]'|;
|
||||
$form->{DEPARTMENT} = [ selectall_array_query($form, $dbh, $query) ];
|
||||
54e4131e | Moritz Bunkus | |||
d319704a | Moritz Bunkus | $dbh->disconnect();
|
||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
sub save_customer {
|
||||
$main::lxdebug->enter_sub();
|
||||
93a4e424 | Moritz Bunkus | my ( $self, $myconfig, $form ) = @_;
|
||
d319704a | Moritz Bunkus | |||
07d71c33 | Stephan Köhler | # set pricegroup to default
|
||
93a4e424 | Moritz Bunkus | $form->{klass} = 0 unless ($form->{klass});
|
||
07d71c33 | Stephan Köhler | |||
d319704a | Moritz Bunkus | # connect to database
|
||
af281b3c | Moritz Bunkus | my $dbh = $form->get_standard_dbh;
|
||
93a4e424 | Moritz Bunkus | |||
map( {
|
||||
$form->{"cp_${_}"} = $form->{"selected_cp_${_}"}
|
||||
if ( $form->{"selected_cp_${_}"} );
|
||||
} qw(title greeting abteilung) );
|
||||
54e4131e | Moritz Bunkus | $form->{"greeting"} = $form->{"selected_company_greeting"}
|
||
93a4e424 | Moritz Bunkus | if ( $form->{"selected_company_greeting"} );
|
||
d319704a | Moritz Bunkus | # assign value discount, terms, creditlimit
|
||
93a4e424 | Moritz Bunkus | $form->{discount} = $form->parse_amount( $myconfig, $form->{discount} );
|
||
d319704a | Moritz Bunkus | $form->{discount} /= 100;
|
||
93a4e424 | Moritz Bunkus | $form->{creditlimit} = $form->parse_amount( $myconfig, $form->{creditlimit} );
|
||
d319704a | Moritz Bunkus | |||
93a4e424 | Moritz Bunkus | my ( $query, $sth, $f_id );
|
||
992a539d | Moritz Bunkus | |||
93a4e424 | Moritz Bunkus | if ( $form->{id} ) {
|
||
$query = qq|SELECT id FROM customer WHERE customernumber = ?|;
|
||||
($f_id) = selectrow_query($form, $dbh, $query, $form->{customernumber});
|
||||
992a539d | Moritz Bunkus | |||
93a4e424 | Moritz Bunkus | if (($f_id ne $form->{id}) && ($f_id ne "")) {
|
||
992a539d | Moritz Bunkus | $main::lxdebug->leave_sub();
|
||
return 3;
|
||||
}
|
||||
d319704a | Moritz Bunkus | |||
} else {
|
||||
becda06d | Moritz Bunkus | my $customernumber = SL::TransNumber->new(type => 'customer',
|
||
dbh => $dbh,
|
||||
number => $form->{customernumber},
|
||||
business_id => $form->{business},
|
||||
save => 1);
|
||||
$form->{customernumber} = $customernumber->create_unique unless $customernumber->is_unique;
|
||||
d319704a | Moritz Bunkus | |||
93a4e424 | Moritz Bunkus | $query = qq|SELECT nextval('id')|;
|
||
($form->{id}) = selectrow_query($form, $dbh, $query);
|
||||
$query = qq|INSERT INTO customer (id, name) VALUES (?, '')|;
|
||||
do_query($form, $dbh, $query, $form->{id});
|
||||
}
|
||||
$query = qq|UPDATE customer SET | .
|
||||
qq|customernumber = ?, | .
|
||||
qq|name = ?, | .
|
||||
qq|greeting = ?, | .
|
||||
qq|department_1 = ?, | .
|
||||
qq|department_2 = ?, | .
|
||||
qq|street = ?, | .
|
||||
qq|zipcode = ?, | .
|
||||
qq|city = ?, | .
|
||||
qq|country = ?, | .
|
||||
qq|homepage = ?, | .
|
||||
qq|contact = ?, | .
|
||||
qq|phone = ?, | .
|
||||
qq|fax = ?, | .
|
||||
qq|email = ?, | .
|
||||
qq|cc = ?, | .
|
||||
qq|bcc = ?, | .
|
||||
qq|notes = ?, | .
|
||||
qq|discount = ?, | .
|
||||
qq|creditlimit = ?, | .
|
||||
qq|terms = ?, | .
|
||||
qq|business_id = ?, | .
|
||||
qq|taxnumber = ?, | .
|
||||
qq|language = ?, | .
|
||||
qq|account_number = ?, | .
|
||||
qq|bank_code = ?, | .
|
||||
qq|bank = ?, | .
|
||||
0ce1b04e | Geoffrey Richardson | qq|iban = ?, | .
|
||
qq|bic = ?, | .
|
||||
93a4e424 | Moritz Bunkus | qq|obsolete = ?, | .
|
||
ca12e8df | Holger Lindemann | qq|direct_debit = ?, | .
|
||
93a4e424 | Moritz Bunkus | qq|ustid = ?, | .
|
||
qq|username = ?, | .
|
||||
qq|salesman_id = ?, | .
|
||||
qq|language_id = ?, | .
|
||||
qq|payment_id = ?, | .
|
||||
qq|taxzone_id = ?, | .
|
||||
qq|user_password = ?, | .
|
||||
qq|c_vendor_id = ?, | .
|
||||
94802c79 | Bernd Bleßmann | qq|klass = ?, | .
|
||
7bff84cb | Thomas Heck | qq|curr = ?, | .
|
||
qq|taxincluded_checked = ? | .
|
||||
93a4e424 | Moritz Bunkus | qq|WHERE id = ?|;
|
||
my @values = (
|
||||
$form->{customernumber},
|
||||
$form->{name},
|
||||
$form->{greeting},
|
||||
$form->{department_1},
|
||||
$form->{department_2},
|
||||
$form->{street},
|
||||
$form->{zipcode},
|
||||
$form->{city},
|
||||
$form->{country},
|
||||
$form->{homepage},
|
||||
$form->{contact},
|
||||
$form->{phone},
|
||||
$form->{fax},
|
||||
$form->{email},
|
||||
$form->{cc},
|
||||
$form->{bcc},
|
||||
$form->{notes},
|
||||
$form->{discount},
|
||||
$form->{creditlimit},
|
||||
conv_i($form->{terms}),
|
||||
conv_i($form->{business}),
|
||||
$form->{taxnumber},
|
||||
$form->{language},
|
||||
$form->{account_number},
|
||||
$form->{bank_code},
|
||||
$form->{bank},
|
||||
0ce1b04e | Geoffrey Richardson | $form->{iban},
|
||
$form->{bic},
|
||||
93a4e424 | Moritz Bunkus | $form->{obsolete} ? 't' : 'f',
|
||
ca12e8df | Holger Lindemann | $form->{direct_debit} ? 't' : 'f',
|
||
93a4e424 | Moritz Bunkus | $form->{ustid},
|
||
$form->{username},
|
||||
conv_i($form->{salesman_id}),
|
||||
conv_i($form->{language_id}),
|
||||
conv_i($form->{payment_id}),
|
||||
67720424 | Moritz Bunkus | conv_i($form->{taxzone_id}, 0),
|
||
93a4e424 | Moritz Bunkus | $form->{user_password},
|
||
$form->{c_vendor_id},
|
||||
conv_i($form->{klass}),
|
||||
94802c79 | Bernd Bleßmann | substr($form->{currency}, 0, 3),
|
||
7f596996 | Thomas Heck | $form->{taxincluded_checked} ne '' ? $form->{taxincluded_checked} : undef,
|
||
93a4e424 | Moritz Bunkus | $form->{id}
|
||
);
|
||||
do_query( $form, $dbh, $query, @values );
|
||||
0aa294a4 | Moritz Bunkus | $form->{cp_id} = $self->_save_contact($form, $dbh);
|
||
93a4e424 | Moritz Bunkus | |||
d319704a | Moritz Bunkus | # add shipto
|
||
93a4e424 | Moritz Bunkus | $form->add_shipto( $dbh, $form->{id}, "CT" );
|
||
d319704a | Moritz Bunkus | |||
7a7f33b5 | Moritz Bunkus | $self->_save_note('dbh' => $dbh);
|
||
$self->_delete_selected_notes('dbh' => $dbh);
|
||||
8688e71e | Moritz Bunkus | CVar->save_custom_variables('dbh' => $dbh,
|
||
'module' => 'CT',
|
||||
'trans_id' => $form->{id},
|
||||
a5a7ff06 | Sven Schöling | 'variables' => $form,
|
||
'always_valid' => 1);
|
||||
77442185 | Sven Schöling | if ($form->{cp_id}) {
|
||
CVar->save_custom_variables('dbh' => $dbh,
|
||||
'module' => 'Contacts',
|
||||
'trans_id' => $form->{cp_id},
|
||||
'variables' => $form,
|
||||
'name_prefix' => 'cp',
|
||||
'always_valid' => 1);
|
||||
}
|
||||
8688e71e | Moritz Bunkus | |||
d744e4f2 | Sven Schöling | my $rc = $dbh->commit();
|
||
d319704a | Moritz Bunkus | |||
$main::lxdebug->leave_sub();
|
||||
2794f75f | Stephan Köhler | return $rc;
|
||
d319704a | Moritz Bunkus | }
|
||
sub save_vendor {
|
||||
$main::lxdebug->enter_sub();
|
||||
93a4e424 | Moritz Bunkus | my ( $self, $myconfig, $form ) = @_;
|
||
d319704a | Moritz Bunkus | |||
93a4e424 | Moritz Bunkus | $form->{taxzone_id} *= 1;
|
||
d319704a | Moritz Bunkus | # connect to database
|
||
727b4399 | Bernd Bleßmann | my $dbh = $form->get_standard_dbh;
|
||
93a4e424 | Moritz Bunkus | |||
map( {
|
||||
$form->{"cp_${_}"} = $form->{"selected_cp_${_}"}
|
||||
if ( $form->{"selected_cp_${_}"} );
|
||||
} qw(title greeting abteilung) );
|
||||
54e4131e | Moritz Bunkus | $form->{"greeting"} = $form->{"selected_company_greeting"}
|
||
93a4e424 | Moritz Bunkus | if ( $form->{"selected_company_greeting"} );
|
||
$form->{discount} = $form->parse_amount( $myconfig, $form->{discount} );
|
||||
d319704a | Moritz Bunkus | $form->{discount} /= 100;
|
||
93a4e424 | Moritz Bunkus | $form->{creditlimit} = $form->parse_amount( $myconfig, $form->{creditlimit} );
|
||
d319704a | Moritz Bunkus | |||
my $query;
|
||||
1b95831a | Moritz Bunkus | if (!$form->{id}) {
|
||
93a4e424 | Moritz Bunkus | $query = qq|SELECT nextval('id')|;
|
||
($form->{id}) = selectrow_query($form, $dbh, $query);
|
||||
d319704a | Moritz Bunkus | |||
93a4e424 | Moritz Bunkus | $query = qq|INSERT INTO vendor (id, name) VALUES (?, '')|;
|
||
do_query($form, $dbh, $query, $form->{id});
|
||||
d319704a | Moritz Bunkus | |||
becda06d | Moritz Bunkus | my $vendornumber = SL::TransNumber->new(type => 'vendor',
|
||
dbh => $dbh,
|
||||
number => $form->{vendornumber},
|
||||
save => 1);
|
||||
$form->{vendornumber} = $vendornumber->create_unique unless $vendornumber->is_unique;
|
||||
d319704a | Moritz Bunkus | }
|
||
93a4e424 | Moritz Bunkus | $query =
|
||
qq|UPDATE vendor SET | .
|
||||
qq| vendornumber = ?, | .
|
||||
qq| name = ?, | .
|
||||
qq| greeting = ?, | .
|
||||
qq| department_1 = ?, | .
|
||||
qq| department_2 = ?, | .
|
||||
qq| street = ?, | .
|
||||
qq| zipcode = ?, | .
|
||||
qq| city = ?, | .
|
||||
qq| country = ?, | .
|
||||
qq| homepage = ?, | .
|
||||
qq| contact = ?, | .
|
||||
qq| phone = ?, | .
|
||||
qq| fax = ?, | .
|
||||
qq| email = ?, | .
|
||||
qq| cc = ?, | .
|
||||
qq| bcc = ?, | .
|
||||
qq| notes = ?, | .
|
||||
qq| terms = ?, | .
|
||||
qq| discount = ?, | .
|
||||
qq| creditlimit = ?, | .
|
||||
qq| business_id = ?, | .
|
||||
qq| taxnumber = ?, | .
|
||||
qq| language = ?, | .
|
||||
qq| account_number = ?, | .
|
||||
qq| bank_code = ?, | .
|
||||
qq| bank = ?, | .
|
||||
0ce1b04e | Geoffrey Richardson | qq| iban = ?, | .
|
||
qq| bic = ?, | .
|
||||
93a4e424 | Moritz Bunkus | qq| obsolete = ?, | .
|
||
ca12e8df | Holger Lindemann | qq| direct_debit = ?, | .
|
||
93a4e424 | Moritz Bunkus | qq| ustid = ?, | .
|
||
qq| payment_id = ?, | .
|
||||
qq| taxzone_id = ?, | .
|
||||
qq| language_id = ?, | .
|
||||
qq| username = ?, | .
|
||||
qq| user_password = ?, | .
|
||||
94802c79 | Bernd Bleßmann | qq| v_customer_id = ?, | .
|
||
5249f40a | Thomas Heck | qq| curr = ? | .
|
||
93a4e424 | Moritz Bunkus | qq|WHERE id = ?|;
|
||
d744e4f2 | Sven Schöling | my @values = (
|
||
93a4e424 | Moritz Bunkus | $form->{vendornumber},
|
||
$form->{name},
|
||||
$form->{greeting},
|
||||
$form->{department_1},
|
||||
$form->{department_2},
|
||||
$form->{street},
|
||||
$form->{zipcode},
|
||||
$form->{city},
|
||||
$form->{country},
|
||||
$form->{homepage},
|
||||
$form->{contact},
|
||||
$form->{phone},
|
||||
$form->{fax},
|
||||
$form->{email},
|
||||
$form->{cc},
|
||||
$form->{bcc},
|
||||
$form->{notes},
|
||||
conv_i($form->{terms}),
|
||||
$form->{discount},
|
||||
$form->{creditlimit},
|
||||
conv_i($form->{business}),
|
||||
$form->{taxnumber},
|
||||
$form->{language},
|
||||
$form->{account_number},
|
||||
$form->{bank_code},
|
||||
$form->{bank},
|
||||
0ce1b04e | Geoffrey Richardson | $form->{iban},
|
||
$form->{bic},
|
||||
93a4e424 | Moritz Bunkus | $form->{obsolete} ? 't' : 'f',
|
||
ca12e8df | Holger Lindemann | $form->{direct_debit} ? 't' : 'f',
|
||
93a4e424 | Moritz Bunkus | $form->{ustid},
|
||
conv_i($form->{payment_id}),
|
||||
67720424 | Moritz Bunkus | conv_i($form->{taxzone_id}, 0),
|
||
93a4e424 | Moritz Bunkus | conv_i( $form->{language_id}),
|
||
$form->{username},
|
||||
$form->{user_password},
|
||||
0495d62b | Moritz Bunkus | $form->{v_customer_id},
|
||
94802c79 | Bernd Bleßmann | substr($form->{currency}, 0, 3),
|
||
93a4e424 | Moritz Bunkus | $form->{id}
|
||
);
|
||||
do_query($form, $dbh, $query, @values);
|
||||
0aa294a4 | Moritz Bunkus | $form->{cp_id} = $self->_save_contact($form, $dbh);
|
||
93a4e424 | Moritz Bunkus | |||
d319704a | Moritz Bunkus | # add shipto
|
||
93a4e424 | Moritz Bunkus | $form->add_shipto( $dbh, $form->{id}, "CT" );
|
||
d319704a | Moritz Bunkus | |||
7a7f33b5 | Moritz Bunkus | $self->_save_note('dbh' => $dbh);
|
||
$self->_delete_selected_notes('dbh' => $dbh);
|
||||
8688e71e | Moritz Bunkus | CVar->save_custom_variables('dbh' => $dbh,
|
||
'module' => 'CT',
|
||||
'trans_id' => $form->{id},
|
||||
a5a7ff06 | Sven Schöling | 'variables' => $form,
|
||
'always_valid' => 1);
|
||||
77442185 | Sven Schöling | if ($form->{cp_id}) {
|
||
CVar->save_custom_variables('dbh' => $dbh,
|
||||
'module' => 'Contacts',
|
||||
'trans_id' => $form->{cp_id},
|
||||
'variables' => $form,
|
||||
'name_prefix' => 'cp',
|
||||
'always_valid' => 1);
|
||||
}
|
||||
8688e71e | Moritz Bunkus | |||
d744e4f2 | Sven Schöling | my $rc = $dbh->commit();
|
||
d319704a | Moritz Bunkus | |||
$main::lxdebug->leave_sub();
|
||||
2794f75f | Stephan Köhler | return $rc;
|
||
d319704a | Moritz Bunkus | }
|
||
0aa294a4 | Moritz Bunkus | sub _save_contact {
|
||
my ($self, $form, $dbh) = @_;
|
||||
return undef unless $form->{cp_id} || $form->{cp_name} || $form->{cp_givenname};
|
||||
my @columns = qw(cp_title cp_givenname cp_name cp_email cp_phone1 cp_phone2 cp_abteilung cp_fax
|
||||
cp_mobile1 cp_mobile2 cp_satphone cp_satfax cp_project cp_privatphone cp_privatemail cp_birthday cp_gender
|
||||
604765d5 | Moritz Bunkus | cp_street cp_zipcode cp_city cp_position);
|
||
3ccf1a99 | Moritz Bunkus | my @values = map(
|
||
{
|
||||
if ( $_ eq 'cp_gender' ) {
|
||||
$form->{$_} eq 'f' ? 'f' : 'm';
|
||||
} elsif ( $_ eq 'cp_birthday' && $form->{cp_birthday} eq '' ) {
|
||||
undef;
|
||||
} else {
|
||||
$form->{$_};
|
||||
}
|
||||
}
|
||||
@columns
|
||||
);
|
||||
0aa294a4 | Moritz Bunkus | |||
my ($query, $cp_id);
|
||||
if ($form->{cp_id}) {
|
||||
$query = qq|UPDATE contacts SET | . join(', ', map { "${_} = ?" } @columns) . qq| WHERE cp_id = ?|;
|
||||
push @values, $form->{cp_id};
|
||||
$cp_id = $form->{cp_id};
|
||||
} else {
|
||||
($cp_id) = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
|
||||
$query = qq|INSERT INTO contacts (| . join(', ', @columns, 'cp_cv_id', 'cp_id') . qq|) VALUES (| . join(', ', ('?') x (2 + scalar @columns)) . qq|)|;
|
||||
push @values, $form->{id}, $cp_id;
|
||||
}
|
||||
do_query($form, $dbh, $query, @values);
|
||||
return $cp_id;
|
||||
}
|
||||
d319704a | Moritz Bunkus | sub delete {
|
||
$main::lxdebug->enter_sub();
|
||||
93a4e424 | Moritz Bunkus | my ( $self, $myconfig, $form ) = @_;
|
||
d319704a | Moritz Bunkus | # connect to database
|
||
my $dbh = $form->dbconnect($myconfig);
|
||||
# delete vendor
|
||||
93a4e424 | Moritz Bunkus | my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
|
||
my $query = qq|DELETE FROM $cv WHERE id = ?|;
|
||||
do_query($form, $dbh, $query, $form->{id});
|
||||
d319704a | Moritz Bunkus | |||
$dbh->disconnect;
|
||||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
sub search {
|
||||
$main::lxdebug->enter_sub();
|
||||
93a4e424 | Moritz Bunkus | my ( $self, $myconfig, $form ) = @_;
|
||
d319704a | Moritz Bunkus | |||
# connect to database
|
||||
my $dbh = $form->dbconnect($myconfig);
|
||||
93a4e424 | Moritz Bunkus | my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
|
||
09306b9f | Sven Schöling | my $join_records = $form->{l_invnumber} || $form->{l_ordnumber} || $form->{l_quonumber};
|
||
93a4e424 | Moritz Bunkus | |||
d319704a | Moritz Bunkus | my $where = "1 = 1";
|
||
93a4e424 | Moritz Bunkus | my @values;
|
||
d319704a | Moritz Bunkus | |||
e5e2493f | Geoffrey Richardson | my %allowed_sort_columns = (
|
||
"id" => "id",
|
||||
"customernumber" => "customernumber",
|
||||
"vendornumber" => "vendornumber",
|
||||
"name" => "ct.name",
|
||||
"contact" => "contact",
|
||||
"phone" => "phone",
|
||||
"fax" => "fax",
|
||||
"email" => "email",
|
||||
"street" => "street",
|
||||
"taxnumber" => "taxnumber",
|
||||
"business" => "business",
|
||||
"invnumber" => "invnumber",
|
||||
"ordnumber" => "ordnumber",
|
||||
"quonumber" => "quonumber",
|
||||
"zipcode" => "zipcode",
|
||||
"city" => "city",
|
||||
"country" => "country",
|
||||
"salesman" => "e.name"
|
||||
63e0f606 | Sven Schöling | );
|
||
e5e2493f | Geoffrey Richardson | |||
my $sortorder;
|
||||
if ( $join_records ) {
|
||||
# in UNION case order by hash key, e.g. salesman
|
||||
# the UNION created an implicit select around the result
|
||||
$sortorder = $form->{sort} && $allowed_sort_columns{$form->{sort}} ? $form->{sort} : "name";
|
||||
} else {
|
||||
# in not UNION case order by hash value, e.g. e.name
|
||||
$sortorder = $form->{sort} && $allowed_sort_columns{$form->{sort}} ? $allowed_sort_columns{$form->{sort}} : "ct.name";
|
||||
};
|
||||
b3673e83 | Moritz Bunkus | $form->{sort} = $sortorder;
|
||
a2aca2e1 | Moritz Bunkus | my $sortdir = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
|
||
1f14e3b9 | Moritz Bunkus | |||
09306b9f | Sven Schöling | if ($sortorder !~ /(business|id)/ && !$join_records) {
|
||
aa589686 | Moritz Bunkus | $sortorder = "lower($sortorder) ${sortdir}";
|
||
a2aca2e1 | Moritz Bunkus | } else {
|
||
$sortorder .= " ${sortdir}";
|
||||
1f14e3b9 | Moritz Bunkus | }
|
||
93a4e424 | Moritz Bunkus | |||
if ($form->{"${cv}number"}) {
|
||||
$where .= " AND ct.${cv}number ILIKE ?";
|
||||
push(@values, '%' . $form->{"${cv}number"} . '%');
|
||||
d319704a | Moritz Bunkus | }
|
||
93a4e424 | Moritz Bunkus | |||
foreach my $key (qw(name contact email)) {
|
||||
if ($form->{$key}) {
|
||||
$where .= " AND ct.$key ILIKE ?";
|
||||
push(@values, '%' . $form->{$key} . '%');
|
||||
}
|
||||
d319704a | Moritz Bunkus | }
|
||
87e190b4 | Geoffrey Richardson | if ($form->{cp_name}) {
|
||
$where .= " AND ct.id IN (SELECT cp_cv_id FROM contacts WHERE lower(cp_name) LIKE lower(?))";
|
||||
push @values, '%' . $form->{cp_name} . '%';
|
||||
}
|
||||
if ($form->{addr_city}) {
|
||||
$where .= " AND ((lower(ct.city) LIKE lower(?))
|
||||
OR
|
||||
(ct.id IN (
|
||||
SELECT trans_id
|
||||
FROM shipto
|
||||
WHERE (module = 'CT')
|
||||
AND (lower(shiptocity) LIKE lower(?))
|
||||
))
|
||||
)";
|
||||
push @values, ('%' . $form->{addr_city} . '%') x 2;
|
||||
}
|
||||
2def6461 | Geoffrey Richardson | if ($form->{addr_country}) {
|
||
$where .= " AND ((lower(ct.country) LIKE lower(?))
|
||||
OR
|
||||
(ct.id IN (
|
||||
SELECT trans_id
|
||||
FROM shipto
|
||||
WHERE (module = 'CT')
|
||||
AND (lower(shiptocountry) LIKE lower(?))
|
||||
))
|
||||
)";
|
||||
push @values, ('%' . $form->{addr_country} . '%') x 2;
|
||||
}
|
||||
93a4e424 | Moritz Bunkus | if ( $form->{status} eq 'orphaned' ) {
|
||
$where .=
|
||||
qq| AND ct.id NOT IN | .
|
||||
qq| (SELECT o.${cv}_id FROM oe o, $cv cv WHERE cv.id = o.${cv}_id)|;
|
||||
if ($cv eq 'customer') {
|
||||
$where .=
|
||||
qq| AND ct.id NOT IN | .
|
||||
qq| (SELECT a.customer_id FROM ar a, customer cv | .
|
||||
qq| WHERE cv.id = a.customer_id)|;
|
||||
d319704a | Moritz Bunkus | }
|
||
93a4e424 | Moritz Bunkus | if ($cv eq 'vendor') {
|
||
$where .=
|
||||
qq| AND ct.id NOT IN | .
|
||||
qq| (SELECT a.vendor_id FROM ap a, vendor cv | .
|
||||
qq| WHERE cv.id = a.vendor_id)|;
|
||||
d319704a | Moritz Bunkus | }
|
||
$form->{l_invnumber} = $form->{l_ordnumber} = $form->{l_quonumber} = "";
|
||||
2def6461 | Geoffrey Richardson | };
|
||
d319704a | Moritz Bunkus | |||
c7bffefd | Moritz Bunkus | if ($form->{obsolete} eq "Y") {
|
||
$where .= qq| AND obsolete|;
|
||||
} elsif ($form->{obsolete} eq "N") {
|
||||
$where .= qq| AND NOT obsolete|;
|
||||
}
|
||||
0c472ce6 | Moritz Bunkus | if ($form->{business_id}) {
|
||
$where .= qq| AND (business_id = ?)|;
|
||||
push(@values, conv_i($form->{business_id}));
|
||||
}
|
||||
4f50aaa5 | Jan Büren | # Nur Kunden finden, bei denen ich selber der Verkäufer bin
|
||
# Gilt nicht für Lieferanten
|
||||
if ($cv eq 'customer' && !$main::auth->assert('customer_vendor_all_edit', 1)) {
|
||||
$where .= qq| AND ct.salesman_id = (select id from employee where login= ?)|;
|
||||
push(@values, $form->{login});
|
||||
}
|
||||
8688e71e | Moritz Bunkus | my ($cvar_where, @cvar_values) = CVar->build_filter_query('module' => 'CT',
|
||
'trans_id_field' => 'ct.id',
|
||||
'filter' => $form);
|
||||
if ($cvar_where) {
|
||||
$where .= qq| AND ($cvar_where)|;
|
||||
push @values, @cvar_values;
|
||||
}
|
||||
4f19857e | Sven Schöling | |||
if ($form->{addr_street}) {
|
||||
$where .= qq| AND (street ILIKE ?)|;
|
||||
push @values, '%' . $form->{addr_street} . '%';
|
||||
}
|
||||
if ($form->{addr_zipcode}) {
|
||||
$where .= qq| AND (zipcode ILIKE ?)|;
|
||||
push @values, $form->{addr_zipcode} . '%';
|
||||
}
|
||||
93a4e424 | Moritz Bunkus | my $query =
|
||
2def6461 | Geoffrey Richardson | qq|SELECT ct.*, b.description AS business, e.name as salesman | .
|
||
09306b9f | Sven Schöling | (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) .
|
||
93a4e424 | Moritz Bunkus | qq|FROM $cv ct | .
|
||
qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
|
||||
2def6461 | Geoffrey Richardson | qq|LEFT JOIN employee e ON (ct.salesman_id = e.id) | .
|
||
93a4e424 | Moritz Bunkus | qq|WHERE $where|;
|
||
d319704a | Moritz Bunkus | |||
52c9a08d | Philip Reetz | my @saved_values = @values;
|
||
d319704a | Moritz Bunkus | # redo for invoices, orders and quotations
|
||
09306b9f | Sven Schöling | if ($join_records) {
|
||
my $union = "UNION";
|
||||
d319704a | Moritz Bunkus | |||
if ($form->{l_invnumber}) {
|
||||
93a4e424 | Moritz Bunkus | my $ar = $cv eq 'customer' ? 'ar' : 'ap';
|
||
my $module = $ar eq 'ar' ? 'is' : 'ir';
|
||||
09306b9f | Sven Schöling | push(@values, @saved_values);
|
||
$query .=
|
||||
qq| UNION | .
|
||||
2def6461 | Geoffrey Richardson | qq|SELECT ct.*, b.description AS business, e.name as salesman, | .
|
||
93a4e424 | Moritz Bunkus | qq| a.invnumber, a.ordnumber, a.quonumber, a.id AS invid, | .
|
||
qq| '$module' AS module, 'invoice' AS formtype, | .
|
||||
qq| (a.amount = a.paid) AS closed | .
|
||||
qq|FROM $cv ct | .
|
||||
qq|JOIN $ar a ON (a.${cv}_id = ct.id) | .
|
||||
qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
|
||||
2def6461 | Geoffrey Richardson | qq|LEFT JOIN employee e ON (ct.salesman_id = e.id) | .
|
||
93a4e424 | Moritz Bunkus | qq|WHERE $where AND (a.invoice = '1')|;
|
||
d319704a | Moritz Bunkus | }
|
||
93a4e424 | Moritz Bunkus | if ( $form->{l_ordnumber} ) {
|
||
09306b9f | Sven Schöling | push(@values, @saved_values);
|
||
93a4e424 | Moritz Bunkus | $query .=
|
||
09306b9f | Sven Schöling | qq| UNION | .
|
||
2def6461 | Geoffrey Richardson | qq|SELECT ct.*, b.description AS business, e.name as salesman, | .
|
||
93a4e424 | Moritz Bunkus | qq| ' ' AS invnumber, o.ordnumber, o.quonumber, o.id AS invid, | .
|
||
qq| 'oe' AS module, 'order' AS formtype, o.closed | .
|
||||
qq|FROM $cv ct | .
|
||||
qq|JOIN oe o ON (o.${cv}_id = ct.id) | .
|
||||
qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
|
||||
2def6461 | Geoffrey Richardson | qq|LEFT JOIN employee e ON (ct.salesman_id = e.id) | .
|
||
93a4e424 | Moritz Bunkus | qq|WHERE $where AND (o.quotation = '0')|;
|
||
d319704a | Moritz Bunkus | }
|
||
93a4e424 | Moritz Bunkus | if ( $form->{l_quonumber} ) {
|
||
09306b9f | Sven Schöling | push(@values, @saved_values);
|
||
93a4e424 | Moritz Bunkus | $query .=
|
||
09306b9f | Sven Schöling | qq| UNION | .
|
||
2def6461 | Geoffrey Richardson | qq|SELECT ct.*, b.description AS business, e.name as salesman, | .
|
||
93a4e424 | Moritz Bunkus | qq| ' ' AS invnumber, o.ordnumber, o.quonumber, o.id AS invid, | .
|
||
qq| 'oe' AS module, 'quotation' AS formtype, o.closed | .
|
||||
qq|FROM $cv ct | .
|
||||
qq|JOIN oe o ON (o.${cv}_id = ct.id) | .
|
||||
qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
|
||||
2def6461 | Geoffrey Richardson | qq|LEFT JOIN employee e ON (ct.salesman_id = e.id) | .
|
||
93a4e424 | Moritz Bunkus | qq|WHERE $where AND (o.quotation = '1')|;
|
||
d319704a | Moritz Bunkus | }
|
||
}
|
||||
93a4e424 | Moritz Bunkus | $query .= qq| ORDER BY $sortorder|;
|
||
e5e2493f | Geoffrey Richardson | |||
93a4e424 | Moritz Bunkus | $form->{CT} = selectall_hashref_query($form, $dbh, $query, @values);
|
||
d319704a | Moritz Bunkus | |||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
54e4131e | Moritz Bunkus | sub get_contact {
|
||
$main::lxdebug->enter_sub();
|
||||
93a4e424 | Moritz Bunkus | my ( $self, $myconfig, $form ) = @_;
|
||
5c1fb49c | Sven Schöling | |||
die 'Missing argument: cp_id' unless $::form->{cp_id};
|
||||
54e4131e | Moritz Bunkus | my $dbh = $form->dbconnect($myconfig);
|
||
93a4e424 | Moritz Bunkus | my $query =
|
||
qq|SELECT * FROM contacts c | .
|
||||
qq|WHERE cp_id = ? ORDER BY cp_id limit 1|;
|
||||
my $sth = prepare_execute_query($form, $dbh, $query, $form->{cp_id});
|
||||
d744e4f2 | Sven Schöling | my $ref = $sth->fetchrow_hashref("NAME_lc");
|
||
54e4131e | Moritz Bunkus | |||
map { $form->{$_} = $ref->{$_} } keys %$ref;
|
||||
6c1536aa | Sven Schöling | $query = qq|SELECT COUNT(cp_id) AS used FROM (
|
||
SELECT cp_id FROM oe UNION
|
||||
SELECT cp_id FROM ar UNION
|
||||
SELECT cp_id FROM ap UNION
|
||||
SELECT cp_id FROM delivery_orders
|
||||
) AS cpid WHERE cp_id = ? OR ? = 0|;
|
||||
($form->{cp_used}) = selectfirst_array_query($form, $dbh, $query, ($form->{cp_id})x2);
|
||||
54e4131e | Moritz Bunkus | $sth->finish;
|
||
$dbh->disconnect;
|
||||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
sub get_shipto {
|
||||
$main::lxdebug->enter_sub();
|
||||
93a4e424 | Moritz Bunkus | my ( $self, $myconfig, $form ) = @_;
|
||
54e4131e | Moritz Bunkus | my $dbh = $form->dbconnect($myconfig);
|
||
93a4e424 | Moritz Bunkus | my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
|
||
my $sth = prepare_execute_query($form, $dbh, $query, $form->{shipto_id});
|
||||
54e4131e | Moritz Bunkus | |||
d744e4f2 | Sven Schöling | my $ref = $sth->fetchrow_hashref("NAME_lc");
|
||
54e4131e | Moritz Bunkus | |||
map { $form->{$_} = $ref->{$_} } keys %$ref;
|
||||
245b0322 | Sven Schöling | $query = qq|SELECT COUNT(shipto_id) AS used FROM (
|
||
SELECT shipto_id FROM oe UNION
|
||||
SELECT shipto_id FROM ar UNION
|
||||
SELECT shipto_id FROM delivery_orders
|
||||
) AS stid WHERE shipto_id = ? OR ? = 0|;
|
||||
($form->{shiptoused}) = selectfirst_array_query($form, $dbh, $query, ($form->{shipto_id})x2);
|
||||
54e4131e | Moritz Bunkus | $sth->finish;
|
||
$dbh->disconnect;
|
||||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
sub get_delivery {
|
||||
$main::lxdebug->enter_sub();
|
||||
93a4e424 | Moritz Bunkus | my ( $self, $myconfig, $form ) = @_;
|
||
my $dbh = $form->dbconnect($myconfig);
|
||||
baa90105 | Holger Lindemann | |||
93a4e424 | Moritz Bunkus | my $arap = $form->{db} eq "vendor" ? "ap" : "ar";
|
||
my $db = $form->{db} eq "customer" ? "customer" : "vendor";
|
||||
4efe2175 | Sven Schöling | my $qty_sign = $form->{db} eq 'vendor' ? ' * -1 AS qty' : '';
|
||
93a4e424 | Moritz Bunkus | |||
my $where = " WHERE 1=1 ";
|
||||
my @values;
|
||||
if ($form->{shipto_id} && ($arap eq "ar")) {
|
||||
$where .= "AND ${arap}.shipto_id = ?";
|
||||
push(@values, $form->{shipto_id});
|
||||
baa90105 | Holger Lindemann | } else {
|
||
93a4e424 | Moritz Bunkus | $where .= "AND ${arap}.${db}_id = ?";
|
||
push(@values, $form->{id});
|
||||
54e4131e | Moritz Bunkus | }
|
||
93a4e424 | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | if ($form->{from}) {
|
||
93a4e424 | Moritz Bunkus | $where .= "AND ${arap}.transdate >= ?";
|
||
push(@values, conv_date($form->{from}));
|
||||
54e4131e | Moritz Bunkus | }
|
||
if ($form->{to}) {
|
||||
93a4e424 | Moritz Bunkus | $where .= "AND ${arap}.transdate <= ?";
|
||
push(@values, conv_date($form->{to}));
|
||||
}
|
||||
my $query =
|
||||
4efe2175 | Sven Schöling | qq|SELECT s.shiptoname, i.qty $qty_sign, | .
|
||
88e16972 | Sven Schöling | qq| ${arap}.id, ${arap}.transdate, ${arap}.invnumber, ${arap}.ordnumber, | .
|
||
qq| i.description, i.unit, i.sellprice, | .
|
||||
052dbdbe | Sven Schöling | qq| oe.id AS oe_id, invoice | .
|
||
93a4e424 | Moritz Bunkus | qq|FROM $arap | .
|
||
qq|LEFT JOIN shipto s ON | .
|
||||
($arap eq "ar"
|
||||
? qq|(ar.shipto_id = s.shipto_id) |
|
||||
: qq|(ap.id = s.trans_id) |) .
|
||||
qq|LEFT JOIN invoice i ON (${arap}.id = i.trans_id) | .
|
||||
qq|LEFT join parts p ON (p.id = i.parts_id) | .
|
||||
88e16972 | Sven Schöling | qq|LEFT JOIN oe ON (oe.ordnumber = ${arap}.ordnumber AND NOT ${arap}.ordnumber = '') | .
|
||
93a4e424 | Moritz Bunkus | $where .
|
||
qq|ORDER BY ${arap}.transdate DESC LIMIT 15|;
|
||||
$form->{DELIVERY} = selectall_hashref_query($form, $dbh, $query, @values);
|
||||
54e4131e | Moritz Bunkus | |||
$dbh->disconnect;
|
||||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
7a7f33b5 | Moritz Bunkus | sub _save_note {
|
||
$main::lxdebug->enter_sub();
|
||||
my $self = shift;
|
||||
my %params = @_;
|
||||
my $form = $main::form;
|
||||
Common::check_params(\%params, 'dbh');
|
||||
if (!$form->{NOTE_subject}) {
|
||||
$main::lxdebug->leave_sub();
|
||||
return;
|
||||
}
|
||||
my $dbh = $params{dbh};
|
||||
my %follow_up;
|
||||
my %note = (
|
||||
'id' => $form->{NOTE_id},
|
||||
'subject' => $form->{NOTE_subject},
|
||||
'body' => $form->{NOTE_body},
|
||||
'trans_id' => $form->{id},
|
||||
'trans_module' => 'ct',
|
||||
);
|
||||
$note{id} = Notes->save(%note);
|
||||
if ($form->{FU_date}) {
|
||||
%follow_up = (
|
||||
'id' => $form->{FU_id},
|
||||
'note_id' => $note{id},
|
||||
'follow_up_date' => $form->{FU_date},
|
||||
'created_for_user' => $form->{FU_created_for_user},
|
||||
'done' => $form->{FU_done} ? 1 : 0,
|
||||
'subject' => $form->{NOTE_subject},
|
||||
'body' => $form->{NOTE_body},
|
||||
'LINKS' => [
|
||||
{
|
||||
'trans_id' => $form->{id},
|
||||
'trans_type' => $form->{db} eq 'customer' ? 'customer' : 'vendor',
|
||||
'trans_info' => $form->{name},
|
||||
},
|
||||
],
|
||||
);
|
||||
$follow_up{id} = FU->save(%follow_up);
|
||||
} elsif ($form->{FU_id}) {
|
||||
do_query($form, $dbh, qq|DELETE FROM follow_up_links WHERE follow_up_id = ?|, conv_i($form->{FU_id}));
|
||||
do_query($form, $dbh, qq|DELETE FROM follow_ups WHERE id = ?|, conv_i($form->{FU_id}));
|
||||
}
|
||||
delete @{$form}{grep { /^NOTE_|^FU_/ } keys %{ $form }};
|
||||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
sub _delete_selected_notes {
|
||||
$main::lxdebug->enter_sub();
|
||||
my $self = shift;
|
||||
my %params = @_;
|
||||
Common::check_params(\%params, 'dbh');
|
||||
my $form = $main::form;
|
||||
my $dbh = $params{dbh};
|
||||
foreach my $i (1 .. $form->{NOTES_rowcount}) {
|
||||
next unless ($form->{"NOTE_delete_$i"} && $form->{"NOTE_id_$i"});
|
||||
Notes->delete('dbh' => $params{dbh},
|
||||
'id' => $form->{"NOTE_id_$i"});
|
||||
}
|
||||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
e73aa5f9 | Sven Schöling | # TODO: remove in 2.7.0 stable
|
||
6c1536aa | Sven Schöling | sub delete_shipto {
|
||
$main::lxdebug->enter_sub();
|
||||
my $self = shift;
|
||||
my $shipto_id = shift;
|
||||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $dbh = $form->get_standard_dbh(\%myconfig);
|
||||
94d6b5f9 | Geoffrey Richardson | do_query($form, $dbh, qq|UPDATE shipto SET trans_id = NULL WHERE shipto_id = ?|, $shipto_id);
|
||
$dbh->commit();
|
||||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
2869285b | Sven Schöling | # TODO: remove in 2.7.0 stable
|
||
94d6b5f9 | Geoffrey Richardson | sub delete_contact {
|
||
$main::lxdebug->enter_sub();
|
||||
my $self = shift;
|
||||
my $cp_id = shift;
|
||||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $dbh = $form->get_standard_dbh(\%myconfig);
|
||||
do_query($form, $dbh, qq|UPDATE contacts SET cp_cv_id = NULL WHERE cp_id = ?|, $cp_id);
|
||||
6c1536aa | Sven Schöling | |||
$dbh->commit();
|
||||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
0ce1b04e | Geoffrey Richardson | sub get_bank_info {
|
||
$main::lxdebug->enter_sub();
|
||||
my $self = shift;
|
||||
my %params = @_;
|
||||
Common::check_params(\%params, qw(vc id));
|
||||
my $myconfig = \%main::myconfig;
|
||||
my $form = $main::form;
|
||||
my $dbh = $params{dbh} || $form->get_standard_dbh($myconfig);
|
||||
my $table = $params{vc} eq 'customer' ? 'customer' : 'vendor';
|
||||
my @ids = ref $params{id} eq 'ARRAY' ? @{ $params{id} } : ($params{id});
|
||||
9e159031 | Sven Schöling | my $placeholders = join ", ", ('?') x scalar @ids;
|
||
0ce1b04e | Geoffrey Richardson | my $query = qq|SELECT id, name, account_number, bank, bank_code, iban, bic
|
||
FROM ${table}
|
||||
WHERE id IN (${placeholders})|;
|
||||
my $result = selectall_hashref_query($form, $dbh, $query, map { conv_i($_) } @ids);
|
||||
if (ref $params{id} eq 'ARRAY') {
|
||||
$result = { map { $_->{id} => $_ } @{ $result } };
|
||||
} else {
|
||||
$result = $result->[0] || { 'id' => $params{id} };
|
||||
}
|
||||
$main::lxdebug->leave_sub();
|
||||
return $result;
|
||||
}
|
||||
90815a31 | Joachim Zach | sub parse_excel_file {
|
||
$main::lxdebug->enter_sub();
|
||||
my ($self, $myconfig, $form) = @_;
|
||||
my $locale = $main::locale;
|
||||
$form->{formname} = 'sales_quotation';
|
||||
$form->{type} = 'sales_quotation';
|
||||
$form->{format} = 'excel';
|
||||
$form->{media} = 'screen';
|
||||
$form->{quonumber} = 1;
|
||||
# $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
|
||||
$form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
|
||||
my $inv = "quo";
|
||||
my $due = "req";
|
||||
$form->{"${inv}date"} = $form->{transdate};
|
||||
$form->{label} = $locale->text('Quotation');
|
||||
my $numberfld = "sqnumber";
|
||||
my $order = 1;
|
||||
# assign number
|
||||
$form->{what_done} = $form->{formname};
|
||||
map({ delete($form->{$_}); } grep(/^cp_/, keys(%{ $form })));
|
||||
my $output_dateformat = $myconfig->{"dateformat"};
|
||||
my $output_numberformat = $myconfig->{"numberformat"};
|
||||
my $output_longdates = 1;
|
||||
# map login user variables
|
||||
map { $form->{"login_$_"} = $myconfig->{$_} } ("name", "email", "fax", "tel", "company");
|
||||
# format item dates
|
||||
for my $field (qw(transdate_oe deliverydate_oe)) {
|
||||
map {
|
||||
$form->{$field}[$_] = $locale->date($myconfig, $form->{$field}[$_], 1);
|
||||
} 0 .. $#{ $form->{$field} };
|
||||
}
|
||||
if ($form->{shipto_id}) {
|
||||
$form->get_shipto($myconfig);
|
||||
}
|
||||
$form->{notes} =~ s/^\s+//g;
|
||||
$form->{templates} = $myconfig->{templates};
|
||||
delete $form->{printer_command};
|
||||
$form->get_employee_info($myconfig);
|
||||
my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
|
||||
if (scalar @{ $cvar_date_fields }) {
|
||||
format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
|
||||
}
|
||||
while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
|
||||
reformat_numbers($output_numberformat, $precision, @{ $field_list });
|
||||
}
|
||||
$form->{excel} = 1;
|
||||
my $extension = 'xls';
|
||||
7ee0b1dc | Sven Schöling | $form->{IN} = "$form->{formname}.${extension}";
|
||
90815a31 | Joachim Zach | |||
delete $form->{OUT};
|
||||
8cd05ad6 | Moritz Bunkus | $form->parse_template($myconfig);
|
||
90815a31 | Joachim Zach | |||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
4070dbf3 | Sven Schöling | sub search_contacts {
|
||
$::lxdebug->enter_sub;
|
||||
my $self = shift;
|
||||
my %params = @_;
|
||||
my $dbh = $params{dbh} || $::form->get_standard_dbh;
|
||||
my $vc = $params{db} eq 'customer' ? 'customer' : 'vendor';
|
||||
my %sortspecs = (
|
||||
'cp_name' => 'cp_name, cp_givenname',
|
||||
'vcname' => 'vcname, cp_name, cp_givenname',
|
||||
'vcnumber' => 'vcnumber, cp_name, cp_givenname',
|
||||
);
|
||||
604765d5 | Moritz Bunkus | my %sortcols = map { $_ => 1 } qw(cp_name cp_givenname cp_phone1 cp_phone2 cp_mobile1 cp_email cp_street cp_zipcode cp_city cp_position vcname vcnumber);
|
||
4070dbf3 | Sven Schöling | |||
my $order_by = $sortcols{$::form->{sort}} ? $::form->{sort} : 'cp_name';
|
||||
$::form->{sort} = $order_by;
|
||||
$order_by = $sortspecs{$order_by} if ($sortspecs{$order_by});
|
||||
my $sortdir = $::form->{sortdir} ? 'ASC' : 'DESC';
|
||||
$order_by =~ s/,/ ${sortdir},/g;
|
||||
$order_by .= " $sortdir";
|
||||
my @where_tokens = ();
|
||||
my @values;
|
||||
if ($params{search_term}) {
|
||||
my @tokens;
|
||||
push @tokens,
|
||||
'cp.cp_name ILIKE ?',
|
||||
'cp.cp_givenname ILIKE ?',
|
||||
'cp.cp_email ILIKE ?';
|
||||
push @values, ('%' . $params{search_term} . '%') x 3;
|
||||
if (($params{search_term} =~ m/\d/) && ($params{search_term} !~ m/[^\d \(\)+\-]/)) {
|
||||
my $number = $params{search_term};
|
||||
$number =~ s/[^\d]//g;
|
||||
$number = join '[ /\(\)+\-]*', split(m//, $number);
|
||||
push @tokens, map { "($_ ~ '$number')" } qw(cp_phone1 cp_phone2 cp_mobile1 cp_mobile2);
|
||||
}
|
||||
push @where_tokens, map { "($_)" } join ' OR ', @tokens;
|
||||
}
|
||||
cc78d935 | Sven Schöling | my ($cvar_where, @cvar_values) = CVar->build_filter_query('module' => 'Contacts',
|
||
'trans_id_field' => 'cp.cp_id',
|
||||
'filter' => $params{filter});
|
||||
if ($cvar_where) {
|
||||
push @where_tokens, $cvar_where;
|
||||
push @values, @cvar_values;
|
||||
}
|
||||
4070dbf3 | Sven Schöling | if (my $filter = $params{filter}) {
|
||
for (qw(name title givenname email project abteilung)) {
|
||||
next unless $filter->{"cp_$_"};
|
||||
add_token(\@where_tokens, \@values, col => "cp.cp_$_", val => $filter->{"cp_$_"}, method => 'ILIKE', esc => 'substr');
|
||||
}
|
||||
push @where_tokens, 'cp.cp_cv_id IS NOT NULL' if $filter->{status} eq 'active';
|
||||
push @where_tokens, 'cp.cp_cv_id IS NULL' if $filter->{status} eq 'orphaned';
|
||||
}
|
||||
my $where = @where_tokens ? 'WHERE ' . join ' AND ', @where_tokens : '';
|
||||
my $query = qq|SELECT cp.*,
|
||||
COALESCE(c.id, v.id) AS vcid,
|
||||
COALESCE(c.name, v.name) AS vcname,
|
||||
COALESCE(c.customernumber, v.vendornumber) AS vcnumber,
|
||||
CASE WHEN c.name IS NULL THEN 'vendor' ELSE 'customer' END AS db
|
||||
FROM contacts cp
|
||||
LEFT JOIN customer c ON (cp.cp_cv_id = c.id)
|
||||
LEFT JOIN vendor v ON (cp.cp_cv_id = v.id)
|
||||
$where
|
||||
ORDER BY $order_by|;
|
||||
my $contacts = selectall_hashref_query($::form, $dbh, $query, @values);
|
||||
$::lxdebug->leave_sub;
|
||||
return @{ $contacts };
|
||||
}
|
||||
d319704a | Moritz Bunkus | 1;
|