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