Merge remote branch 'origin/master'
[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 POSIX qw(strftime);
49
50 use SL::CT;
51 use SL::CVar;
52 use SL::Request qw(flatten);
53 use SL::DB::Business;
54 use SL::DB::Default;
55 use SL::Helper::Flash;
56 use SL::ReportGenerator;
57
58 require "bin/mozilla/common.pl";
59 require "bin/mozilla/reportgenerator.pl";
60
61 use strict;
62 1;
63
64 # end of main
65
66 sub add {
67   $main::lxdebug->enter_sub();
68
69   $main::auth->assert('customer_vendor_edit');
70
71   my $form     = $main::form;
72   my %myconfig = %main::myconfig;
73
74   $form->{title}    = "Add";
75   $form->{callback} = "$form->{script}?action=add&db=$form->{db}" unless $form->{callback};
76
77   CT->populate_drop_down_boxes(\%myconfig, \%$form);
78
79   &form_header;
80   &form_footer;
81
82   $main::lxdebug->leave_sub();
83 }
84
85 sub search {
86   $main::lxdebug->enter_sub();
87
88   $main::auth->assert('customer_vendor_edit');
89
90   my $form     = $main::form;
91   my $locale   = $main::locale;
92
93   $form->{IS_CUSTOMER} = $form->{db} eq 'customer';
94
95   $form->get_lists("business_types" => "ALL_BUSINESS_TYPES");
96   $form->{SHOW_BUSINESS_TYPES} = scalar @{ $form->{ALL_BUSINESS_TYPES} } > 0;
97
98   $form->{CUSTOM_VARIABLES}                  = CVar->get_configs('module' => 'CT');
99   ($form->{CUSTOM_VARIABLES_FILTER_CODE},
100    $form->{CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables'      => $form->{CUSTOM_VARIABLES},
101                                                                            'include_prefix' => 'l_',
102                                                                            'include_value'  => 'Y');
103
104   $form->{jsscript} = 1;
105   $form->{title}    = $form->{IS_CUSTOMER} ? $locale->text('Customers') : $locale->text('Vendors');
106   $::request->{layout}->focus('#name');
107
108   $form->header();
109   print $form->parse_html_template('ct/search');
110
111   $main::lxdebug->leave_sub();
112 }
113
114 sub search_contact {
115   $::lxdebug->enter_sub;
116   $::auth->assert('customer_vendor_edit');
117
118   $::form->{CUSTOM_VARIABLES}                  = CVar->get_configs('module' => 'Contacts');
119   ($::form->{CUSTOM_VARIABLES_FILTER_CODE},
120    $::form->{CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables'    => $::form->{CUSTOM_VARIABLES},
121                                                                            'include_prefix' => 'l.',
122                                                                            'filter_prefix'  => 'filter.',
123                                                                            'include_value'  => 'Y');
124
125   $::form->{title} = $::locale->text('Search contacts');
126   $::form->header;
127   print $::form->parse_html_template('ct/search_contact');
128
129   $::lxdebug->leave_sub;
130 }
131
132 sub list_names {
133   $main::lxdebug->enter_sub();
134
135   $main::auth->assert('customer_vendor_edit');
136
137   my $form     = $main::form;
138   my %myconfig = %main::myconfig;
139   my $locale   = $main::locale;
140
141   $form->{IS_CUSTOMER} = $form->{db} eq 'customer';
142
143   report_generator_set_default_sort('name', 1);
144
145   CT->search(\%myconfig, \%$form);
146
147   my $cvar_configs = CVar->get_configs('module' => 'CT');
148
149   my @options;
150   if ($form->{status} eq 'all') {
151     push @options, $locale->text('All');
152   } elsif ($form->{status} eq 'orphaned') {
153     push @options, $locale->text('Orphaned');
154   }
155
156   push @options, $locale->text('Name') . " : $form->{name}"                                    if $form->{name};
157   push @options, $locale->text('Contact') . " : $form->{contact}"                              if $form->{contact};
158   push @options, $locale->text('Number') . qq| : $form->{"$form->{db}number"}|                 if $form->{"$form->{db}number"};
159   push @options, $locale->text('E-mail') . " : $form->{email}"                                 if $form->{email};
160   push @options, $locale->text('Contact person (surname)')           . " : $form->{cp_name}"   if $form->{cp_name};
161   push @options, $locale->text('Billing/shipping address (city)')    . " : $form->{addr_city}" if $form->{addr_city};
162   push @options, $locale->text('Billing/shipping address (zipcode)') . " : $form->{zipcode}"   if $form->{addr_zipcode};
163   push @options, $locale->text('Billing/shipping address (street)')  . " : $form->{street}"    if $form->{addr_street};
164
165   if ($form->{business_id}) {
166     my $business = SL::DB::Manager::Business->find_by(id => $form->{business_id});
167     if ($business) {
168       my $label = $form->{IS_CUSTOMER} ? $::locale->text('Customer type') : $::locale->text('Vendor type');
169       push @options, $label . " : " . $business->description;
170     }
171   }
172
173   my @columns = (
174     'id',        'name',      "$form->{db}number",   'contact',  'phone',
175     'fax',       'email',     'taxnumber',           'street',   'zipcode' , 'city',
176     'business',  'invnumber', 'ordnumber',           'quonumber'
177   );
178
179   my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs };
180   my @searchable_custom_variables  = grep { $_->{searchable} }  @{ $cvar_configs };
181   my %column_defs_cvars            = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @includeable_custom_variables;
182
183   push @columns, map { "cvar_$_->{name}" } @includeable_custom_variables;
184
185   my %column_defs = (
186     'id'                => { 'text' => $locale->text('ID'), },
187     "$form->{db}number" => { 'text' => $locale->text('Number'), },
188     'name'              => { 'text' => $form->{IS_CUSTOMER} ? $::locale->text('Customer Name') : $::locale->text('Vendor Name'), },
189     'contact'           => { 'text' => $locale->text('Contact'), },
190     'phone'             => { 'text' => $locale->text('Phone'), },
191     'fax'               => { 'text' => $locale->text('Fax'), },
192     'email'             => { 'text' => $locale->text('E-mail'), },
193     'cc'                => { 'text' => $locale->text('Cc'), },
194     'taxnumber'         => { 'text' => $locale->text('Tax Number'), },
195     'business'          => { 'text' => $locale->text('Type of Business'), },
196     'invnumber'         => { 'text' => $locale->text('Invoice'), },
197     'ordnumber'         => { 'text' => $form->{IS_CUSTOMER} ? $locale->text('Sales Order') : $locale->text('Purchase Order'), },
198     'quonumber'         => { 'text' => $form->{IS_CUSTOMER} ? $locale->text('Quotation')   : $locale->text('Request for Quotation'), },
199     'street'            => { 'text' => $locale->text('Street'), },
200     'zipcode'           => { 'text' => $locale->text('Zipcode'), },
201     'city'              => { 'text' => $locale->text('City'), },
202     %column_defs_cvars,
203   );
204
205   map { $column_defs{$_}->{visible} = $form->{"l_$_"} eq 'Y' } @columns;
206
207   my @hidden_variables  = ( qw(
208       db status obsolete name contact email cp_name addr_street addr_zipcode
209       addr_city business_id
210     ), "$form->{db}number",
211     map({ "cvar_$_->{name}" } @searchable_custom_variables),
212     map({'cvar_'. $_->{name} .'_qtyop'} grep({$_->{type} eq 'number'} @searchable_custom_variables)),
213     map({ "l_$_" } @columns),
214   );
215
216   my @hidden_nondefault = grep({ $form->{$_} } @hidden_variables);
217   my $callback          = build_std_url('action=list_names', grep { $form->{$_} } @hidden_nondefault);
218   $form->{callback}     = "$callback&sort=" . E($form->{sort}) . "&sortdir=" . E($form->{sortdir});
219
220   foreach (@columns) {
221     my $sortdir              = $form->{sort} eq $_ ? 1 - $form->{sortdir} : $form->{sortdir};
222     $column_defs{$_}->{link} = "${callback}&sort=${_}&sortdir=${sortdir}";
223   }
224
225   my ($ordertype, $quotationtype, $attachment_basename);
226   if ($form->{IS_CUSTOMER}) {
227     $form->{title}       = $locale->text('Customers');
228     $ordertype           = 'sales_order';
229     $quotationtype       = 'sales_quotation';
230     $attachment_basename = $locale->text('customer_list');
231
232   } else {
233     $form->{title}       = $locale->text('Vendors');
234     $ordertype           = 'purchase_order';
235     $quotationtype       = 'request_quotation';
236     $attachment_basename = $locale->text('vendor_list');
237   }
238
239   my $report = SL::ReportGenerator->new(\%myconfig, $form);
240
241   $report->set_options('top_info_text'         => join("\n", @options),
242                        'raw_bottom_info_text'  => $form->parse_html_template('ct/list_names_bottom'),
243                        'output_format'         => 'HTML',
244                        'title'                 => $form->{title},
245                        'attachment_basename'   => $attachment_basename . strftime('_%Y%m%d', localtime time),
246     );
247   $report->set_options_from_form();
248   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
249
250   $report->set_columns(%column_defs);
251   $report->set_column_order(@columns);
252
253   $report->set_export_options('list_names', @hidden_variables, qw(sort sortdir));
254
255   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
256
257   CVar->add_custom_variables_to_report('module'         => 'CT',
258                                        'trans_id_field' => 'id',
259                                        'configs'        => $cvar_configs,
260                                        'column_defs'    => \%column_defs,
261                                        'data'           => $form->{CT});
262
263   my $previous_id;
264
265   foreach my $ref (@{ $form->{CT} }) {
266     my $row = { map { $_ => { 'data' => '' } } @columns };
267
268     if ($ref->{id} ne $previous_id) {
269       $previous_id = $ref->{id};
270       map { $row->{$_}->{data} = $ref->{$_} } @columns;
271
272       $row->{name}->{link}  = build_std_url('action=edit', 'id=' . E($ref->{id}), 'callback', @hidden_nondefault);
273       $row->{email}->{link} = 'mailto:' . E($ref->{email});
274     }
275
276     my $base_url              = build_std_url("script=$ref->{module}.pl", 'action=edit', 'id=' . E($ref->{invid}), 'callback', @hidden_nondefault);
277     $row->{invnumber}->{link} = $base_url;
278     $row->{ordnumber}->{link} = $base_url . "&type=${ordertype}";
279     $row->{quonumber}->{link} = $base_url . "&type=${quotationtype}";
280     my $column                = $ref->{formtype} eq 'invoice' ? 'invnumber' : $ref->{formtype} eq 'order' ? 'ordnumber' : 'quonumber';
281     $row->{$column}->{data}   = $ref->{$column};
282
283     $report->add_data($row);
284   }
285
286   $report->generate_with_headers();
287
288   $main::lxdebug->leave_sub();
289 }
290
291 sub list_contacts {
292   $::lxdebug->enter_sub;
293   $::auth->assert('customer_vendor_edit');
294
295   $::form->{sortdir} = 1 unless defined $::form->{sortdir};
296
297   my @contacts     = CT->search_contacts(
298     search_term => $::form->{search_term},
299     filter      => $::form->{filter},
300   );
301
302   my $cvar_configs = CVar->get_configs('module' => 'Contacts');
303
304   my @columns      = qw(
305     cp_id vcname vcnumber cp_name cp_givenname cp_street cp_zipcode cp_city cp_phone1 cp_phone2
306     cp_mobile1 cp_mobile2 cp_email cp_abteilung cp_birthday cp_gender
307   );
308
309   my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs };
310   my @searchable_custom_variables  = grep { $_->{searchable} }  @{ $cvar_configs };
311   my %column_defs_cvars            = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @includeable_custom_variables;
312
313   push @columns, map { "cvar_$_->{name}" } @includeable_custom_variables;
314
315   my @visible_columns;
316   if ($::form->{l}) {
317     @visible_columns = grep { $::form->{l}{$_} } @columns;
318     push @visible_columns, qw(cp_phone1 cp_phone2)   if $::form->{l}{cp_phone};
319     push @visible_columns, qw(cp_mobile1 cp_mobile2) if $::form->{l}{cp_mobile};
320   } else {
321    @visible_columns = qw(vcname vcnumber cp_name cp_givenname cp_phone1 cp_phone2 cp_mobile1 cp_email);
322   }
323
324   my %column_defs  = (
325     'cp_id'        => { 'text' => $::locale->text('ID'), },
326     'vcname'       => { 'text' => $::locale->text('Customer/Vendor'), },
327     'vcnumber'     => { 'text' => $::locale->text('Customer/Vendor Number'), },
328     'cp_name'      => { 'text' => $::locale->text('Name'), },
329     'cp_givenname' => { 'text' => $::locale->text('Given Name'), },
330     'cp_street'    => { 'text' => $::locale->text('Street'), },
331     'cp_zipcode'   => { 'text' => $::locale->text('Zipcode'), },
332     'cp_city'      => { 'text' => $::locale->text('City'), },
333     'cp_phone1'    => { 'text' => $::locale->text('Phone1'), },
334     'cp_phone2'    => { 'text' => $::locale->text('Phone2'), },
335     'cp_mobile1'   => { 'text' => $::locale->text('Mobile1'), },
336     'cp_mobile2'   => { 'text' => $::locale->text('Mobile2'), },
337     'cp_email'     => { 'text' => $::locale->text('E-mail'), },
338     'cp_abteilung' => { 'text' => $::locale->text('Department'), },
339     'cp_birthday'  => { 'text' => $::locale->text('Birthday'), },
340     'cp_gender'    => { 'text' => $::locale->text('Gender'), },
341     %column_defs_cvars,
342   );
343
344   map { $column_defs{$_}->{visible} = 1 } @visible_columns;
345
346   my @hidden_variables  = (qw(search_term filter l));
347   my $hide_vars         = { map { $_ => $::form->{$_} } @hidden_variables };
348   my @hidden_nondefault = grep({ $::form->{$_} } @hidden_variables);
349   my $callback          = build_std_url('action=list_contacts', join '&', map { E($_->[0]) . '=' . E($_->[1]) } @{ flatten($hide_vars) });
350   $::form->{callback}     = "$callback&sort=" . E($::form->{sort});
351
352   map { $column_defs{$_}->{link} = "${callback}&sort=${_}&sortdir=" . ($::form->{sort} eq $_ ? 1 - $::form->{sortdir} : $::form->{sortdir}) } @columns;
353
354   $::form->{title} = $::locale->text('Contacts');
355
356   my $report     = SL::ReportGenerator->new(\%::myconfig, $::form);
357
358   my @options;
359   push @options, $::locale->text('Search term') . ': ' . $::form->{search_term} if $::form->{search_term};
360   for (qw(cp_name cp_givenname cp_title cp_email cp_abteilung cp_project)) {
361     push @options, $column_defs{$_}{text} . ': ' . $::form->{filter}{$_} if $::form->{filter}{$_};
362   }
363   if ($::form->{filter}{status}) {
364     push @options, $::locale->text('Status') . ': ' . (
365       $::form->{filter}{status} =~ /active/   ? $::locale->text('Active')   :
366       $::form->{filter}{status} =~ /orphaned/ ? $::locale->text('Orphaned') :
367       $::form->{filter}{status} =~ /all/      ? $::locale->text('All')      : ''
368     );
369   }
370
371
372   $report->set_options('top_info_text'       => join("\n", @options),
373                        'output_format'       => 'HTML',
374                        'title'               => $::form->{title},
375                        'attachment_basename' => $::locale->text('contact_list') . strftime('_%Y%m%d', localtime time),
376     );
377   $report->set_options_from_form;
378
379   $report->set_columns(%column_defs);
380   $report->set_column_order(@columns);
381
382   $report->set_export_options('list_contacts', @hidden_variables);
383
384   $report->set_sort_indicator($::form->{sort}, $::form->{sortdir});
385
386   CVar->add_custom_variables_to_report('module'         => 'Contacts',
387                                        'trans_id_field' => 'cp_id',
388                                        'configs'        => $cvar_configs,
389                                        'column_defs'    => \%column_defs,
390                                        'data'           => \@contacts);
391
392
393   foreach my $ref (@contacts) {
394     my $row = { map { $_ => { 'data' => $ref->{$_} } } @columns };
395
396     $row->{vcname}->{link}   = build_std_url('action=edit', 'id=' . E($ref->{vcid}), 'db=' . E($ref->{db}), 'callback', @hidden_nondefault);
397     $row->{vcnumber}->{link} = $row->{vcname}->{link};
398     $row->{cp_email}->{link} = 'mailto:' . E($ref->{cp_email});
399
400     $report->add_data($row);
401   }
402
403   $report->generate_with_headers;
404
405   $::lxdebug->leave_sub;
406 }
407
408 sub edit {
409   $main::lxdebug->enter_sub();
410
411   $main::auth->assert('customer_vendor_edit');
412
413   my $form     = $main::form;
414   my %myconfig = %main::myconfig;
415
416   # show history button
417   $form->{javascript} = qq|<script type=text/javascript src=js/show_history.js></script>|;
418   #/show hhistory button
419
420   CT->get_tuple(\%myconfig, \%$form);
421   CT->populate_drop_down_boxes(\%myconfig, \%$form);
422
423   $form->{title} = "Edit";
424
425   # format discount
426   $form->{discount} *= 100;
427   # format uri
428   $form->{homepage} = 'http://' . $form->{homepage} unless ((!$form->{homepage}) || $form->{homepage} =~ m|^https?://|);
429
430   &form_header;
431   &form_footer;
432
433   $main::lxdebug->leave_sub();
434 }
435
436 sub _shipto_label {
437   my $s = shift(@_);
438   join('; ', grep { $_ } map { $s->{"shipto$_"} } qw(name department_1 street city)) || ' '
439 }
440
441 sub _contacts_label {
442   join ", ", grep { $_ } $_[0]->{cp_name}, $_[0]->{cp_givenname};
443 }
444
445 sub form_header {
446   $main::lxdebug->enter_sub();
447
448   $main::auth->assert('customer_vendor_edit');
449
450   my $form     = $main::form;
451   my %myconfig = %main::myconfig;
452   my $locale   = $main::locale;
453
454   $form->get_lists(taxzones   => "ALL_TAXZONES",
455                    currencies => "ALL_CURRENCIES");
456   $form->get_pricegroup(\%myconfig, { all => 1 });
457
458   $form->get_lists(customers => { key => "ALL_SALESMAN_CUSTOMERS", business_is_salesman => 1 }) if $::lx_office_conf{features}->{vertreter};
459   $form->{ALL_EMPLOYEES}          = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $::form->{FU_created_for_user},  deleted => 0 ] ]);
460   $form->{ALL_SALESMEN}           = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $::form->{salesman_id},  deleted => 0 ] ]);
461   $form->{USER}                   = SL::DB::Manager::Employee->current;
462
463   $form->{taxincluded}    = ($form->{taxincluded}) ? "checked" : "";
464   $form->{is_customer}    = $form->{db}     eq 'customer';
465   $form->{shipto_label}   = \&_shipto_label;
466   $form->{contacts_label} = \&_contacts_label;
467   $form->{taxzone_id}     = 0                                                               if !$form->{id};
468   $form->{jsscript}       = 1;
469   $form->{SHIPTO_ALL}     = [ +{ shipto_id => '0', shiptoname => $::locale->text('All') }, @{ $form->{SHIPTO} } ];
470   $::request->{layout}->focus("#greeting");
471
472   $form->{title} = $form->{title_save}
473                 || $locale->text("$form->{title} " . ucfirst $form->{db}) . ($form->{title} eq "Edit" ? " $form->{name}" : '');
474
475   CT->query_titles_and_greetings(\%myconfig, \%$form);
476   map { $form->{"MB_$_"} = [ map +{ id => $_, description => $_ }, @{ $form->{$_} } ] } qw(COMPANY_GREETINGS);
477
478   $form->{NOTES} ||= [ ];
479
480   if (!$form->{'language_id'}) {
481     my $l_id = SL::DB::Default->get->{'language_id'};
482     if ($l_id) {
483       $form->{'default_language_id'} = $l_id;
484     }
485   }
486
487   if (!$form->{'id'}) {
488     $form->{'currency'} = $form->get_default_currency(\%myconfig);
489   } else {
490     $form->{currency} = $form->{curr};
491   }
492
493   $::form->{CUSTOM_VARIABLES} = { };
494   my %specs = ( CT       => { field => 'id',    name_prefix => '',   },
495                 Contacts => { field => 'cp_id', name_prefix => 'cp', },
496               );
497
498   for my $module (keys %specs) {
499     my $spec = $specs{$module};
500
501     $::form->{CUSTOM_VARIABLES}->{$module} = CVar->get_custom_variables(module => $module, trans_id => $::form->{ $spec->{field} });
502     CVar->render_inputs(variables => $::form->{CUSTOM_VARIABLES}->{$module}, name_prefix => $spec->{name_prefix})
503       if scalar @{ $::form->{CUSTOM_VARIABLES}->{$module} };
504   }
505
506   $form->header;
507   print $form->parse_html_template('ct/form_header');
508
509   $main::lxdebug->leave_sub();
510 }
511
512 sub form_footer {
513   $main::lxdebug->enter_sub();
514
515   $main::auth->assert('customer_vendor_edit');
516
517   my $form     = $main::form;
518
519   print $form->parse_html_template('ct/form_footer', { is_orphaned => $form->{status} eq 'orphaned',
520                                                        is_customer => $form->{db}     eq 'customer' });
521   $main::lxdebug->leave_sub();
522 }
523
524 sub _do_save {
525   $main::auth->assert('customer_vendor_edit');
526
527   $::form->isblank("name", $::locale->text("Name missing!"));
528
529   if ($::form->{new_salesman_id} && $::lx_office_conf{features}->{vertreter}) {
530     $::form->{salesman_id} = $::form->{new_salesman_id};
531     delete $::form->{new_salesman_id};
532   }
533
534   my $res = $::form->{db} eq 'customer' ? CT->save_customer(\%::myconfig, $::form) : CT->save_vendor(\%::myconfig, $::form);
535
536   if (3 == $res) {
537     if ($::form->{"db"} eq "customer") {
538       $::form->error($::locale->text('This customer number is already in use.'));
539     } else {
540       $::form->error($::locale->text('This vendor number is already in use.'));
541     }
542   }
543 }
544
545 sub add_transaction {
546   $main::lxdebug->enter_sub();
547
548   $main::auth->assert('customer_vendor_edit & ' .
549                 '(general_ledger         | invoice_edit         | vendor_invoice_edit | ' .
550                 ' request_quotation_edit | sales_quotation_edit | sales_order_edit    | purchase_order_edit)');
551
552   my $form     = $main::form;
553   my %myconfig = %main::myconfig;
554   my $locale   = $main::locale;
555
556 #  # saving the history
557 #  if(!exists $form->{addition}) {
558 #    $form->{addition} = "ADD TRANSACTION";
559 #    $form->save_history;
560 #  }
561 #  # /saving the history
562
563   _do_save();
564
565   $form->{callback} = $form->escape($form->{callback}, 1);
566   my $name = $form->escape("$form->{name}", 1);
567
568   $form->{callback} =
569     "$form->{script}?action=add&vc=$form->{db}&$form->{db}_id=$form->{id}&$form->{db}=$name&type=$form->{type}&callback=$form->{callback}";
570   $form->redirect;
571
572   $main::lxdebug->leave_sub();
573 }
574
575 sub save_and_ap_transaction {
576   $main::lxdebug->enter_sub();
577
578   $main::auth->assert('customer_vendor_edit & general_ledger');
579
580   my $form     = $main::form;
581   my %myconfig = %main::myconfig;
582
583   $form->{script} = "ap.pl";
584   # saving the history
585   if(!exists $form->{addition}) {
586     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
587     $form->{addition} = "SAVED";
588     $form->save_history;
589   }
590   # /saving the history
591   &add_transaction;
592   $main::lxdebug->leave_sub();
593 }
594
595 sub save_and_ar_transaction {
596   $main::lxdebug->enter_sub();
597
598   $main::auth->assert('customer_vendor_edit & general_ledger');
599
600   my $form     = $main::form;
601   my %myconfig = %main::myconfig;
602
603   $form->{script} = "ar.pl";
604   # saving the history
605   if(!exists $form->{addition}) {
606     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
607     $form->{addition} = "SAVED";
608     $form->save_history;
609   }
610   # /saving the history
611   &add_transaction;
612   $main::lxdebug->leave_sub();
613 }
614
615 sub save_and_invoice {
616   $main::lxdebug->enter_sub();
617
618   my $form     = $main::form;
619   my %myconfig = %main::myconfig;
620
621   if ($form->{db} eq 'customer') {
622     $main::auth->assert('customer_vendor_edit & invoice_edit');
623   } else {
624     $main::auth->assert('customer_vendor_edit & vendor_invoice_edit');
625   }
626
627   $form->{script} = ($form->{db} eq 'customer') ? "is.pl" : "ir.pl";
628   $form->{type} = "invoice";
629   # saving the history
630   if(!exists $form->{addition}) {
631     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
632     $form->{addition} = "SAVED";
633     $form->save_history;
634   }
635   # /saving the history
636   &add_transaction;
637   $main::lxdebug->leave_sub();
638 }
639
640 sub save_and_rfq {
641   $main::lxdebug->enter_sub();
642
643   $main::auth->assert('customer_vendor_edit & request_quotation_edit');
644
645   my $form     = $main::form;
646   my %myconfig = %main::myconfig;
647
648   $form->{script} = "oe.pl";
649   $form->{type}   = "request_quotation";
650   # saving the history
651   if(!exists $form->{addition}) {
652     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
653     $form->{addition} = "SAVED";
654     $form->save_history;
655   }
656   # /saving the history
657   &add_transaction;
658   $main::lxdebug->leave_sub();
659 }
660
661 sub save_and_quotation {
662   $main::lxdebug->enter_sub();
663
664   $main::auth->assert('customer_vendor_edit & sales_quotation_edit');
665
666   my $form     = $main::form;
667   my %myconfig = %main::myconfig;
668
669   $form->{script} = "oe.pl";
670   $form->{type}   = "sales_quotation";
671   # saving the history
672   if(!exists $form->{addition}) {
673     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
674     $form->{addition} = "SAVED";
675     $form->save_history;
676   }
677   # /saving the history
678   &add_transaction;
679   $main::lxdebug->leave_sub();
680 }
681
682 sub save_and_order {
683   $main::lxdebug->enter_sub();
684
685   my $form     = $main::form;
686   my %myconfig = %main::myconfig;
687
688   if ($form->{db} eq 'customer') {
689     $main::auth->assert('customer_vendor_edit & sales_order_edit');
690   } else {
691     $main::auth->assert('customer_vendor_edit & purchase_order_edit');
692   }
693
694   $form->{script} = "oe.pl";
695   $form->{type}   =
696     ($form->{db} eq 'customer') ? "sales_order" : "purchase_order";
697   # saving the history
698   if(!exists $form->{addition}) {
699     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
700     $form->{addition} = "SAVED";
701     $form->save_history;
702   }
703   # /saving the history
704   &add_transaction;
705   $main::lxdebug->leave_sub();
706 }
707
708 sub save_and_close {
709   $main::lxdebug->enter_sub();
710
711   $main::auth->assert('customer_vendor_edit');
712
713   my $form     = $main::form;
714   my %myconfig = %main::myconfig;
715   my $locale   = $main::locale;
716
717   my $msg = ucfirst $form->{db};
718   $msg .= " saved!";
719
720   _do_save();
721
722   # saving the history
723   if(!exists $form->{addition}) {
724     $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber});
725     $form->{addition} = "SAVED";
726     $form->save_history;
727   }
728   # /saving the history
729   $form->redirect($locale->text($msg));
730
731   $main::lxdebug->leave_sub();
732 }
733
734 sub save {
735   $main::lxdebug->enter_sub();
736
737   $main::auth->assert('customer_vendor_edit');
738
739   my $form     = $main::form;
740   my %myconfig = %main::myconfig;
741   my $locale   = $main::locale;
742
743   my $msg = ucfirst $form->{db};
744   $msg .= " saved!";
745
746   _do_save();
747
748   # saving the history
749   if(!exists $form->{addition}) {
750     $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber});
751     $form->{addition} = "SAVED";
752     $form->save_history;
753   }
754   # /saving the history
755   &edit;
756
757   $main::lxdebug->leave_sub();
758   ::end_of_request();
759 }
760
761 sub delete {
762   $main::lxdebug->enter_sub();
763
764   $main::auth->assert('customer_vendor_edit');
765
766   my $form     = $main::form;
767   my %myconfig = %main::myconfig;
768   my $locale   = $main::locale;
769
770   CT->delete(\%myconfig, \%$form);
771
772   my $msg = ucfirst $form->{db};
773   $msg .= " deleted!";
774   # saving the history
775   if(!exists $form->{addition}) {
776     $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber});
777     $form->{addition} = "DELETED";
778     $form->save_history;
779   }
780   # /saving the history
781   $form->redirect($locale->text($msg));
782
783   $main::lxdebug->leave_sub();
784 }
785
786 sub display {
787   $main::lxdebug->enter_sub();
788
789   $main::auth->assert('customer_vendor_edit');
790
791   my $form     = $main::form;
792
793   &form_header();
794   &form_footer();
795
796   $main::lxdebug->leave_sub();
797 }
798
799 sub update {
800   $main::lxdebug->enter_sub();
801
802   $main::auth->assert('customer_vendor_edit');
803
804   my $form     = $main::form;
805
806   &display();
807   $main::lxdebug->leave_sub();
808 }
809
810 sub get_contact {
811   $main::lxdebug->enter_sub();
812
813   $main::auth->assert('customer_vendor_edit');
814
815   CT->populate_drop_down_boxes(\%::myconfig, $::form);
816   CT->query_titles_and_greetings(\%::myconfig, $::form);
817   CT->get_contact(\%::myconfig, $::form) if $::form->{cp_id};
818
819   $::form->{CUSTOM_VARIABLES}{Contacts} = CVar->get_custom_variables(module => 'Contacts', trans_id => $::form->{cp_id});
820   CVar->render_inputs(variables => $::form->{CUSTOM_VARIABLES}{Contacts}, name_prefix => 'cp')
821     if scalar @{ $::form->{CUSTOM_VARIABLES}->{Contacts} };
822
823   $::form->{contacts_label} = \&_contacts_label;
824
825   print $::form->ajax_response_header(), $::form->parse_html_template('ct/_contact');
826
827   $main::lxdebug->leave_sub();
828 }
829
830 sub get_shipto {
831   $main::lxdebug->enter_sub();
832
833   $main::auth->assert('customer_vendor_edit');
834
835   CT->populate_drop_down_boxes(\%::myconfig, $::form);
836   CT->get_shipto(\%::myconfig, $::form) if $::form->{shipto_id};
837
838   $::form->{shipto_label} = \&_shipto_label;
839
840   print $::form->ajax_response_header(), $::form->parse_html_template('ct/_shipto');
841
842   $main::lxdebug->leave_sub();
843 }
844
845 sub get_delivery {
846   $::lxdebug->enter_sub;
847
848   $::auth->assert('customer_vendor_edit');
849   $::auth->assert('sales_all_edit');
850
851   CT->get_delivery(\%::myconfig, $::form );
852
853   print $::form->ajax_response_header,
854         $::form->parse_html_template('ct/get_delivery', {
855           is_customer =>  $::form->{db} eq 'customer',
856         });
857
858   $::lxdebug->leave_sub;
859 }
860
861 sub delete_shipto {
862   $::lxdebug->enter_sub;
863   $::auth->assert('customer_vendor_edit');
864
865   if (!$::form->{shipto_id}) {
866     flash('error', $::locale->text('No shipto selected to delete'));
867   } else {
868
869     CT->get_shipto(\%::myconfig, $::form);
870
871     my $shipto = SL::DB::Manager::Shipto->find_by(shipto_id => $::form->{shipto_id});
872
873     if ($shipto->used) {
874       $shipto->detach->save;
875       flash('info', $::locale->text('Shipto is in use and was flagged invalid.'));
876     } else {
877       $shipto->delete;
878       flash('info', $::locale->text('Shipto deleted.'));
879     }
880     delete $::form->{$_} for grep /^shipto/, keys %$::form;
881   }
882
883   edit();
884
885   $::lxdebug->leave_sub;
886 }
887
888 sub delete_contact {
889   $::lxdebug->enter_sub;
890   $::auth->assert('customer_vendor_edit');
891
892   if (!$::form->{cp_id}) {
893     flash('error', $::locale->text('No contact selected to delete'));
894   } else {
895
896     CT->get_contact(\%::myconfig, $::form);
897
898     my $contact = SL::DB::Manager::Contact->find_by(cp_id => $::form->{cp_id});
899
900     if ($contact->used) {
901       $contact->detach->save;
902       flash('info', $::locale->text('Contact is in use and was flagged invalid.'));
903     } else {
904       $contact->delete;
905       flash('info', $::locale->text('Contact deleted.'));
906     }
907     delete $::form->{$_} for grep /^cp_/, keys %$::form;
908   }
909
910   edit();
911
912   $::lxdebug->leave_sub;
913 }
914
915 sub ajax_autocomplete {
916   $main::lxdebug->enter_sub();
917
918   my $form     = $main::form;
919   my %myconfig = %main::myconfig;
920
921   $form->{column}          = 'name'     unless $form->{column} =~ /^name$/;
922   $form->{vc}              = 'customer' unless $form->{vc} =~ /^customer|vendor$/;
923   $form->{db}              = $form->{vc}; # CT expects this
924   $form->{$form->{column}} = $form->{q}           || '';
925   $form->{limit}           = ($form->{limit} * 1) || 10;
926   $form->{searchitems}   ||= '';
927
928   CT->search(\%myconfig, $form);
929
930   print $form->ajax_response_header(),
931         $form->parse_html_template('ct/ajax_autocomplete');
932
933   $main::lxdebug->leave_sub();
934 }
935
936 sub continue { call_sub($main::form->{nextsub}); }