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
16 # This program is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by
18 # the Free Software Foundation; either version 2 of the License, or
19 # (at your option) any later version.
21 # This program is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 # GNU General Public License for more details.
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #======================================================================
30 # Dunning process module
32 #======================================================================
39 use SL::ReportGenerator;
41 require "bin/mozilla/common.pl";
42 require "bin/mozilla/reportgenerator.pl";
43 require "bin/mozilla/io.pl";
50 $main::lxdebug->enter_sub();
52 my $form = $main::form;
53 my %myconfig = %main::myconfig;
54 my $locale = $main::locale;
56 $main::auth->assert('config');
58 DN->get_config(\%myconfig, \%$form);
59 $form->get_lists('charts' => { 'key' => 'ALL_CHARTS',
60 'transdate' => 'current_date' });
62 $form->{SELECT_AR_AMOUNT} = [];
63 $form->{SELECT_AR} = [];
65 foreach my $chart (@{ $form->{ALL_CHARTS} }) {
66 $chart->{LINKS} = { map { $_, 1 } split m/:/, $chart->{link} };
68 if ($chart->{LINKS}->{AR}) {
69 $chart->{AR_selected} = "selected" if $chart->{id} == $form->{AR};
70 push @{ $form->{SELECT_AR} }, $chart;
73 if ($chart->{LINKS}->{AR_amount}) {
74 $chart->{AR_amount_fee_selected} = "selected" if $chart->{id} == $form->{AR_amount_fee};
75 $chart->{AR_amount_interest_selected} = "selected" if $chart->{id} == $form->{AR_amount_interest};
76 push @{ $form->{SELECT_AR_AMOUNT} }, $chart;
80 $form->{title} = $locale->text('Edit Dunning Process Config');
81 $form->{callback} ||= build_std_url("action=edit_config");
84 print $form->parse_html_template("dunning/edit_config");
86 $main::lxdebug->leave_sub();
90 $main::lxdebug->enter_sub();
92 my $form = $main::form;
93 my %myconfig = %main::myconfig;
94 my $locale = $main::locale;
96 $main::auth->assert('dunning_edit');
98 # setup customer selection
99 $form->all_vc(\%myconfig, "customer", "AR");
101 DN->get_config(\%myconfig, \%$form);
103 $form->{SHOW_CUSTOMER_SELECTION} = $form->{all_customer} && scalar @{ $form->{all_customer} };
104 $form->{SHOW_DUNNING_LEVEL_SELECTION} = $form->{DUNNING} && scalar @{ $form->{DUNNING} };
105 $form->{SHOW_DEPARTMENT_SELECTION} = $form->{all_departments} && scalar @{ $form->{all_departments} || [] };
107 $form->{title} = $locale->text('Start Dunning Process');
108 $form->{jsscript} = 1;
109 $::request->{layout}->focus('#customer');
112 print $form->parse_html_template("dunning/add");
114 $main::lxdebug->leave_sub();
118 $main::lxdebug->enter_sub();
120 my $form = $main::form;
121 my %myconfig = %main::myconfig;
122 my $locale = $main::locale;
124 $main::auth->assert('dunning_edit');
126 DN->get_invoices(\%myconfig, \%$form);
127 $form->{title} = $locale->text('Start Dunning Process');
129 foreach my $row (@{ $form->{DUNNINGS} }) {
130 $row->{DUNNING_CONFIG} = [ map +{ %{ $_ } }, @{ $form->{DUNNING_CONFIG} } ];
132 if ($row->{next_dunning_config_id}) {
133 map { $_->{SELECTED} = $_->{id} == $row->{next_dunning_config_id} } @{ $row->{DUNNING_CONFIG } };
135 map { $row->{$_} = $form->format_amount(\%myconfig, $row->{$_} * 1, -2) } qw(amount open_amount fee interest);
137 if ($row->{'language_id'}) {
138 $row->{language} = SL::DB::Manager::Language->find_by_or_create('id' => $row->{'language_id'})->{'description'};
142 $form->get_lists('printers' => 'printers',
143 'languages' => 'languages');
145 $form->{type} = 'dunning';
146 $form->{rowcount} = scalar @{ $form->{DUNNINGS} };
147 $form->{jsscript} = 1;
148 $form->{callback} ||= build_std_url("action=show_invoices", qw(customer invnumber ordnumber groupinvoices minamount dunning_level notes));
150 $form->{PRINT_OPTIONS} = print_options('inline' => 1,
152 'no_postscript' => 1,
154 'no_opendocument' => 1,);
157 print $form->parse_html_template("dunning/show_invoices");
159 $main::lxdebug->leave_sub();
163 $main::lxdebug->enter_sub();
165 my $form = $main::form;
166 my %myconfig = %main::myconfig;
167 my $locale = $main::locale;
169 $main::auth->assert('config');
171 for my $i (1 .. $form->{rowcount}) {
172 if ($form->{"dunning_description_$i"} ne "") {
173 $form->isblank("dunning_level_$i", $locale->text('Dunning Level missing in row '). $i);
174 $form->isblank("dunning_description_$i", $locale->text('Dunning Description missing in row '). $i);
175 $form->isblank("terms_$i", $locale->text('Terms missing in row '). $i);
176 $form->isblank("payment_terms_$i", $locale->text('Payment Terms missing in row '). $i);
180 DN->save_config(\%myconfig, \%$form);
182 if(!exists $form->{addition} && $form->{id} ne "") {
183 $form->{snumbers} = qq|dunning_id_| . $form->{"dunning_id"};
184 $form->{addition} = "SAVED FOR DUNNING";
187 # /saving the history
188 $form->redirect($locale->text('Dunning Process Config saved!'));
190 $main::lxdebug->leave_sub();
194 $main::lxdebug->enter_sub();
196 my $form = $main::form;
197 my %myconfig = %main::myconfig;
198 my $locale = $main::locale;
200 $main::auth->assert('dunning_edit');
204 undef($form->{DUNNING_PDFS});
206 my $saved_language_id = $form->{language_id};
208 if ($form->{groupinvoices}) {
211 for my $i (1 .. $form->{rowcount}) {
212 next unless ($form->{"active_$i"});
214 $dunnings_for{$form->{"customer_id_$i"}} ||= {};
215 my $dunning_levels = $dunnings_for{$form->{"customer_id_$i"}};
217 $dunning_levels->{$form->{"next_dunning_config_id_$i"}} ||= [];
218 my $level = $dunning_levels->{$form->{"next_dunning_config_id_$i"}};
220 push @{ $level }, { "row" => $i,
221 "invoice_id" => $form->{"inv_id_$i"},
222 "customer_id" => $form->{"customer_id_$i"},
223 "language_id" => $form->{"language_id_$i"},
224 "next_dunning_config_id" => $form->{"next_dunning_config_id_$i"},
225 "email" => $form->{"email_$i"}, };
228 foreach my $levels (values %dunnings_for) {
229 foreach my $level (values %{ $levels }) {
230 next unless scalar @{ $level };
231 if (!$form->{force_lang}) {
232 $form->{language_id} = @{$level}[0]->{language_id};
234 DN->save_dunning(\%myconfig, $form, $level);
239 for my $i (1 .. $form->{rowcount}) {
240 next unless $form->{"active_$i"};
242 my $level = [ { "row" => $i,
243 "invoice_id" => $form->{"inv_id_$i"},
244 "customer_id" => $form->{"customer_id_$i"},
245 "language_id" => $form->{"language_id_$i"},
246 "next_dunning_config_id" => $form->{"next_dunning_config_id_$i"},
247 "email" => $form->{"email_$i"}, } ];
248 if (!$form->{force_lang}) {
249 $form->{language_id} = @{$level}[0]->{language_id};
251 DN->save_dunning(\%myconfig, $form, $level);
255 $form->{language_id} = $saved_language_id;
257 if($form->{DUNNING_PDFS}) {
258 DN->melt_pdfs(\%myconfig, $form, $form->{copies});
262 if(!exists $form->{addition} && $form->{id} ne "") {
263 $form->{snumbers} = qq|dunning_id_| . $form->{"dunning_id"};
264 $form->{addition} = "DUNNING STARTED";
267 # /saving the history
269 if ($form->{media} eq 'printer') {
270 delete $form->{callback};
271 $form->redirect($locale->text('Dunning Process started for selected invoices!'));
274 $main::lxdebug->leave_sub();
278 $main::lxdebug->enter_sub();
280 my $form = $main::form;
281 my $locale = $main::locale;
283 $main::auth->assert('dunning_edit');
285 $form->{"title"} = $locale->text("Set eMail text");
286 $form->header(no_layout => 1);
287 print($form->parse_html_template("dunning/set_email"));
289 $main::lxdebug->leave_sub();
293 $main::lxdebug->enter_sub();
295 my $form = $main::form;
296 my %myconfig = %main::myconfig;
297 my $locale = $main::locale;
299 $main::auth->assert('dunning_edit');
301 $form->get_lists("customers" => "ALL_CUSTOMERS",
302 "departments" => "ALL_DEPARTMENTS");
303 $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all(query => [ deleted => 0 ]);
305 DN->get_config(\%myconfig, \%$form);
307 $form->{SHOW_CUSTOMER_DDBOX} = scalar @{ $form->{ALL_CUSTOMERS} } <= $myconfig{vclimit};
308 $form->{SHOW_DEPARTMENT_DDBOX} = scalar @{ $form->{ALL_CUSTOMERS} };
309 $form->{SHOW_DUNNING_LEVELS} = scalar @{ $form->{DUNNING} };
311 $form->{jsscript} = 1;
312 $form->{title} = $locale->text('Dunnings');
313 $::request->{layout}->focus('#customer');
317 print $form->parse_html_template("dunning/search");
319 $main::lxdebug->leave_sub();
324 $main::lxdebug->enter_sub();
326 my $form = $main::form;
327 my %myconfig = %main::myconfig;
328 my $locale = $main::locale;
329 my $cgi = $::request->{cgi};
331 $main::auth->assert('dunning_edit');
333 my @filter_field_list = qw(customer_id customer dunning_level department_id invnumber ordnumber
334 transdatefrom transdateto dunningfrom dunningto notes showold l_salesman salesman_id);
336 report_generator_set_default_sort('customername', 1);
338 DN->get_dunning(\%myconfig, \%$form);
340 if (!$form->{callback}) {
341 $form->{callback} = build_std_url("action=show_dunning", @filter_field_list);
344 $form->get_lists('printers' => 'printers',
345 'languages' => 'languages');
347 $form->{type} = 'dunning';
348 $form->{PRINT_OPTIONS} = print_options('inline' => 1,
350 'no_postscript' => 1,
352 'no_opendocument' => 1,);
353 $form->{title} = $locale->text('Dunning overview');
355 my $report = SL::ReportGenerator->new(\%myconfig, $form);
357 $report->set_options('std_column_visibility' => 1,
358 'title' => $form->{title});
359 $report->set_export_options('show_dunning', @filter_field_list, qw(sort sortdir));
362 'checkbox' => { 'text' => '', 'visible' => 'HTML' },
363 'dunning_description' => { 'text' => $locale->text('Dunning Level') },
364 'customername' => { 'text' => $locale->text('Customername') },
365 'language' => { 'text' => $locale->text('Language') },
366 'invnumber' => { 'text' => $locale->text('Invnumber') },
367 'transdate' => { 'text' => $locale->text('Invdate') },
368 'duedate' => { 'text' => $locale->text('Invoice Duedate') },
369 'amount' => { 'text' => $locale->text('Amount') },
370 'dunning_date' => { 'text' => $locale->text('Dunning Date') },
371 'dunning_duedate' => { 'text' => $locale->text('Dunning Duedate') },
372 'fee' => { 'text' => $locale->text('Total Fees') },
373 'interest' => { 'text' => $locale->text('Interest') },
374 'salesman' => { 'text' => $locale->text('Salesperson'), 'visible' => $form->{l_salesman} ? 1 : 0 },
377 $report->set_columns(%column_defs);
378 $report->set_column_order(qw(checkbox dunning_description customername language invnumber transdate
379 duedate amount dunning_date dunning_duedate fee interest salesman));
380 $report->set_sort_indicator($form->{sort}, $form->{sortdir});
382 my $edit_url = sub { build_std_url('script=' . ($_[0]->{invoice} ? 'is' : 'ar') . '.pl', 'action=edit', 'callback') . '&id=' . $::form->escape($_[0]->{id}) };
383 my $print_url = sub { build_std_url('action=print_dunning', 'format=pdf', 'media=screen', 'dunning_id='.$_[0]->{dunning_id}, 'language_id=' . $_[0]->{language_id}) };
384 my $sort_url = build_std_url('action=show_dunning', grep { $form->{$_} } @filter_field_list);
386 foreach my $name (qw(dunning_description customername invnumber transdate duedate dunning_date dunning_duedate salesman)) {
387 my $sortdir = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
388 $column_defs{$name}->{link} = $sort_url . "&sort=$name&sortdir=$sortdir";
391 my %alignment = map { $_ => 'right' } qw(transdate duedate amount dunning_date dunning_duedate fee interest salesman);
393 my ($current_dunning_rows, $previous_dunning_id, $first_row_for_dunning);
395 $current_dunning_rows = [];
396 $first_row_for_dunning = 1;
397 $form->{rowcount} = scalar @{ $form->{DUNNINGS} };
401 foreach my $ref (@{ $form->{DUNNINGS} }) {
404 if ($previous_dunning_id != $ref->{dunning_id}) {
405 $report->add_data($current_dunning_rows) if (scalar @{ $current_dunning_rows });
406 $current_dunning_rows = [];
407 $first_row_for_dunning = 1;
410 if ($ref->{'language_id'}) {
411 $ref->{language} = SL::DB::Manager::Language->find_by('id' => $ref->{'language_id'})->{'description'};
415 foreach my $column (keys %{ $ref }) {
417 'data' => $first_row_for_dunning || (($column ne 'dunning_description') && ($column ne 'customername')) ? $ref->{$column} : '',
419 'align' => $alignment{$column},
421 'link' => ( $column eq 'invnumber' ? $edit_url->($ref)
422 : $column eq 'dunning_description' ? $print_url->($ref)
427 $row->{checkbox} = !$first_row_for_dunning ? { } : {
428 'raw_data' => $cgi->hidden('-name' => "dunning_id_$i", '-value' => $ref->{dunning_id})
429 . $cgi->checkbox('-name' => "selected_$i", '-value' => 1, '-label' => ''),
430 'valign' => 'center',
434 if ($first_row_for_dunning) {
435 $row->{language} = {'raw_data' => $cgi->hidden('-name' => "language_id_$i", '-value' => $ref->{language_id})
436 . " $ref->{language}" };
438 $row->{language} = { };
441 push @{ $current_dunning_rows }, $row;
443 $previous_dunning_id = $ref->{dunning_id};
444 $first_row_for_dunning = 0;
447 $report->add_data($current_dunning_rows) if (scalar @{ $current_dunning_rows });
449 $report->set_options('raw_top_info_text' => $form->parse_html_template('dunning/show_dunning_top'),
450 'raw_bottom_info_text' => $form->parse_html_template('dunning/show_dunning_bottom'),
451 'output_format' => 'HTML',
452 'attachment_basename' => $locale->text('dunning_list') . strftime('_%Y%m%d', localtime time),
455 $report->set_options_from_form();
457 $report->generate_with_headers();
459 $main::lxdebug->leave_sub();
464 $main::lxdebug->enter_sub();
466 my $form = $main::form;
468 $main::auth->assert('dunning_edit');
470 $form->{rowcount} = 1;
471 $form->{selected_1} = 1;
472 $form->{dunning_id_1} = $form->{dunning_id};
473 $form->{language_id_1} = $form->{language_id};
477 $main::lxdebug->leave_sub();
481 $main::lxdebug->enter_sub();
483 my $form = $main::form;
484 my %myconfig = %main::myconfig;
485 my $locale = $main::locale;
487 $main::auth->assert('dunning_edit');
489 $form->{title} = $locale->text('Print dunnings');
491 my @dunning_ids = map { $form->{"dunning_id_$_"} } grep { $form->{"selected_$_"} } (1..$form->{rowcount});
492 my @language_ids = map { $form->{"language_id_$_"} } grep { $form->{"selected_$_"} } (1..$form->{rowcount});
494 if (!scalar @dunning_ids) {
495 $form->error($locale->text('No dunnings have been selected for printing.'));
498 $form->{DUNNING_PDFS} = [];
500 my $saved_language_id = $form->{language_id};
502 foreach my $dunning_id (@dunning_ids) {
503 if (!$form->{force_lang}) {
504 $form->{language_id} = $language_ids[$i];
506 DN->print_invoice_for_fees(\%myconfig, $form, $dunning_id);
507 DN->print_dunning(\%myconfig, $form, $dunning_id);
510 $form->{language_id} = $saved_language_id;
512 if (scalar @{ $form->{DUNNING_PDFS} }) {
513 $form->{dunning_id} = strftime("%Y%m%d", localtime time);
514 DN->melt_pdfs(\%myconfig, $form, $form->{copies});
516 if ($form->{media} eq 'printer') {
518 $form->info($locale->text('The dunnings have been printed.'));
522 $form->redirect($locale->text('Could not print dunning.'));
525 $main::lxdebug->leave_sub();
529 call_sub($main::form->{nextsub});