447641177cc1bddae538dd09aed88ce80e84a6ef
[kivitendo-erp.git] / bin / mozilla / ct.pl
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) 1998-2002
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #  Contributors: Reed White <alta@alta-research.com>
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 # customer/vendor module
32 #
33 #======================================================================
34
35 # $locale->text('Customers')
36 # $locale->text('Vendors')
37 # $locale->text('Add Customer')
38 # $locale->text('Add Vendor')
39 # $locale->text('Edit Customer')
40 # $locale->text('Edit Vendor')
41 # $locale->text('Customer saved!')
42 # $locale->text('Vendor saved!')
43 # $locale->text('Customer deleted!')
44 # $locale->text('Cannot delete customer!')
45 # $locale->text('Vendor deleted!')
46 # $locale->text('Cannot delete vendor!')
47
48 use CGI::Ajax;
49 use POSIX qw(strftime);
50
51 use SL::CT;
52 use SL::CVar;
53 use SL::ReportGenerator;
54
55 require "bin/mozilla/common.pl";
56 require "bin/mozilla/reportgenerator.pl";
57
58 use strict;
59 1;
60
61 # end of main
62
63 sub add {
64   $main::lxdebug->enter_sub();
65
66   $main::auth->assert('customer_vendor_edit');
67
68   my $form     = $main::form;
69   my %myconfig = %main::myconfig;
70
71   $form->{title}    = "Add";
72   $form->{callback} = "$form->{script}?action=add&db=$form->{db}" unless $form->{callback};
73
74   CT->populate_drop_down_boxes(\%myconfig, \%$form);
75
76   &form_header;
77   &form_footer;
78
79   $main::lxdebug->leave_sub();
80 }
81
82 sub search {
83   $main::lxdebug->enter_sub();
84
85   $main::auth->assert('customer_vendor_edit');
86
87   my $form     = $main::form;
88   my $locale   = $main::locale;
89
90   $form->{IS_CUSTOMER} = $form->{db} eq 'customer';
91
92   $form->get_lists("business_types" => "ALL_BUSINESS_TYPES");
93   $form->{SHOW_BUSINESS_TYPES} = scalar @{ $form->{ALL_BUSINESS_TYPES} } > 0;
94
95   $form->{CUSTOM_VARIABLES}                  = CVar->get_configs('module' => 'CT');
96   ($form->{CUSTOM_VARIABLES_FILTER_CODE},
97    $form->{CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables'      => $form->{CUSTOM_VARIABLES},
98                                                                            'include_prefix' => 'l_',
99                                                                            'include_value'  => 'Y');
100
101   $form->{jsscript} = 1;
102   $form->{title}    = $form->{IS_CUSTOMER} ? $locale->text('Customers') : $locale->text('Vendors');
103   $form->{fokus}    = 'Form.name';
104
105   $form->header();
106   print $form->parse_html_template('ct/search');
107
108   $main::lxdebug->leave_sub();
109 }
110
111 sub list_names {
112   $main::lxdebug->enter_sub();
113
114   $main::auth->assert('customer_vendor_edit');
115
116   my $form     = $main::form;
117   my %myconfig = %main::myconfig;
118   my $locale   = $main::locale;
119
120   $form->{IS_CUSTOMER} = $form->{db} eq 'customer';
121
122   report_generator_set_default_sort('name', 1);
123
124   CT->search(\%myconfig, \%$form);
125
126   my $cvar_configs = CVar->get_configs('module' => 'CT');
127
128   my @options;
129   if ($form->{status} eq 'all') {
130     push @options, $locale->text('All');
131   } elsif ($form->{status} eq 'orphaned') {
132     push @options, $locale->text('Orphaned');
133   }
134
135   push @options, $locale->text('Name') . " : $form->{name}"                                    if $form->{name};
136   push @options, $locale->text('Contact') . " : $form->{contact}"                              if $form->{contact};
137   push @options, $locale->text('Number') . qq| : $form->{"$form->{db}number"}|                 if $form->{"$form->{db}number"};
138   push @options, $locale->text('E-mail') . " : $form->{email}"                                 if $form->{email};
139   push @options, $locale->text('Contact person (surname)')           . " : $form->{cp_name}"   if $form->{cp_name};
140   push @options, $locale->text('Billing/shipping address (city)')    . " : $form->{addr_city}" if $form->{addr_city};
141   push @options, $locale->text('Billing/shipping address (zipcode)') . " : $form->{zipcode}"   if $form->{addr_zipcode};
142   push @options, $locale->text('Billing/shipping address (street)')  . " : $form->{street}"    if $form->{addr_street};
143
144   my @columns = (
145     'id',        'name',      "$form->{db}number",   'contact',  'phone',
146     'fax',       'email',     'taxnumber',           'street',   'zipcode' , 'city',
147     'business',  'invnumber', 'ordnumber',           'quonumber'
148   );
149
150   my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs };
151   my @searchable_custom_variables  = grep { $_->{searchable} }  @{ $cvar_configs };
152   my %column_defs_cvars            = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @includeable_custom_variables;
153
154   push @columns, map { "cvar_$_->{name}" } @includeable_custom_variables;
155
156   my %column_defs = (
157     'id'                => { 'text' => $locale->text('ID'), },
158     "$form->{db}number" => { 'text' => $locale->text('Number'), },
159     'name'              => { 'text' => $form->{IS_CUSTOMER} ? $::locale->text('Customer Name') : $::locale->text('Vendor Name'), },
160     'contact'           => { 'text' => $locale->text('Contact'), },
161     'phone'             => { 'text' => $locale->text('Phone'), },
162     'fax'               => { 'text' => $locale->text('Fax'), },
163     'email'             => { 'text' => $locale->text('E-mail'), },
164     'cc'                => { 'text' => $locale->text('Cc'), },
165     'taxnumber'         => { 'text' => $locale->text('Tax Number'), },
166     'business'          => { 'text' => $locale->text('Type of Business'), },
167     'invnumber'         => { 'text' => $locale->text('Invoice'), },
168     'ordnumber'         => { 'text' => $form->{IS_CUSTOMER} ? $locale->text('Sales Order') : $locale->text('Purchase Order'), },
169     'quonumber'         => { 'text' => $form->{IS_CUSTOMER} ? $locale->text('Quotation')   : $locale->text('Request for Quotation'), },
170     'street'            => { 'text' => $locale->text('Street'), },
171     'zipcode'           => { 'text' => $locale->text('Zipcode'), },
172     'city'              => { 'text' => $locale->text('City'), },
173     %column_defs_cvars,
174   );
175
176   map { $column_defs{$_}->{visible} = $form->{"l_$_"} eq 'Y' } @columns;
177
178   my @hidden_variables  = (qw(db status obsolete name contact email cp_name addr_city), "$form->{db}number", @searchable_custom_variables, map { "l_$_" } @columns);
179   my @hidden_nondefault = grep({ $form->{$_} } @hidden_variables);
180   my $callback          = build_std_url('action=list_names', grep { $form->{$_} } @hidden_nondefault);
181   $form->{callback}     = "$callback&sort=" . E($form->{sort}) . "&sortdir=" . E($form->{sortdir});
182
183   foreach (@columns) {
184     my $sortdir              = $form->{sort} eq $_ ? 1 - $form->{sortdir} : $form->{sortdir};
185     $column_defs{$_}->{link} = "${callback}&sort=${_}&sortdir=${sortdir}";
186   }
187
188   my ($ordertype, $quotationtype, $attachment_basename);
189   if ($form->{IS_CUSTOMER}) {
190     $form->{title}       = $locale->text('Customers');
191     $ordertype           = 'sales_order';
192     $quotationtype       = 'sales_quotation';
193     $attachment_basename = $locale->text('customer_list');
194
195   } else {
196     $form->{title}       = $locale->text('Vendors');
197     $ordertype           = 'purchase_order';
198     $quotationtype       = 'request_quotation';
199     $attachment_basename = $locale->text('vendor_list');
200   }
201
202   my $report = SL::ReportGenerator->new(\%myconfig, $form);
203
204   $report->set_options('top_info_text'         => join("\n", @options),
205                        'raw_bottom_info_text'  => $form->parse_html_template('ct/list_names_bottom'),
206                        'output_format'         => 'HTML',
207                        'title'                 => $form->{title},
208                        'attachment_basename'   => $attachment_basename . strftime('_%Y%m%d', localtime time),
209     );
210   $report->set_options_from_form();
211
212   $report->set_columns(%column_defs);
213   $report->set_column_order(@columns);
214
215   $report->set_export_options('list_names', @hidden_variables, qw(sort sortdir));
216
217   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
218
219   CVar->add_custom_variables_to_report('module'         => 'CT',
220                                        'trans_id_field' => 'id',
221                                        'configs'        => $cvar_configs,
222                                        'column_defs'    => \%column_defs,
223                                        'data'           => $form->{CT});
224
225   my $previous_id;
226
227   foreach my $ref (@{ $form->{CT} }) {
228     my $row = { map { $_ => { 'data' => '' } } @columns };
229
230     if ($ref->{id} ne $previous_id) {
231       $previous_id = $ref->{id};
232       map { $row->{$_}->{data} = $ref->{$_} } @columns;
233
234       $row->{name}->{link}  = build_std_url('action=edit', 'id=' . E($ref->{id}), 'callback', @hidden_nondefault);
235       $row->{email}->{link} = 'mailto:' . E($ref->{email});
236     }
237
238     my $base_url              = build_std_url("script=$ref->{module}.pl", 'action=edit', 'id=' . E($ref->{invid}), 'callback', @hidden_nondefault);
239     $row->{invnumber}->{link} = $base_url;
240     $row->{ordnumber}->{link} = $base_url . "&type=${ordertype}";
241     $row->{quonumber}->{link} = $base_url . "&type=${quotationtype}";
242     my $column                = $ref->{formtype} eq 'invoice' ? 'invnumber' : $ref->{formtype} eq 'order' ? 'ordnumber' : 'quonumber';
243     $row->{$column}->{data}   = $ref->{$column};
244
245     $report->add_data($row);
246   }
247
248   $report->generate_with_headers();
249
250   $main::lxdebug->leave_sub();
251 }
252
253 sub edit {
254   $main::lxdebug->enter_sub();
255
256   $main::auth->assert('customer_vendor_edit');
257
258   my $form     = $main::form;
259   my %myconfig = %main::myconfig;
260
261   # show history button
262   $form->{javascript} = qq|<script type=text/javascript src=js/show_history.js></script>|;
263   #/show hhistory button
264
265   CT->get_tuple(\%myconfig, \%$form);
266   CT->populate_drop_down_boxes(\%myconfig, \%$form);
267
268   $form->{title} = "Edit";
269
270   # format discount
271   $form->{discount} *= 100;
272
273   &form_header;
274   &form_footer;
275
276   $main::lxdebug->leave_sub();
277 }
278
279 sub form_header {
280   $main::lxdebug->enter_sub();
281
282   $main::auth->assert('customer_vendor_edit');
283
284   my $form     = $main::form;
285   my %myconfig = %main::myconfig;
286   my $locale   = $main::locale;
287
288   $form->get_lists(employees => "ALL_EMPLOYEES",
289                    taxzones  => "ALL_TAXZONES");
290   $form->get_pricegroup(\%myconfig, { all => 1 });
291
292   $form->get_lists(customers => { key => "ALL_SALESMAN_CUSTOMERS", business_is_salesman => 1 }) if $::vertreter;
293
294   $form->{ALL_SALESMEN}   = $form->{ALL_EMPLOYEES};
295   $form->{taxincluded}    = ($form->{taxincluded}) ? "checked" : "";
296   $form->{is_admin}       = $myconfig{role} eq 'admin';
297   $form->{is_customer}    = $form->{db}     eq 'customer';
298   $form->{salesman_label} = sub { $_[0]->{name} ne "" ? $_[0]->{name} : $_[0]->{login} };
299   $form->{shipto_label}   = sub { my $s = shift(@_); join('; ', grep { $_ } map { $s->{"shipto$_"} } qw(name department_1 street city)) || ' ' };
300   $form->{contacts_label} = sub { join ", ", grep { $_ } $_[0]->{cp_name}, $_[0]->{cp_givenname} };
301   $form->{taxzone_id}     = 0                                                               if !$form->{id};
302   $form->{jsscript}       = 1;
303   $form->{fokus}          = "ct.greeting";
304   $form->{AJAX}           = [ new CGI::Ajax( map {; "get_$_" => "$form->{script}?action=get_$_" } qw(shipto contact delivery) ) ];
305
306   unshift @{ $form->{SHIPTO} },   +{ shipto_id => '0', shiptoname => '' }, +{ shipto_id => '0', shiptoname => 'Alle' };
307   unshift @{ $form->{CONTACTS} }, +{ cp_id     => '0', cp_name => $locale->text('New contact') };
308
309   $form->{title} = $form->{title_save}
310                 || $locale->text("$form->{title} " . ucfirst $form->{db}) . ($form->{title} eq "Edit" ? " $form->{name}" : '');
311
312   CT->query_titles_and_greetings(\%myconfig, \%$form);
313   map { $form->{"MB_$_"} = [ map +{ id => $_, description => $_ }, @{ $form->{$_} } ] } qw(TITLES GREETINGS COMPANY_GREETINGS DEPARTMENT);
314
315   $form->{NOTES} ||= [ ];
316
317   $form->{CUSTOM_VARIABLES} = CVar->get_custom_variables('module' => 'CT', 'trans_id' => $form->{id});
318
319   CVar->render_inputs('variables' => $form->{CUSTOM_VARIABLES}) if (scalar @{ $form->{CUSTOM_VARIABLES} });
320
321   $form->header;
322   print $form->parse_html_template('ct/form_header');
323
324   $main::lxdebug->leave_sub();
325 }
326
327 sub form_footer {
328   $main::lxdebug->enter_sub();
329
330   $main::auth->assert('customer_vendor_edit');
331
332   my $form     = $main::form;
333
334   print $form->parse_html_template('ct/form_footer', { is_orphaned => $form->{status} eq 'orphaned',
335                                                        is_customer => $form->{db}     eq 'customer' });
336   $main::lxdebug->leave_sub();
337 }
338
339 sub _do_save {
340   $main::auth->assert('customer_vendor_edit & ' .
341                       '(general_ledger         | invoice_edit         | vendor_invoice_edit | ' .
342                       ' request_quotation_edit | sales_quotation_edit | sales_order_edit    | purchase_order_edit)');
343
344   $::form->isblank("name", $::locale->text("Name missing!"));
345
346   if ($::form->{new_salesman_id} && $::vertreter) {
347     $::form->{salesman_id} = $::form->{new_salesman_id};
348     delete $::form->{new_salesman_id};
349   }
350
351   my $res = $::form->{db} eq 'customer' ? CT->save_customer(\%::myconfig, $::form) : CT->save_vendor(\%::myconfig, $::form);
352
353   if (3 == $res) {
354     if ($::form->{"db"} eq "customer") {
355       $::form->error($::locale->text('This customer number is already in use.'));
356     } else {
357       $::form->error($::locale->text('This vendor number is already in use.'));
358     }
359   }
360 }
361
362 sub add_transaction {
363   $main::lxdebug->enter_sub();
364
365   $main::auth->assert('customer_vendor_edit & ' .
366                 '(general_ledger         | invoice_edit         | vendor_invoice_edit | ' .
367                 ' request_quotation_edit | sales_quotation_edit | sales_order_edit    | purchase_order_edit)');
368
369   my $form     = $main::form;
370   my %myconfig = %main::myconfig;
371   my $locale   = $main::locale;
372
373 #  # saving the history
374 #  if(!exists $form->{addition}) {
375 #    $form->{addition} = "ADD TRANSACTION";
376 #    $form->save_history;
377 #  }
378 #  # /saving the history
379
380   _do_save();
381
382   $form->{callback} = $form->escape($form->{callback}, 1);
383   my $name = $form->escape("$form->{name}", 1);
384
385   $form->{callback} =
386     "$form->{script}?action=add&vc=$form->{db}&$form->{db}_id=$form->{id}&$form->{db}=$name&type=$form->{type}&callback=$form->{callback}";
387   $form->redirect;
388
389   $main::lxdebug->leave_sub();
390 }
391
392 sub save_and_ap_transaction {
393   $main::lxdebug->enter_sub();
394
395   $main::auth->assert('customer_vendor_edit & general_ledger');
396
397   my $form     = $main::form;
398   my %myconfig = %main::myconfig;
399
400   $form->{script} = "ap.pl";
401   # saving the history
402   if(!exists $form->{addition}) {
403     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
404     $form->{addition} = "SAVED";
405     $form->save_history;
406   }
407   # /saving the history
408   &add_transaction;
409   $main::lxdebug->leave_sub();
410 }
411
412 sub save_and_ar_transaction {
413   $main::lxdebug->enter_sub();
414
415   $main::auth->assert('customer_vendor_edit & general_ledger');
416
417   my $form     = $main::form;
418   my %myconfig = %main::myconfig;
419
420   $form->{script} = "ar.pl";
421   # saving the history
422   if(!exists $form->{addition}) {
423     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
424     $form->{addition} = "SAVED";
425     $form->save_history;
426   }
427   # /saving the history
428   &add_transaction;
429   $main::lxdebug->leave_sub();
430 }
431
432 sub save_and_invoice {
433   $main::lxdebug->enter_sub();
434
435   my $form     = $main::form;
436   my %myconfig = %main::myconfig;
437
438   if ($form->{db} eq 'customer') {
439     $main::auth->assert('customer_vendor_edit & invoice_edit');
440   } else {
441     $main::auth->assert('customer_vendor_edit & vendor_invoice_edit');
442   }
443
444   $form->{script} = ($form->{db} eq 'customer') ? "is.pl" : "ir.pl";
445   $form->{type} = "invoice";
446   # saving the history
447   if(!exists $form->{addition}) {
448     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
449     $form->{addition} = "SAVED";
450     $form->save_history;
451   }
452   # /saving the history
453   &add_transaction;
454   $main::lxdebug->leave_sub();
455 }
456
457 sub save_and_rfq {
458   $main::lxdebug->enter_sub();
459
460   $main::auth->assert('customer_vendor_edit & request_quotation_edit');
461
462   my $form     = $main::form;
463   my %myconfig = %main::myconfig;
464
465   $form->{script} = "oe.pl";
466   $form->{type}   = "request_quotation";
467   # saving the history
468   if(!exists $form->{addition}) {
469     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
470     $form->{addition} = "SAVED";
471     $form->save_history;
472   }
473   # /saving the history
474   &add_transaction;
475   $main::lxdebug->leave_sub();
476 }
477
478 sub save_and_quotation {
479   $main::lxdebug->enter_sub();
480
481   $main::auth->assert('customer_vendor_edit & sales_quotation_edit');
482
483   my $form     = $main::form;
484   my %myconfig = %main::myconfig;
485
486   $form->{script} = "oe.pl";
487   $form->{type}   = "sales_quotation";
488   # saving the history
489   if(!exists $form->{addition}) {
490     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
491     $form->{addition} = "SAVED";
492     $form->save_history;
493   }
494   # /saving the history
495   &add_transaction;
496   $main::lxdebug->leave_sub();
497 }
498
499 sub save_and_order {
500   $main::lxdebug->enter_sub();
501
502   my $form     = $main::form;
503   my %myconfig = %main::myconfig;
504
505   if ($form->{db} eq 'customer') {
506     $main::auth->assert('customer_vendor_edit & sales_order_edit');
507   } else {
508     $main::auth->assert('customer_vendor_edit & purchase_order_edit');
509   }
510
511   $form->{script} = "oe.pl";
512   $form->{type}   =
513     ($form->{db} eq 'customer') ? "sales_order" : "purchase_order";
514   # saving the history
515   if(!exists $form->{addition}) {
516     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
517     $form->{addition} = "SAVED";
518     $form->save_history;
519   }
520   # /saving the history
521   &add_transaction;
522   $main::lxdebug->leave_sub();
523 }
524
525 sub save_and_close {
526   $main::lxdebug->enter_sub();
527
528   $main::auth->assert('customer_vendor_edit');
529
530   my $form     = $main::form;
531   my %myconfig = %main::myconfig;
532   my $locale   = $main::locale;
533
534   my $msg = ucfirst $form->{db};
535   $msg .= " saved!";
536
537   _do_save();
538
539   # saving the history
540   if(!exists $form->{addition}) {
541     $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber});
542     $form->{addition} = "SAVED";
543     $form->save_history;
544   }
545   # /saving the history
546   $form->redirect($locale->text($msg));
547
548   $main::lxdebug->leave_sub();
549 }
550
551 sub save {
552   $main::lxdebug->enter_sub();
553
554   $main::auth->assert('customer_vendor_edit');
555
556   my $form     = $main::form;
557   my %myconfig = %main::myconfig;
558   my $locale   = $main::locale;
559
560   my $msg = ucfirst $form->{db};
561   $msg .= " saved!";
562
563   _do_save();
564
565   # saving the history
566   if(!exists $form->{addition}) {
567     $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber});
568     $form->{addition} = "SAVED";
569     $form->save_history;
570   }
571   # /saving the history
572   &edit;
573
574   $main::lxdebug->leave_sub();
575   ::end_of_request();
576 }
577
578 sub delete {
579   $main::lxdebug->enter_sub();
580
581   $main::auth->assert('customer_vendor_edit');
582
583   my $form     = $main::form;
584   my %myconfig = %main::myconfig;
585   my $locale   = $main::locale;
586
587   CT->delete(\%myconfig, \%$form);
588
589   my $msg = ucfirst $form->{db};
590   $msg .= " deleted!";
591   # saving the history
592   if(!exists $form->{addition}) {
593     $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber});
594     $form->{addition} = "DELETED";
595     $form->save_history;
596   }
597   # /saving the history
598   $form->redirect($locale->text($msg));
599
600   $main::lxdebug->leave_sub();
601 }
602
603 sub display {
604   $main::lxdebug->enter_sub();
605
606   $main::auth->assert('customer_vendor_edit');
607
608   my $form     = $main::form;
609
610   &form_header();
611   &form_footer();
612
613   $main::lxdebug->leave_sub();
614 }
615
616 sub update {
617   $main::lxdebug->enter_sub();
618
619   $main::auth->assert('customer_vendor_edit');
620
621   my $form     = $main::form;
622
623   &display();
624   $main::lxdebug->leave_sub();
625 }
626
627 sub get_contact {
628   $main::lxdebug->enter_sub();
629
630   $main::auth->assert('customer_vendor_edit');
631
632   my $form     = $main::form;
633   my %myconfig = %main::myconfig;
634
635   CT->get_contact(\%myconfig, \%$form);
636   print $form->ajax_response_header(), join '__pjx__', map $form->{"cp_$_"},
637     qw(name title givenname phone1 phone2 email abteilung fax mobile1 mobile2 satphone satfax project privatphone privatemail birthday used gender);
638   $main::lxdebug->leave_sub();
639
640 }
641
642 sub get_shipto {
643   $main::lxdebug->enter_sub();
644
645   $main::auth->assert('customer_vendor_edit');
646
647   my $form     = $main::form;
648   my %myconfig = %main::myconfig;
649
650   CT->get_shipto(\%myconfig, \%$form);
651   print $form->ajax_response_header(), join('__pjx__', map($form->{"shipto$_"}, qw(name department_1 department_2 street zipcode city country contact phone fax email used)));
652   $main::lxdebug->leave_sub();
653
654 }
655
656 sub get_delivery {
657   $::lxdebug->enter_sub;
658
659   $::auth->assert('customer_vendor_edit');
660   $::auth->assert('sales_all_edit');
661
662   CT->get_delivery(\%::myconfig, $::form );
663
664   print $::form->ajax_response_header,
665         $::form->parse_html_template('ct/get_delivery', {
666           is_customer =>  $::form->{db} eq 'customer',
667         });
668
669   $::lxdebug->leave_sub;
670 }
671
672 sub delete_shipto {
673   $main::lxdebug->enter_sub();
674
675   $main::auth->assert('customer_vendor_edit');
676
677   my $form     = $main::form;
678   my %myconfig = %main::myconfig;
679
680   CT->get_shipto(\%myconfig, \%$form);
681
682   unless ($form->{shiptoused}) {
683     CT->delete_shipto($form->{shipto_id});
684     @$form{ grep /^shipto/, keys %$form } = undef;
685   }
686
687   edit();
688
689   $main::lxdebug->leave_sub();
690 }
691
692 sub delete_contact {
693   $main::lxdebug->enter_sub();
694
695   $main::auth->assert('customer_vendor_edit');
696
697   my $form     = $main::form;
698   my %myconfig = %main::myconfig;
699
700   CT->get_contact(\%myconfig, \%$form);
701
702   unless ($form->{cp_used}) {
703     CT->delete_shipto($form->{cp_id});
704     @$form{ grep /^cp_/, keys %$form } = undef;
705   }
706
707   edit();
708
709   $main::lxdebug->leave_sub();
710 }
711
712 sub ajax_autocomplete {
713   $main::lxdebug->enter_sub();
714
715   my $form     = $main::form;
716   my %myconfig = %main::myconfig;
717
718   $form->{column}          = 'name'     unless $form->{column} =~ /^name$/;
719   $form->{vc}              = 'customer' unless $form->{vc} =~ /^customer|vendor$/;
720   $form->{db}              = $form->{vc}; # CT expects this
721   $form->{$form->{column}} = $form->{q}           || '';
722   $form->{limit}           = ($form->{limit} * 1) || 10;
723   $form->{searchitems}   ||= '';
724
725   CT->search(\%myconfig, $form);
726
727   print $form->ajax_response_header(),
728         $form->parse_html_template('ct/ajax_autocomplete');
729
730   $main::lxdebug->leave_sub();
731 }
732
733 sub continue { call_sub($main::form->{nextsub}); }