1 #=====================================================================
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (c) 1998-2002
11 # Author: Dieter Simader
12 # Email: dsimader@sql-ledger.org
13 # Web: http://www.sql-ledger.org
15 # Contributors: Reed White <alta@alta-research.com>
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.
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 #======================================================================
31 # customer/vendor module
33 #======================================================================
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!')
49 use POSIX qw(strftime);
53 use SL::ReportGenerator;
55 require "bin/mozilla/common.pl";
56 require "bin/mozilla/reportgenerator.pl";
64 $main::lxdebug->enter_sub();
66 $main::auth->assert('customer_vendor_edit');
68 my $form = $main::form;
69 my %myconfig = %main::myconfig;
71 $form->{title} = "Add";
72 $form->{callback} = "$form->{script}?action=add&db=$form->{db}" unless $form->{callback};
74 CT->populate_drop_down_boxes(\%myconfig, \%$form);
79 $main::lxdebug->leave_sub();
83 $main::lxdebug->enter_sub();
85 $main::auth->assert('customer_vendor_edit');
87 my $form = $main::form;
88 my $locale = $main::locale;
90 $form->{IS_CUSTOMER} = $form->{db} eq 'customer';
92 $form->get_lists("business_types" => "ALL_BUSINESS_TYPES");
93 $form->{SHOW_BUSINESS_TYPES} = scalar @{ $form->{ALL_BUSINESS_TYPES} } > 0;
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');
101 $form->{jsscript} = 1;
102 $form->{title} = $form->{IS_CUSTOMER} ? $locale->text('Customers') : $locale->text('Vendors');
103 $form->{fokus} = 'Form.name';
106 print $form->parse_html_template('ct/search');
108 $main::lxdebug->leave_sub();
112 $main::lxdebug->enter_sub();
114 $main::auth->assert('customer_vendor_edit');
116 my $form = $main::form;
117 my %myconfig = %main::myconfig;
118 my $locale = $main::locale;
120 $form->{IS_CUSTOMER} = $form->{db} eq 'customer';
122 report_generator_set_default_sort('name', 1);
124 CT->search(\%myconfig, \%$form);
126 my $cvar_configs = CVar->get_configs('module' => 'CT');
129 if ($form->{status} eq 'all') {
130 push @options, $locale->text('All');
131 } elsif ($form->{status} eq 'orphaned') {
132 push @options, $locale->text('Orphaned');
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};
145 'id', 'name', "$form->{db}number", 'contact', 'phone',
146 'fax', 'email', 'taxnumber', 'street', 'zipcode' , 'city',
147 'business', 'invnumber', 'ordnumber', 'quonumber'
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;
154 push @columns, map { "cvar_$_->{name}" } @includeable_custom_variables;
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'), },
176 map { $column_defs{$_}->{visible} = $form->{"l_$_"} eq 'Y' } @columns;
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});
184 my $sortdir = $form->{sort} eq $_ ? 1 - $form->{sortdir} : $form->{sortdir};
185 $column_defs{$_}->{link} = "${callback}&sort=${_}&sortdir=${sortdir}";
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');
196 $form->{title} = $locale->text('Vendors');
197 $ordertype = 'purchase_order';
198 $quotationtype = 'request_quotation';
199 $attachment_basename = $locale->text('vendor_list');
202 my $report = SL::ReportGenerator->new(\%myconfig, $form);
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),
210 $report->set_options_from_form();
212 $report->set_columns(%column_defs);
213 $report->set_column_order(@columns);
215 $report->set_export_options('list_names', @hidden_variables, qw(sort sortdir));
217 $report->set_sort_indicator($form->{sort}, $form->{sortdir});
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});
227 foreach my $ref (@{ $form->{CT} }) {
228 my $row = { map { $_ => { 'data' => '' } } @columns };
230 if ($ref->{id} ne $previous_id) {
231 $previous_id = $ref->{id};
232 map { $row->{$_}->{data} = $ref->{$_} } @columns;
234 $row->{name}->{link} = build_std_url('action=edit', 'id=' . E($ref->{id}), 'callback', @hidden_nondefault);
235 $row->{email}->{link} = 'mailto:' . E($ref->{email});
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};
245 $report->add_data($row);
248 $report->generate_with_headers();
250 $main::lxdebug->leave_sub();
254 $main::lxdebug->enter_sub();
256 $main::auth->assert('customer_vendor_edit');
258 my $form = $main::form;
259 my %myconfig = %main::myconfig;
261 # show history button
262 $form->{javascript} = qq|<script type=text/javascript src=js/show_history.js></script>|;
263 #/show hhistory button
265 CT->get_tuple(\%myconfig, \%$form);
266 CT->populate_drop_down_boxes(\%myconfig, \%$form);
268 $form->{title} = "Edit";
271 $form->{discount} *= 100;
276 $main::lxdebug->leave_sub();
280 $main::lxdebug->enter_sub();
282 $main::auth->assert('customer_vendor_edit');
284 my $form = $main::form;
285 my %myconfig = %main::myconfig;
286 my $locale = $main::locale;
288 $form->get_lists(employees => "ALL_EMPLOYEES",
289 taxzones => "ALL_TAXZONES");
290 $form->get_pricegroup(\%myconfig, { all => 1 });
292 $form->get_lists(customers => { key => "ALL_SALESMAN_CUSTOMERS", business_is_salesman => 1 }) if $::vertreter;
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) ) ];
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') };
309 $form->{title} = $form->{title_save}
310 || $locale->text("$form->{title} " . ucfirst $form->{db}) . ($form->{title} eq "Edit" ? " $form->{name}" : '');
312 CT->query_titles_and_greetings(\%myconfig, \%$form);
313 map { $form->{"MB_$_"} = [ map +{ id => $_, description => $_ }, @{ $form->{$_} } ] } qw(TITLES GREETINGS COMPANY_GREETINGS DEPARTMENT);
315 $form->{NOTES} ||= [ ];
317 $form->{CUSTOM_VARIABLES} = CVar->get_custom_variables('module' => 'CT', 'trans_id' => $form->{id});
319 CVar->render_inputs('variables' => $form->{CUSTOM_VARIABLES}) if (scalar @{ $form->{CUSTOM_VARIABLES} });
322 print $form->parse_html_template('ct/form_header');
324 $main::lxdebug->leave_sub();
328 $main::lxdebug->enter_sub();
330 $main::auth->assert('customer_vendor_edit');
332 my $form = $main::form;
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();
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)');
344 $::form->isblank("name", $::locale->text("Name missing!"));
346 if ($::form->{new_salesman_id} && $::vertreter) {
347 $::form->{salesman_id} = $::form->{new_salesman_id};
348 delete $::form->{new_salesman_id};
351 my $res = $::form->{db} eq 'customer' ? CT->save_customer(\%::myconfig, $::form) : CT->save_vendor(\%::myconfig, $::form);
354 if ($::form->{"db"} eq "customer") {
355 $::form->error($::locale->text('This customer number is already in use.'));
357 $::form->error($::locale->text('This vendor number is already in use.'));
362 sub add_transaction {
363 $main::lxdebug->enter_sub();
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)');
369 my $form = $main::form;
370 my %myconfig = %main::myconfig;
371 my $locale = $main::locale;
373 # # saving the history
374 # if(!exists $form->{addition}) {
375 # $form->{addition} = "ADD TRANSACTION";
376 # $form->save_history;
378 # # /saving the history
382 $form->{callback} = $form->escape($form->{callback}, 1);
383 my $name = $form->escape("$form->{name}", 1);
386 "$form->{script}?action=add&vc=$form->{db}&$form->{db}_id=$form->{id}&$form->{db}=$name&type=$form->{type}&callback=$form->{callback}";
389 $main::lxdebug->leave_sub();
392 sub save_and_ap_transaction {
393 $main::lxdebug->enter_sub();
395 $main::auth->assert('customer_vendor_edit & general_ledger');
397 my $form = $main::form;
398 my %myconfig = %main::myconfig;
400 $form->{script} = "ap.pl";
402 if(!exists $form->{addition}) {
403 $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
404 $form->{addition} = "SAVED";
407 # /saving the history
409 $main::lxdebug->leave_sub();
412 sub save_and_ar_transaction {
413 $main::lxdebug->enter_sub();
415 $main::auth->assert('customer_vendor_edit & general_ledger');
417 my $form = $main::form;
418 my %myconfig = %main::myconfig;
420 $form->{script} = "ar.pl";
422 if(!exists $form->{addition}) {
423 $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
424 $form->{addition} = "SAVED";
427 # /saving the history
429 $main::lxdebug->leave_sub();
432 sub save_and_invoice {
433 $main::lxdebug->enter_sub();
435 my $form = $main::form;
436 my %myconfig = %main::myconfig;
438 if ($form->{db} eq 'customer') {
439 $main::auth->assert('customer_vendor_edit & invoice_edit');
441 $main::auth->assert('customer_vendor_edit & vendor_invoice_edit');
444 $form->{script} = ($form->{db} eq 'customer') ? "is.pl" : "ir.pl";
445 $form->{type} = "invoice";
447 if(!exists $form->{addition}) {
448 $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
449 $form->{addition} = "SAVED";
452 # /saving the history
454 $main::lxdebug->leave_sub();
458 $main::lxdebug->enter_sub();
460 $main::auth->assert('customer_vendor_edit & request_quotation_edit');
462 my $form = $main::form;
463 my %myconfig = %main::myconfig;
465 $form->{script} = "oe.pl";
466 $form->{type} = "request_quotation";
468 if(!exists $form->{addition}) {
469 $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
470 $form->{addition} = "SAVED";
473 # /saving the history
475 $main::lxdebug->leave_sub();
478 sub save_and_quotation {
479 $main::lxdebug->enter_sub();
481 $main::auth->assert('customer_vendor_edit & sales_quotation_edit');
483 my $form = $main::form;
484 my %myconfig = %main::myconfig;
486 $form->{script} = "oe.pl";
487 $form->{type} = "sales_quotation";
489 if(!exists $form->{addition}) {
490 $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
491 $form->{addition} = "SAVED";
494 # /saving the history
496 $main::lxdebug->leave_sub();
500 $main::lxdebug->enter_sub();
502 my $form = $main::form;
503 my %myconfig = %main::myconfig;
505 if ($form->{db} eq 'customer') {
506 $main::auth->assert('customer_vendor_edit & sales_order_edit');
508 $main::auth->assert('customer_vendor_edit & purchase_order_edit');
511 $form->{script} = "oe.pl";
513 ($form->{db} eq 'customer') ? "sales_order" : "purchase_order";
515 if(!exists $form->{addition}) {
516 $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
517 $form->{addition} = "SAVED";
520 # /saving the history
522 $main::lxdebug->leave_sub();
526 $main::lxdebug->enter_sub();
528 $main::auth->assert('customer_vendor_edit');
530 my $form = $main::form;
531 my %myconfig = %main::myconfig;
532 my $locale = $main::locale;
534 my $msg = ucfirst $form->{db};
540 if(!exists $form->{addition}) {
541 $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber});
542 $form->{addition} = "SAVED";
545 # /saving the history
546 $form->redirect($locale->text($msg));
548 $main::lxdebug->leave_sub();
552 $main::lxdebug->enter_sub();
554 $main::auth->assert('customer_vendor_edit');
556 my $form = $main::form;
557 my %myconfig = %main::myconfig;
558 my $locale = $main::locale;
560 my $msg = ucfirst $form->{db};
566 if(!exists $form->{addition}) {
567 $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber});
568 $form->{addition} = "SAVED";
571 # /saving the history
574 $main::lxdebug->leave_sub();
579 $main::lxdebug->enter_sub();
581 $main::auth->assert('customer_vendor_edit');
583 my $form = $main::form;
584 my %myconfig = %main::myconfig;
585 my $locale = $main::locale;
587 CT->delete(\%myconfig, \%$form);
589 my $msg = ucfirst $form->{db};
592 if(!exists $form->{addition}) {
593 $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber});
594 $form->{addition} = "DELETED";
597 # /saving the history
598 $form->redirect($locale->text($msg));
600 $msg = "Cannot delete $form->{db}";
601 $form->error($locale->text($msg));
603 $main::lxdebug->leave_sub();
607 $main::lxdebug->enter_sub();
609 $main::auth->assert('customer_vendor_edit');
611 my $form = $main::form;
616 $main::lxdebug->leave_sub();
620 $main::lxdebug->enter_sub();
622 $main::auth->assert('customer_vendor_edit');
624 my $form = $main::form;
627 $main::lxdebug->leave_sub();
631 $main::lxdebug->enter_sub();
633 $main::auth->assert('customer_vendor_edit');
635 my $form = $main::form;
636 my %myconfig = %main::myconfig;
638 CT->get_contact(\%myconfig, \%$form);
639 print $form->ajax_response_header(), join '__pjx__', map $form->{"cp_$_"},
640 qw(name title givenname phone1 phone2 email abteilung fax mobile1 mobile2 satphone satfax project privatphone privatemail birthday used gender);
641 $main::lxdebug->leave_sub();
646 $main::lxdebug->enter_sub();
648 $main::auth->assert('customer_vendor_edit');
650 my $form = $main::form;
651 my %myconfig = %main::myconfig;
653 CT->get_shipto(\%myconfig, \%$form);
654 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)));
655 $main::lxdebug->leave_sub();
660 $::lxdebug->enter_sub;
662 $::auth->assert('customer_vendor_edit');
663 $::auth->assert('sales_all_edit');
665 CT->get_delivery(\%::myconfig, $::form );
667 print $::form->ajax_response_header,
668 $::form->parse_html_template('ct/get_delivery', {
669 is_customer => $::form->{db} eq 'customer',
672 $::lxdebug->leave_sub;
676 $main::lxdebug->enter_sub();
678 $main::auth->assert('customer_vendor_edit');
680 my $form = $main::form;
681 my %myconfig = %main::myconfig;
683 CT->get_shipto(\%myconfig, \%$form);
685 unless ($form->{shiptoused}) {
686 CT->delete_shipto($form->{shipto_id});
687 @$form{ grep /^shipto/, keys %$form } = undef;
692 $main::lxdebug->leave_sub();
696 $main::lxdebug->enter_sub();
698 $main::auth->assert('customer_vendor_edit');
700 my $form = $main::form;
701 my %myconfig = %main::myconfig;
703 CT->get_contact(\%myconfig, \%$form);
705 unless ($form->{cp_used}) {
706 CT->delete_shipto($form->{cp_id});
707 @$form{ grep /^cp_/, keys %$form } = undef;
712 $main::lxdebug->leave_sub();
715 sub ajax_autocomplete {
716 $main::lxdebug->enter_sub();
718 my $form = $main::form;
719 my %myconfig = %main::myconfig;
721 $form->{column} = 'name' unless $form->{column} =~ /^name$/;
722 $form->{vc} = 'customer' unless $form->{vc} =~ /^customer|vendor$/;
723 $form->{db} = $form->{vc}; # CT expects this
724 $form->{$form->{column}} = $form->{q} || '';
725 $form->{limit} = ($form->{limit} * 1) || 10;
726 $form->{searchitems} ||= '';
728 CT->search(\%myconfig, $form);
730 print $form->ajax_response_header(),
731 $form->parse_html_template('ct/ajax_autocomplete');
733 $main::lxdebug->leave_sub();
736 sub continue { call_sub($main::form->{nextsub}); }