Zwei neue Features:
[kivitendo-erp.git] / SL / CT.pm
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 2001
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #  Contributors:
16 #
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.
21 #
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 #======================================================================
30 #
31 # backend code for customers and vendors
32 #
33 # CHANGE LOG:
34 #   DS. 2000-07-04  Created
35 #
36 #======================================================================
37
38 package CT;
39
40 use Data::Dumper;
41
42 use SL::Common;
43 use SL::CVar;
44 use SL::DBUtils;
45 use SL::FU;
46 use SL::Notes;
47
48 sub get_tuple {
49   $main::lxdebug->enter_sub();
50
51   my ( $self, $myconfig, $form ) = @_;
52
53   my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
54
55   my $dbh   = $form->dbconnect($myconfig);
56   my $query =
57     qq|SELECT ct.*, b.id AS business, cp.* | .
58     qq|FROM $cv ct | .
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});
64
65   my $ref = $sth->fetchrow_hashref(NAME_lc);
66
67   map { $form->{$_} = $ref->{$_} } keys %$ref;
68
69   $sth->finish;
70   if ( $form->{salesman_id} ) {
71     my $query =
72       qq|SELECT ct.name AS salesman | .
73       qq|FROM $cv ct | .
74       qq|WHERE ct.id = ?|;
75     ($form->{salesman}) =
76       selectrow_query($form, $dbh, $query, $form->{salesman_id});
77   }
78
79   my ($employee_id) = selectrow_query($form, $dbh, qq|SELECT id FROM employee WHERE login = ?|, $form->{login});
80   $query =
81     qq|SELECT n.*, n.itime::DATE AS created_on,
82          e.name AS created_by_name, e.login AS created_by_login
83        FROM notes n
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}));
87
88   $query =
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
90        FROM follow_ups fu
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);
97
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();
101
102     map { $note->{$_} = $ref->{$_} } keys %{ $ref } if ($ref);
103   }
104
105   $sth->finish();
106
107   if ($form->{edit_note_id}) {
108     $query =
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
111          FROM notes n
112          LEFT JOIN follow_ups fu ON ((n.id = fu.note_id) AND NOT COALESCE(fu.done, FALSE))
113          WHERE n.id = ?|;
114     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{edit_note_id}));
115
116     if ($ref) {
117       foreach my $key (keys %{ $ref }) {
118         my $new_key       =  $key;
119         $new_key          =~ s/^([^_]+)/\U\1\E/;
120         $form->{$new_key} =  $ref->{$key};
121       }
122     }
123   }
124
125   # check if it is orphaned
126   my $arap = ( $form->{db} eq 'customer' ) ? "ar" : "ap";
127   $query =
128     qq|SELECT a.id | .
129     qq|FROM $arap a | .
130     qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
131     qq|WHERE ct.id = ? | .
132     qq|UNION | .
133     qq|SELECT a.id | .
134     qq|FROM oe a | .
135     qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
136     qq|WHERE ct.id = ?|;
137   my ($dummy) = selectrow_query($form, $dbh, $query, $form->{id}, $form->{id});
138   $form->{status} = "orphaned" unless ($dummy);
139
140   $dbh->disconnect;
141
142   $main::lxdebug->leave_sub();
143 }
144
145 sub populate_drop_down_boxes {
146   $main::lxdebug->enter_sub();
147
148   my ($self, $myconfig, $form, $provided_dbh) = @_;
149
150   my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect($myconfig);
151
152   # get business types
153   $query = qq|SELECT id, description FROM business ORDER BY id|;
154   $form->{all_business} = selectall_hashref_query($form, $dbh, $query);
155
156   # get shipto address
157   $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});
161
162   # get contacts
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});
165
166   # get languages
167   $query = qq|SELECT id, description FROM language ORDER BY id|;
168   $form->{languages} = selectall_hashref_query($form, $dbh, $query);
169
170   # get payment terms
171   $query = qq|SELECT id, description FROM payment_terms ORDER BY sortkey|;
172   $form->{payment_terms} = selectall_hashref_query($form, $dbh, $query);
173
174   $dbh->disconnect() unless ($provided_dbh);
175
176   $main::lxdebug->leave_sub();
177 }
178
179 sub query_titles_and_greetings {
180   $main::lxdebug->enter_sub();
181
182   my ( $self, $myconfig, $form ) = @_;
183   my ( %tmp,  $ref );
184
185   my $dbh = $form->dbconnect($myconfig);
186
187   $query =
188     qq|SELECT DISTINCT(cp_greeting) | .
189     qq|FROM contacts | .
190     qq|WHERE cp_greeting ~ '[a-zA-Z]' | .
191     qq|ORDER BY cp_greeting|;
192   $form->{GREETINGS} = [ selectall_array_query($form, $dbh, $query) ];
193
194   $query =
195     qq|SELECT DISTINCT(greeting) | .
196     qq|FROM customer | .
197     qq|WHERE greeting ~ '[a-zA-Z]' | .
198     qq|UNION | .
199     qq|SELECT DISTINCT(greeting) | .
200     qq|FROM vendor | .
201     qq|WHERE greeting ~ '[a-zA-Z]' | .
202     qq|ORDER BY greeting|;
203   my %tmp;
204   map({ $tmp{$_} = 1; } selectall_array_query($form, $dbh, $query));
205   $form->{COMPANY_GREETINGS} = [ sort(keys(%tmp)) ];
206
207   $query =
208     qq|SELECT DISTINCT(cp_title) | .
209     qq|FROM contacts | .
210     qq|WHERE cp_title ~ '[a-zA-Z]'|;
211   $form->{TITLES} = [ selectall_array_query($form, $dbh, $query) ];
212
213   $query =
214     qq|SELECT DISTINCT(cp_abteilung) | .
215     qq|FROM contacts | .
216     qq|WHERE cp_abteilung ~ '[a-zA-Z]'|;
217   $form->{DEPARTMENT} = [ selectall_array_query($form, $dbh, $query) ];
218
219   $dbh->disconnect();
220   $main::lxdebug->leave_sub();
221 }
222
223 sub save_customer {
224   $main::lxdebug->enter_sub();
225
226   my ( $self, $myconfig, $form ) = @_;
227
228   # set pricegroup to default
229   $form->{klass} = 0 unless ($form->{klass});
230
231   # connect to database
232   my $dbh = $form->dbconnect_noauto($myconfig);
233
234   map( {
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"} );
240
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} );
245
246   my ( $query, $sth, $f_id );
247
248   if ( $form->{id} ) {
249     $query = qq|SELECT id FROM customer WHERE customernumber = ?|;
250     ($f_id) = selectrow_query($form, $dbh, $query, $form->{customernumber});
251
252     if (($f_id ne $form->{id}) && ($f_id ne "")) {
253       $main::lxdebug->leave_sub();
254       return 3;
255     }
256
257   } else {
258     if (!$form->{customernumber} && $form->{business}) {
259       $form->{customernumber} =
260         $form->update_business($myconfig, $form->{business}, $dbh);
261     }
262     if (!$form->{customernumber}) {
263       $form->{customernumber} =
264         $form->update_defaults($myconfig, "customernumber", $dbh);
265     }
266
267     $query  = qq|SELECT c.id FROM customer c WHERE c.customernumber = ?|;
268     ($f_id) = selectrow_query($form, $dbh, $query, $form->{customernumber});
269     if ($f_id ne "") {
270       $main::lxdebug->leave_sub();
271       return 3;
272     }
273
274     $query = qq|SELECT nextval('id')|;
275     ($form->{id}) = selectrow_query($form, $dbh, $query);
276
277     $query = qq|INSERT INTO customer (id, name) VALUES (?, '')|;
278     do_query($form, $dbh, $query, $form->{id});
279   }
280
281   $query = qq|UPDATE customer SET | .
282     qq|customernumber = ?, | .
283     qq|name = ?, | .
284     qq|greeting = ?, | .
285     qq|department_1 = ?, | .
286     qq|department_2 = ?, | .
287     qq|street = ?, | .
288     qq|zipcode = ?, | .
289     qq|city = ?, | .
290     qq|country = ?, | .
291     qq|homepage = ?, | .
292     qq|contact = ?, | .
293     qq|phone = ?, | .
294     qq|fax = ?, | .
295     qq|email = ?, | .
296     qq|cc = ?, | .
297     qq|bcc = ?, | .
298     qq|notes = ?, | .
299     qq|discount = ?, | .
300     qq|creditlimit = ?, | .
301     qq|terms = ?, | .
302     qq|business_id = ?, | .
303     qq|taxnumber = ?, | .
304     qq|sic_code = ?, | .
305     qq|language = ?, | .
306     qq|account_number = ?, | .
307     qq|bank_code = ?, | .
308     qq|bank = ?, | .
309     qq|obsolete = ?, | .
310     qq|ustid = ?, | .
311     qq|username = ?, | .
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 = ?, | .
318     qq|klass = ? | .
319     qq|WHERE id = ?|;
320   my @values = (
321     $form->{customernumber},
322     $form->{name},
323     $form->{greeting},
324     $form->{department_1},
325     $form->{department_2},
326     $form->{street},
327     $form->{zipcode},
328     $form->{city},
329     $form->{country},
330     $form->{homepage},
331     $form->{contact},
332     $form->{phone},
333     $form->{fax},
334     $form->{email},
335     $form->{cc},
336     $form->{bcc},
337     $form->{notes},
338     $form->{discount},
339     $form->{creditlimit},
340     conv_i($form->{terms}),
341     conv_i($form->{business}),
342     $form->{taxnumber},
343     $form->{sic},
344     $form->{language},
345     $form->{account_number},
346     $form->{bank_code},
347     $form->{bank},
348     $form->{obsolete} ? 't' : 'f',
349     $form->{ustid},
350     $form->{username},
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}),
358     $form->{id}
359     );
360   do_query( $form, $dbh, $query, @values );
361
362   $query = undef;
363   if ( $form->{cp_id} ) {
364     $query = qq|UPDATE contacts SET | .
365       qq|cp_greeting = ?, | .
366       qq|cp_title = ?,  | .
367       qq|cp_givenname = ?, | .
368       qq|cp_name = ?, | .
369       qq|cp_email = ?, | .
370       qq|cp_phone1 = ?, | .
371       qq|cp_phone2 = ?, | .
372       qq|cp_abteilung = ?, | .
373       qq|cp_fax = ?, | .
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 = ? | .
382       qq|WHERE cp_id = ?|;
383     @values = (
384       $form->{cp_greeting},
385       $form->{cp_title},
386       $form->{cp_givenname},
387       $form->{cp_name},
388       $form->{cp_email},
389       $form->{cp_phone1},
390       $form->{cp_phone2},
391       $form->{cp_abteilung},
392       $form->{cp_fax},
393       $form->{cp_mobile1},
394       $form->{cp_mobile2},
395       $form->{cp_satphone},
396       $form->{cp_satfax},
397       $form->{cp_project},
398       $form->{cp_privatphone},
399       $form->{cp_privatemail},
400       $form->{cp_birthday},
401       $form->{cp_id}
402       );
403   } elsif ( $form->{cp_name} || $form->{cp_givenname} ) {
404     $query =
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, | .
408       qq|  cp_birthday) | .
409       qq|VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
410     @values = (
411       $form->{id},
412       $form->{cp_greeting},
413       $form->{cp_title},
414       $form->{cp_givenname},
415       $form->{cp_name},
416       $form->{cp_email},
417       $form->{cp_phone1},
418       $form->{cp_phone2},
419       $form->{cp_abteilung},
420       $form->{cp_fax},
421       $form->{cp_mobile1},
422       $form->{cp_mobile2},
423       $form->{cp_satphone},
424       $form->{cp_satfax},
425       $form->{cp_project},
426       $form->{cp_privatphone},
427       $form->{cp_privatemail},
428       $form->{cp_birthday}
429       );
430   }
431   do_query( $form, $dbh, $query, @values ) if ($query);
432
433   # add shipto
434   $form->add_shipto( $dbh, $form->{id}, "CT" );
435
436   $self->_save_note('dbh' => $dbh);
437   $self->_delete_selected_notes('dbh' => $dbh);
438
439   CVar->save_custom_variables('dbh'       => $dbh,
440                               'module'    => 'CT',
441                               'trans_id'  => $form->{id},
442                               'variables' => $form);
443
444   $rc = $dbh->commit();
445   $dbh->disconnect();
446
447   $main::lxdebug->leave_sub();
448   return $rc;
449 }
450
451 sub save_vendor {
452   $main::lxdebug->enter_sub();
453
454   my ( $self, $myconfig, $form ) = @_;
455
456   $form->{taxzone_id} *= 1;
457   # connect to database
458   my $dbh = $form->dbconnect_noauto($myconfig);
459
460   map( {
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"} );
466
467   $form->{discount} = $form->parse_amount( $myconfig, $form->{discount} );
468   $form->{discount} /= 100;
469   $form->{creditlimit} = $form->parse_amount( $myconfig, $form->{creditlimit} );
470
471   my $query;
472
473   if ( $form->{id} ) {
474     $query = qq|DELETE FROM shipto WHERE (trans_id = ?) AND (module = 'CT')|;
475     do_query($form, $dbh, $query, $form->{id});
476
477   } else {
478     $query = qq|SELECT nextval('id')|;
479     ($form->{id}) = selectrow_query($form, $dbh, $query);
480
481     $query = qq|INSERT INTO vendor (id, name) VALUES (?, '')|;
482     do_query($form, $dbh, $query, $form->{id});
483
484     if ( !$form->{vendornumber} ) {
485       $form->{vendornumber} = $form->update_defaults( $myconfig, "vendornumber", $dbh );
486     }
487   }
488
489   $query =
490     qq|UPDATE vendor SET | .
491     qq|  vendornumber = ?, | .
492     qq|  name = ?, | .
493     qq|  greeting = ?, | .
494     qq|  department_1 = ?, | .
495     qq|  department_2 = ?, | .
496     qq|  street = ?, | .
497     qq|  zipcode = ?, | .
498     qq|  city = ?, | .
499     qq|  country = ?, | .
500     qq|  homepage = ?, | .
501     qq|  contact = ?, | .
502     qq|  phone = ?, | .
503     qq|  fax = ?, | .
504     qq|  email = ?, | .
505     qq|  cc = ?, | .
506     qq|  bcc = ?, | .
507     qq|  notes = ?, | .
508     qq|  terms = ?, | .
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 = ?, | .
517     qq|  bank = ?, | .
518     qq|  obsolete = ?, | .
519     qq|  ustid = ?, | .
520     qq|  payment_id = ?, | .
521     qq|  taxzone_id = ?, | .
522     qq|  language_id = ?, | .
523     qq|  username = ?, | .
524     qq|  user_password = ?, | .
525     qq|  v_customer_id = ? | .
526     qq|WHERE id = ?|;
527   @values = (
528     $form->{vendornumber},
529     $form->{name},
530     $form->{greeting},
531     $form->{department_1},
532     $form->{department_2},
533     $form->{street},
534     $form->{zipcode},
535     $form->{city},
536     $form->{country},
537     $form->{homepage},
538     $form->{contact},
539     $form->{phone},
540     $form->{fax},
541     $form->{email},
542     $form->{cc},
543     $form->{bcc},
544     $form->{notes},
545     conv_i($form->{terms}),
546     $form->{discount},
547     $form->{creditlimit},
548     conv_i($form->{business}),
549     $form->{taxnumber},
550     $form->{sic},
551     $form->{language},
552     $form->{account_number},
553     $form->{bank_code},
554     $form->{bank},
555     $form->{obsolete} ? 't' : 'f',
556     $form->{ustid},
557     conv_i($form->{payment_id}),
558     conv_i($form->{taxzone_id}, 0),
559     conv_i( $form->{language_id}),
560     $form->{username},
561     $form->{user_password},
562     $form->{v_customer_id},
563     $form->{id}
564     );
565   do_query($form, $dbh, $query, @values);
566
567   $query = undef;
568   if ( $form->{cp_id} ) {
569     $query = qq|UPDATE contacts SET | .
570       qq|cp_greeting = ?, | .
571       qq|cp_title = ?,  | .
572       qq|cp_givenname = ?, | .
573       qq|cp_name = ?, | .
574       qq|cp_email = ?, | .
575       qq|cp_phone1 = ?, | .
576       qq|cp_phone2 = ?, | .
577       qq|cp_abteilung = ?, | .
578       qq|cp_fax = ?, | .
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 = ? | .
587       qq|WHERE cp_id = ?|;
588     @values = (
589       $form->{cp_greeting},
590       $form->{cp_title},
591       $form->{cp_givenname},
592       $form->{cp_name},
593       $form->{cp_email},
594       $form->{cp_phone1},
595       $form->{cp_phone2},
596       $form->{cp_abteilung},
597       $form->{cp_fax},
598       $form->{cp_mobile1},
599       $form->{cp_mobile2},
600       $form->{cp_satphone},
601       $form->{cp_satfax},
602       $form->{cp_project},
603       $form->{cp_privatphone},
604       $form->{cp_privatemail},
605       $form->{cp_birthday},
606       $form->{cp_id}
607       );
608   } elsif ( $form->{cp_name} || $form->{cp_givenname} ) {
609     $query =
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, | .
613       qq|  cp_birthday) | .
614       qq|VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
615     @values = (
616       $form->{id},
617       $form->{cp_greeting},
618       $form->{cp_title},
619       $form->{cp_givenname},
620       $form->{cp_name},
621       $form->{cp_email},
622       $form->{cp_phone1},
623       $form->{cp_phone2},
624       $form->{cp_abteilung},
625       $form->{cp_fax},
626       $form->{cp_mobile1},
627       $form->{cp_mobile2},
628       $form->{cp_satphone},
629       $form->{cp_satfax},
630       $form->{cp_project},
631       $form->{cp_privatphone},
632       $form->{cp_privatemail},
633       $form->{cp_birthday}
634       );
635   }
636   do_query($form, $dbh, $query, @values) if ($query);
637
638   # add shipto
639   $form->add_shipto( $dbh, $form->{id}, "CT" );
640
641   $self->_save_note('dbh' => $dbh);
642   $self->_delete_selected_notes('dbh' => $dbh);
643
644   CVar->save_custom_variables('dbh'       => $dbh,
645                               'module'    => 'CT',
646                               'trans_id'  => $form->{id},
647                               'variables' => $form);
648
649   $rc = $dbh->commit();
650   $dbh->disconnect();
651
652   $main::lxdebug->leave_sub();
653   return $rc;
654 }
655
656 sub delete {
657   $main::lxdebug->enter_sub();
658
659   my ( $self, $myconfig, $form ) = @_;
660   # connect to database
661   my $dbh = $form->dbconnect($myconfig);
662
663   # delete vendor
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});
667
668   $dbh->disconnect;
669
670   $main::lxdebug->leave_sub();
671 }
672
673 sub search {
674   $main::lxdebug->enter_sub();
675
676   my ( $self, $myconfig, $form ) = @_;
677
678   # connect to database
679   my $dbh = $form->dbconnect($myconfig);
680
681   my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
682
683   my $where = "1 = 1";
684   my @values;
685
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));
689   $sortorder =
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");
694
695   if ($form->{"${cv}number"}) {
696     $where .= " AND ct.${cv}number ILIKE ?";
697     push(@values, '%' . $form->{"${cv}number"} . '%');
698   }
699
700   foreach my $key (qw(name contact email)) {
701     if ($form->{$key}) {
702       $where .= " AND ct.$key ILIKE ?";
703       push(@values, '%' . $form->{$key} . '%');
704     }
705   }
706
707   if ( $form->{status} eq 'orphaned' ) {
708     $where .=
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') {
712       $where .=
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)|;
716     }
717     if ($cv eq 'vendor') {
718       $where .=
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)|;
722     }
723     $form->{l_invnumber} = $form->{l_ordnumber} = $form->{l_quonumber} = "";
724   }
725
726   if ($form->{obsolete} eq "Y") {
727     $where .= qq| AND obsolete|;
728   } elsif ($form->{obsolete} eq "N") {
729     $where .= qq| AND NOT obsolete|;
730   }
731
732   if ($form->{business_id}) {
733     $where .= qq| AND (business_id = ?)|;
734     push(@values, conv_i($form->{business_id}));
735   }
736
737   my ($cvar_where, @cvar_values) = CVar->build_filter_query('module'         => 'CT',
738                                                             'trans_id_field' => 'ct.id',
739                                                             'filter'         => $form);
740
741   if ($cvar_where) {
742     $where .= qq| AND ($cvar_where)|;
743     push @values, @cvar_values;
744   }
745
746   my $query =
747     qq|SELECT ct.*, b.description AS business | .
748     qq|FROM $cv ct | .
749     qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
750     qq|WHERE $where|;
751
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);
756     $query = "";
757
758     if ($form->{l_invnumber}) {
759       my $ar = $cv eq 'customer' ? 'ar' : 'ap';
760       my $module = $ar eq 'ar' ? 'is' : 'ir';
761
762       $query =
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 | .
767         qq|FROM $cv ct | .
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')|;
771
772       $union = qq|UNION|;
773     }
774
775     if ( $form->{l_ordnumber} ) {
776       if ($union eq "UNION") {
777         push(@values, @saved_values);
778       }
779       $query .=
780         qq| $union | .
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 | .
784         qq|FROM $cv ct | .
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')|;
788
789       $union = qq|UNION|;
790     }
791
792     if ( $form->{l_quonumber} ) {
793       if ($union eq "UNION") {
794         push(@values, @saved_values);
795       }
796       $query .=
797         qq| $union | .
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 | .
801         qq|FROM $cv ct | .
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')|;
805     }
806   }
807
808   $query .= qq| ORDER BY $sortorder|;
809
810   $form->{CT} = selectall_hashref_query($form, $dbh, $query, @values);
811   map({ my $ref = $_; $ref->{address} = join(" ", map({ $ref->{$_} } qw(street zipcode city country))); }
812       @{ $form->{CT} });
813
814   $main::lxdebug->leave_sub();
815 }
816
817 sub get_contact {
818   $main::lxdebug->enter_sub();
819
820   my ( $self, $myconfig, $form ) = @_;
821   my $dbh   = $form->dbconnect($myconfig);
822   my $query =
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);
827
828   map { $form->{$_} = $ref->{$_} } keys %$ref;
829
830   $sth->finish;
831   $dbh->disconnect;
832
833   $main::lxdebug->leave_sub();
834 }
835
836 sub get_shipto {
837   $main::lxdebug->enter_sub();
838
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});
843
844   my $ref = $sth->fetchrow_hashref(NAME_lc);
845
846   map { $form->{$_} = $ref->{$_} } keys %$ref;
847
848   $sth->finish;
849   $dbh->disconnect;
850
851   $main::lxdebug->leave_sub();
852 }
853
854 sub get_delivery {
855   $main::lxdebug->enter_sub();
856
857   my ( $self, $myconfig, $form ) = @_;
858   my $dbh = $form->dbconnect($myconfig);
859
860   my $arap = $form->{db} eq "vendor" ? "ap" : "ar";
861   my $db = $form->{db} eq "customer" ? "customer" : "vendor";
862
863   my $where = " WHERE 1=1 ";
864   my @values;
865
866   if ($form->{shipto_id} && ($arap eq "ar")) {
867     $where .= "AND ${arap}.shipto_id = ?";
868     push(@values, $form->{shipto_id});
869   } else {
870     $where .= "AND ${arap}.${db}_id = ?";
871     push(@values, $form->{id});
872   }
873
874   if ($form->{from}) {
875     $where .= "AND ${arap}.transdate >= ?";
876     push(@values, conv_date($form->{from}));
877   }
878   if ($form->{to}) {
879     $where .= "AND ${arap}.transdate <= ?";
880     push(@values, conv_date($form->{to}));
881   }
882   my $query =
883     qq|SELECT s.shiptoname, i.qty, | .
884     qq|  ${arap}.transdate, ${arap}.invnumber, ${arap}.ordnumber, | .
885     qq|  i.description, i.unit, i.sellprice | .
886     qq|FROM $arap | .
887     qq|LEFT JOIN shipto s ON | .
888     ($arap eq "ar"
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) | .
893     $where .
894     qq|ORDER BY ${arap}.transdate DESC LIMIT 15|;
895
896   $form->{DELIVERY} = selectall_hashref_query($form, $dbh, $query, @values);
897
898   $dbh->disconnect;
899
900   $main::lxdebug->leave_sub();
901 }
902
903 sub _save_note {
904   $main::lxdebug->enter_sub();
905
906   my $self   = shift;
907   my %params = @_;
908
909   my $form   = $main::form;
910
911   Common::check_params(\%params, 'dbh');
912
913   if (!$form->{NOTE_subject}) {
914     $main::lxdebug->leave_sub();
915     return;
916   }
917
918   my $dbh = $params{dbh};
919
920   my %follow_up;
921   my %note = (
922     'id'           => $form->{NOTE_id},
923     'subject'      => $form->{NOTE_subject},
924     'body'         => $form->{NOTE_body},
925     'trans_id'     => $form->{id},
926     'trans_module' => 'ct',
927   );
928
929   $note{id} = Notes->save(%note);
930
931   if ($form->{FU_date}) {
932     %follow_up = (
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},
940       'LINKS'            => [
941         {
942           'trans_id'     => $form->{id},
943           'trans_type'   => $form->{db} eq 'customer' ? 'customer' : 'vendor',
944           'trans_info'   => $form->{name},
945         },
946       ],
947     );
948
949     $follow_up{id} = FU->save(%follow_up);
950
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}));
954   }
955
956   delete @{$form}{grep { /^NOTE_|^FU_/ } keys %{ $form }};
957
958   $main::lxdebug->leave_sub();
959 }
960
961 sub _delete_selected_notes {
962   $main::lxdebug->enter_sub();
963
964   my $self   = shift;
965   my %params = @_;
966
967   Common::check_params(\%params, 'dbh');
968
969   my $form = $main::form;
970   my $dbh  = $params{dbh};
971
972   foreach my $i (1 .. $form->{NOTES_rowcount}) {
973     next unless ($form->{"NOTE_delete_$i"} && $form->{"NOTE_id_$i"});
974
975     Notes->delete('dbh' => $params{dbh},
976                   'id'  => $form->{"NOTE_id_$i"});
977   }
978
979   $main::lxdebug->leave_sub();
980 }
981
982 1;