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., 51 Franklin Street, Fifth Floor, Boston,
 
  29 #======================================================================
 
  31 # Dunning process module
 
  33 #======================================================================
 
  35 use POSIX qw(strftime);
 
  39 use SL::DB::Department;
 
  41 use SL::Helper::Flash qw(flash);
 
  42 use SL::Locale::String qw(t8);
 
  43 use SL::ReportGenerator;
 
  45 require "bin/mozilla/common.pl";
 
  46 require "bin/mozilla/reportgenerator.pl";
 
  47 require "bin/mozilla/io.pl";
 
  54   $main::lxdebug->enter_sub();
 
  56   my $form     = $main::form;
 
  57   my %myconfig = %main::myconfig;
 
  58   my $locale   = $main::locale;
 
  60   $main::auth->assert('config');
 
  62   DN->get_config(\%myconfig, \%$form);
 
  63   $form->get_lists('charts' => { 'key'       => 'ALL_CHARTS',
 
  64                                  'transdate' => 'current_date' });
 
  66   $form->{SELECT_AR_AMOUNT} = [];
 
  67   $form->{SELECT_AR}        = [];
 
  69   foreach my $chart (@{ $form->{ALL_CHARTS} }) {
 
  70     $chart->{LINKS} = { map { $_, 1 } split m/:/, $chart->{link} };
 
  72     if ($chart->{LINKS}->{AR}) {
 
  73       $chart->{AR_selected} = "selected" if $chart->{id} == $form->{AR};
 
  74       push @{ $form->{SELECT_AR} }, $chart;
 
  77     if ($chart->{LINKS}->{AR_amount}) {
 
  78       $chart->{AR_amount_fee_selected}      = "selected" if $chart->{id} == $form->{AR_amount_fee};
 
  79       $chart->{AR_amount_interest_selected} = "selected" if $chart->{id} == $form->{AR_amount_interest};
 
  80       push @{ $form->{SELECT_AR_AMOUNT} }, $chart;
 
  84   $form->{title}      = $locale->text('Edit Dunning Process Config');
 
  85   $form->{callback} ||= build_std_url("action=edit_config");
 
  87   setup_dn_edit_config_action_bar();
 
  90   print $form->parse_html_template("dunning/edit_config");
 
  92   $main::lxdebug->leave_sub();
 
  96   $main::lxdebug->enter_sub();
 
  98   my $form     = $main::form;
 
  99   my %myconfig = %main::myconfig;
 
 100   my $locale   = $main::locale;
 
 102   $main::auth->assert('dunning_edit');
 
 104   DN->get_config(\%myconfig, \%$form);
 
 106   $form->{SHOW_DUNNING_LEVEL_SELECTION} = $form->{DUNNING}         && scalar @{ $form->{DUNNING} };
 
 107   $form->{SHOW_DEPARTMENT_SELECTION}    = $form->{all_departments} && scalar @{ $form->{all_departments} || [] };
 
 109   $form->{title}    = $locale->text('Start Dunning Process');
 
 111   setup_dn_add_action_bar();
 
 114   print $form->parse_html_template("dunning/add");
 
 116   $main::lxdebug->leave_sub();
 
 120   $main::lxdebug->enter_sub();
 
 122   my $form     = $main::form;
 
 123   my %myconfig = %main::myconfig;
 
 124   my $locale   = $main::locale;
 
 126   $main::auth->assert('dunning_edit');
 
 128   DN->get_invoices(\%myconfig, \%$form);
 
 129   $form->{title} = $locale->text('Start Dunning Process');
 
 131   foreach my $row (@{ $form->{DUNNINGS} }) {
 
 132     $row->{DUNNING_CONFIG} = [ map +{ %{ $_ } }, @{ $form->{DUNNING_CONFIG} } ];
 
 134     if ($row->{next_dunning_config_id}) {
 
 135       map { $_->{SELECTED} = $_->{id} == $row->{next_dunning_config_id} } @{ $row->{DUNNING_CONFIG } };
 
 137     map { $row->{$_} = $form->format_amount(\%myconfig, $row->{$_} * 1, 2) } qw(amount open_amount fee interest);
 
 139     if ($row->{'language_id'}) {
 
 140       $row->{language} = SL::DB::Manager::Language->find_by_or_create('id' => $row->{'language_id'})->{'description'};
 
 144   $form->get_lists('printers'  => 'printers',
 
 145                    'languages' => 'languages');
 
 147   $form->{type}           = 'dunning';
 
 148   $form->{rowcount}       = scalar @{ $form->{DUNNINGS} };
 
 149   $form->{callback}     ||= build_std_url("action=show_invoices", qw(customer invnumber ordnumber groupinvoices minamount dunning_level notes));
 
 151   $form->{PRINT_OPTIONS}  = print_options('inline'          => 1,
 
 153                                           'no_postscript'   => 1,
 
 155                                           'no_opendocument' => 1,);
 
 157   setup_dn_show_invoices_action_bar();
 
 159   print $form->parse_html_template("dunning/show_invoices");
 
 161   $main::lxdebug->leave_sub();
 
 165   $main::lxdebug->enter_sub();
 
 167   my $form     = $main::form;
 
 168   my %myconfig = %main::myconfig;
 
 169   my $locale   = $main::locale;
 
 171   $main::auth->assert('config');
 
 173   for my $i (1 .. $form->{rowcount}) {
 
 174     if ($form->{"dunning_description_$i"} ne "") {
 
 175       $form->isblank("dunning_level_$i", $locale->text('Dunning Level missing in row '). $i);
 
 176       $form->isblank("dunning_description_$i", $locale->text('Dunning Description missing in row '). $i);
 
 177       $form->isblank("terms_$i", $locale->text('Terms missing in row '). $i);
 
 178       $form->isblank("payment_terms_$i", $locale->text('Payment Terms missing in row '). $i);
 
 182   DN->save_config(\%myconfig, \%$form);
 
 184   if(!exists $form->{addition} && $form->{id} ne "") {
 
 185     $form->{snumbers} = qq|dunning_id_| . $form->{"dunning_id"};
 
 186     $form->{addition} = "SAVED FOR DUNNING";
 
 189   # /saving the history
 
 190   $form->redirect($locale->text('Dunning Process Config saved!'));
 
 192   $main::lxdebug->leave_sub();
 
 196   $main::lxdebug->enter_sub();
 
 198   my $form     = $main::form;
 
 199   my %myconfig = %main::myconfig;
 
 200   my $locale   = $main::locale;
 
 202   $main::auth->assert('dunning_edit');
 
 206   undef($form->{DUNNING_PDFS});
 
 208   my $saved_language_id = $form->{language_id};
 
 210   if ($form->{groupinvoices}) {
 
 213     for my $i (1 .. $form->{rowcount}) {
 
 214       next unless ($form->{"active_$i"});
 
 216       $dunnings_for{$form->{"customer_id_$i"}} ||= {};
 
 217       my $dunning_levels = $dunnings_for{$form->{"customer_id_$i"}};
 
 219       $dunning_levels->{$form->{"next_dunning_config_id_$i"}} ||= [];
 
 220       my $level = $dunning_levels->{$form->{"next_dunning_config_id_$i"}};
 
 222       push @{ $level }, { "row"                    => $i,
 
 223                           "invoice_id"             => $form->{"inv_id_$i"},
 
 224                           "customer_id"            => $form->{"customer_id_$i"},
 
 225                           "language_id"            => $form->{"language_id_$i"},
 
 226                           "next_dunning_config_id" => $form->{"next_dunning_config_id_$i"},
 
 227                           "email"                  => $form->{"email_$i"}, };
 
 230     foreach my $levels (values %dunnings_for) {
 
 231       foreach my $level (values %{ $levels }) {
 
 232         next unless scalar @{ $level };
 
 233         if (!$form->{force_lang}) {
 
 234           $form->{language_id} = @{$level}[0]->{language_id};
 
 236         DN->save_dunning(\%myconfig, $form, $level);
 
 241     for my $i (1 .. $form->{rowcount}) {
 
 242       next unless $form->{"active_$i"};
 
 244       my $level = [ { "row"                    => $i,
 
 245                       "invoice_id"             => $form->{"inv_id_$i"},
 
 246                       "customer_id"            => $form->{"customer_id_$i"},
 
 247                       "language_id"            => $form->{"language_id_$i"},
 
 248                       "next_dunning_config_id" => $form->{"next_dunning_config_id_$i"},
 
 249                       "email"                  => $form->{"email_$i"}, } ];
 
 250       if (!$form->{force_lang}) {
 
 251         $form->{language_id} = @{$level}[0]->{language_id};
 
 253       DN->save_dunning(\%myconfig, $form, $level);
 
 257   $form->{language_id} = $saved_language_id;
 
 259   if (scalar @{ $form->{DUNNING_PDFS} }) {
 
 260     $form->{dunning_id} = strftime("%Y%m%d", localtime time) if scalar @{ $form->{DUNNING_PDFS}} > 1;
 
 261     DN->melt_pdfs(\%myconfig, $form, $form->{copies});
 
 265   if(!exists $form->{addition} && $form->{id} ne "") {
 
 266     $form->{snumbers} = qq|dunning_id_| . $form->{"dunning_id"};
 
 267     $form->{addition} = "DUNNING STARTED";
 
 270   # /saving the history
 
 272   if ($form->{media} eq 'printer') {
 
 273     delete $form->{callback};
 
 274     $form->redirect($locale->text('Dunning Process started for selected invoices!'));
 
 277   $main::lxdebug->leave_sub();
 
 281   $main::lxdebug->enter_sub();
 
 283   my $form     = $main::form;
 
 284   my $locale   = $main::locale;
 
 286   $main::auth->assert('dunning_edit');
 
 288   $form->{"title"} = $locale->text("Set eMail text");
 
 289   $form->header(no_layout => 1);
 
 290   print($form->parse_html_template("dunning/set_email"));
 
 292   $main::lxdebug->leave_sub();
 
 296   $main::lxdebug->enter_sub();
 
 298   my $form     = $main::form;
 
 299   my %myconfig = %main::myconfig;
 
 300   my $locale   = $main::locale;
 
 302   $main::auth->assert('dunning_edit');
 
 304   $form->get_lists("customers"   => "ALL_CUSTOMERS",
 
 305                    "departments" => "ALL_DEPARTMENTS");
 
 306   $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
 
 308   DN->get_config(\%myconfig, \%$form);
 
 310   $form->{SHOW_DUNNING_LEVELS}   = scalar @{ $form->{DUNNING} };
 
 312   $form->{title}    = $locale->text('Dunnings');
 
 314   setup_dn_search_action_bar();
 
 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   setup_dn_show_dunning_action_bar();
 
 458   $report->generate_with_headers();
 
 460   $main::lxdebug->leave_sub();
 
 465   $main::lxdebug->enter_sub();
 
 467   my $form     = $main::form;
 
 469   $main::auth->assert('dunning_edit');
 
 471   $form->{rowcount}     = 1;
 
 472   $form->{selected_1}   = 1;
 
 473   $form->{dunning_id_1} = $form->{dunning_id};
 
 474   $form->{language_id_1} = $form->{language_id};
 
 478   $main::lxdebug->leave_sub();
 
 482   $main::auth->assert('dunning_edit');
 
 484   my @dunning_ids = map { $::form->{"dunning_id_$_"} } grep { $::form->{"selected_$_"} } (1..$::form->{rowcount});
 
 486   if (!scalar @dunning_ids) {
 
 487     $::form->error($::locale->text('No dunnings have been selected for printing.'));
 
 490   my $dunnings = SL::DB::Manager::Dunning->get_all(query => [ dunning_id => \@dunning_ids ]);
 
 492   SL::DB::Dunning->new->db->with_transaction(sub {
 
 493     for my $dunning (@$dunnings) {
 
 494       SL::DB::Manager::Invoice->find_by(id => $dunning->trans_id)->update_attributes(dunning_config_id => undef);
 
 499   flash('info', t8('#1 dunnings have been deleted', scalar @$dunnings));
 
 505   $main::lxdebug->enter_sub();
 
 507   my $form     = $main::form;
 
 508   my %myconfig = %main::myconfig;
 
 509   my $locale   = $main::locale;
 
 511   $main::auth->assert('dunning_edit');
 
 513   $form->{title} = $locale->text('Print dunnings');
 
 515   my @dunning_ids = map { $form->{"dunning_id_$_"} } grep { $form->{"selected_$_"} } (1..$form->{rowcount});
 
 516   my @language_ids = map { $form->{"language_id_$_"} } grep { $form->{"selected_$_"} } (1..$form->{rowcount});
 
 518   if (!scalar @dunning_ids) {
 
 519     $form->error($locale->text('No dunnings have been selected for printing.'));
 
 522   $form->{DUNNING_PDFS} = [];
 
 524   my $saved_language_id = $form->{language_id};
 
 526   foreach my $dunning_id (@dunning_ids) {
 
 527     if (!$form->{force_lang}) {
 
 528       $form->{language_id} = $language_ids[$i];
 
 530     $form->{dunning_id} = $dunning_id;
 
 531     DN->print_invoice_for_fees(\%myconfig, $form, $dunning_id);
 
 532     DN->print_dunning(\%myconfig, $form, $dunning_id);
 
 535   $form->{language_id} = $saved_language_id;
 
 537   if (scalar @{ $form->{DUNNING_PDFS} }) {
 
 538     $form->{dunning_id} = strftime("%Y%m%d", localtime time) if scalar @{ $form->{DUNNING_PDFS}} > 1;
 
 539     DN->melt_pdfs(\%myconfig, $form, $form->{copies});
 
 541     if ($form->{media} eq 'printer') {
 
 543       $form->info($locale->text('The dunnings have been printed.'));
 
 547     $form->redirect($locale->text('Could not print dunning.'));
 
 550   $main::lxdebug->leave_sub();
 
 554   call_sub($main::form->{nextsub});
 
 558   foreach my $action (qw(delete print_multiple)) {
 
 559     if ($::form->{"action_${action}"}) {
 
 565   $::form->error($::locale->text('No action defined.'));
 
 568 sub setup_dn_add_action_bar {
 
 571   for my $bar ($::request->layout->get('actionbar')) {
 
 575         submit    => [ '#form', { action => "show_invoices" } ],
 
 576         accesskey => 'enter',
 
 582 sub setup_dn_show_invoices_action_bar {
 
 585   for my $bar ($::request->layout->get('actionbar')) {
 
 589         submit    => [ '#form', { action => "save_dunning" } ],
 
 590         checks    => [ [ 'kivi.check_if_entries_selected', '[name^=active_]' ] ],
 
 591         accesskey => 'enter',
 
 598 sub setup_dn_search_action_bar {
 
 601   for my $bar ($::request->layout->get('actionbar')) {
 
 605         submit    => [ '#form', { action => "show_dunning" } ],
 
 606         accesskey => 'enter',
 
 612 sub setup_dn_show_dunning_action_bar {
 
 615   for my $bar ($::request->layout->get('actionbar')) {
 
 619         submit    => [ '#form', { action => "print_multiple" } ],
 
 620         checks    => [ [ 'kivi.check_if_entries_selected', '[name^=selected_]' ] ],
 
 621         accesskey => 'enter',
 
 626         submit  => [ '#form', { action => "delete" } ],
 
 627         checks  => [ [ 'kivi.check_if_entries_selected', '[name^=selected_]' ] ],
 
 628         confirm => $::locale->text('This resets the dunning process for the selected invoices. Posted dunning invoices will not be changed!'),
 
 634 sub setup_dn_edit_config_action_bar {
 
 637   for my $bar ($::request->layout->get('actionbar')) {
 
 641         submit    => [ '#form', { action => "save" } ],
 
 642         accesskey => 'enter',