Mahnwesen:
[kivitendo-erp.git] / bin / mozilla / dn.pl
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2006
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 #
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.
20 #
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 #======================================================================
29 #
30 # Dunning process module
31 #
32 #======================================================================
33
34 use POSIX;
35
36 use SL::IS;
37 use SL::PE;
38 use SL::DN;
39
40 require "bin/mozilla/common.pl";
41 require "bin/mozilla/io.pl";
42 require "bin/mozilla/arap.pl";
43
44 1;
45
46 sub edit_config {
47   $lxdebug->enter_sub();
48
49   DN->get_config(\%myconfig, \%$form);
50   $form->get_lists('charts' => { 'key'       => 'ALL_CHARTS',
51                                  'transdate' => 'current_date' });
52
53   $form->{SELECT_AR_AMOUNT} = [];
54   $form->{SELECT_AR}        = [];
55
56   foreach my $chart (@{ $form->{ALL_CHARTS} }) {
57     $chart->{LINKS} = { map { $_, 1 } split m/:/, $chart->{link} };
58
59     if ($chart->{LINKS}->{AR}) {
60       $chart->{AR_selected} = "selected" if $chart->{id} == $form->{AR};
61       push @{ $form->{SELECT_AR} }, $chart;
62     }
63
64     if ($chart->{LINKS}->{AR_amount}) {
65       $chart->{AR_amount_fee_selected}      = "selected" if $chart->{id} == $form->{AR_amount_fee};
66       $chart->{AR_amount_interest_selected} = "selected" if $chart->{id} == $form->{AR_amount_interest};
67       push @{ $form->{SELECT_AR_AMOUNT} }, $chart;
68     }
69   }
70
71   $form->{title}          = $locale->text('Edit Dunning Process Config');
72   $form->{callback}     ||= build_std_url("action=edit_config");
73   $form->{rowcount}       = 1 + scalar @{ $form->{DUNNING} };
74   $form->{rowcount_odd}   = $form->{rowcount} % 2;
75
76   $form->header();
77   print $form->parse_html_template("dunning/edit_config");
78
79   $lxdebug->leave_sub();
80 }
81
82 sub add {
83   $lxdebug->enter_sub();
84
85   # setup customer selection
86   $form->all_vc(\%myconfig, "customer", "AR");
87
88   DN->get_config(\%myconfig, \%$form);
89
90   $form->{SHOW_CUSTOMER_SELECTION}      = $form->{all_customer}    && scalar @{ $form->{all_customer} };
91   $form->{SHOW_DUNNING_LEVEL_SELECTION} = $form->{DUNNING}         && scalar @{ $form->{DUNNING} };
92   $form->{SHOW_DEPARTMENT_SELECTION}    = $form->{all_departments} && scalar @{ $form->{all_departments} };
93
94   $form->{title}    = $locale->text('Start Dunning Process');
95   $form->{jsscript} = 1;
96   $form->{fokus}    = "search.customer";
97   $form->header();
98
99   print $form->parse_html_template("dunning/add");
100
101   $lxdebug->leave_sub();
102 }
103
104 sub show_invoices {
105   $lxdebug->enter_sub();
106
107   DN->get_invoices(\%myconfig, \%$form);
108   $form->{title} = $locale->text('Start Dunning Process');
109
110   foreach my $row (@{ $form->{DUNNINGS} }) {
111     $row->{DUNNING_CONFIG} = [ map +{ %{ $_ } }, @{ $form->{DUNNING_CONFIG} } ];
112
113     if ($row->{next_dunning_config_id}) {
114       map { $_->{SELECTED} = $_->{id} == $row->{next_dunning_config_id} } @{ $row->{DUNNING_CONFIG } };
115     }
116     map { $row->{$_} = $form->format_amount(\%myconfig, $row->{$_} * 1, -2) } qw(amount fee interest);
117   }
118
119   $form->get_lists('printers'  => 'printers',
120                    'languages' => 'languages');
121
122   $form->{type}           = 'dunning';
123   $form->{rowcount}       = scalar @{ $form->{DUNNINGS} };
124   $form->{jsscript}       = 1;
125   $form->{callback}     ||= build_std_url("action=show_invoices", qw(login password customer invnumber ordnumber groupinvoices minamount dunning_level notes));
126
127   $form->{PRINT_OPTIONS}  = print_options({ 'inline'          => 1,
128                                             'no_queue'        => 1,
129                                             'no_postscript'   => 1,
130                                             'no_html'         => 1,
131                                             'no_opendocument' => 1, });
132
133   $form->header();
134   print $form->parse_html_template("dunning/show_invoices");
135
136   $lxdebug->leave_sub();
137 }
138
139 sub save {
140   $lxdebug->enter_sub();
141
142   for my $i (1 .. $form->{rowcount}) {
143     if ($form->{"dunning_description_$i"} ne "") {
144       $form->isblank("dunning_level_$i", $locale->text('Dunning Level missing in row '). $i);
145       $form->isblank("dunning_description_$i", $locale->text('Dunning Description missing in row '). $i);
146       $form->isblank("terms_$i", $locale->text('Terms missing in row '). $i);
147       $form->isblank("payment_terms_$i", $locale->text('Payment Terms missing in row '). $i);
148     }
149   }
150
151   DN->save_config(\%myconfig, \%$form);
152   # saving the history
153   if(!exists $form->{addition} && $form->{id} ne "") {
154         $form->{snumbers} = qq|dunning_id_| . $form->{"dunning_id"};
155     $form->{addition} = "SAVED FOR DUNNING";
156         $form->save_history($form->dbconnect(\%myconfig));
157   }
158   # /saving the history 
159   $form->redirect($locale->text('Dunning Process Config saved!'));
160
161   $lxdebug->leave_sub();
162 }
163
164 sub save_dunning {
165   $lxdebug->enter_sub();
166
167   my $active=1;
168   my @rows = ();
169   undef($form->{DUNNING_PDFS});
170
171   if ($form->{groupinvoices}) {
172     my %dunnings_for;
173
174     for my $i (1 .. $form->{rowcount}) {
175       next unless ($form->{"active_$i"});
176
177       $dunnings_for{$form->{"customer_id_$i"}} ||= {};
178       my $dunning_levels = $dunnings_for{$form->{"customer_id_$i"}};
179
180       $dunning_levels->{$form->{"next_dunning_config_id_$i"}} ||= [];
181       my $level = $dunning_levels->{$form->{"next_dunning_config_id_$i"}};
182
183       push @{ $level }, { "row"                    => $i,
184                           "invoice_id"             => $form->{"inv_id_$i"},
185                           "customer_id"            => $form->{"customer_id_$i"},
186                           "next_dunning_config_id" => $form->{"next_dunning_config_id_$i"},
187                           "email"                  => $form->{"email_$i"}, };
188     }
189
190     foreach my $levels (values %dunnings_for) {
191       foreach my $level (values %{ $levels }) {
192         next unless scalar @{ $level };
193
194         DN->save_dunning(\%myconfig, $form, $level, $userspath, $spool, $sendmail);
195       }
196     }
197
198   } else {
199     for my $i (1 .. $form->{rowcount}) {
200       next unless $form->{"active_$i"};
201
202       my $level = [ { "row"                    => $i,
203                       "invoice_id"             => $form->{"inv_id_$i"},
204                       "customer_id"            => $form->{"customer_id_$i"},
205                       "next_dunning_config_id" => $form->{"next_dunning_config_id_$i"},
206                       "email"                  => $form->{"email_$i"}, } ];
207       DN->save_dunning(\%myconfig, $form, $level, $userspath, $spool, $sendmail);
208     }
209   }
210
211   if($form->{DUNNING_PDFS}) {
212     DN->melt_pdfs(\%myconfig, $form);
213   }
214
215   # saving the history
216   if(!exists $form->{addition} && $form->{id} ne "") {
217         $form->{snumbers} = qq|dunning_id_| . $form->{"dunning_id"};
218     $form->{addition} = "DUNNING STARTED";
219         $form->save_history($form->dbconnect(\%myconfig));
220   }
221   # /saving the history
222
223   $form->redirect($locale->text('Dunning Process started for selected invoices!')) if ($form->{media} eq 'printer');
224
225   $lxdebug->leave_sub();
226 }
227
228 sub set_email {
229   $lxdebug->enter_sub();
230
231
232   my $callback = "$form->{script}?action=set_email&";
233   map({ $callback .= "$_=" . $form->escape($form->{$_}) . "&" }
234       (qw(login password name input_subject input_body input_attachment email_subject email_body email_attachment), grep({ /^[fl]_/ } keys %$form)));
235
236   if ($form->{email_attachment}) {
237     $form->{email_attachment} = "checked";
238   }
239   $form->{"title"} = $locale->text("Set eMail text");
240   $form->header();
241   print($form->parse_html_template("dunning/set_email"));
242
243   $lxdebug->leave_sub();
244 }
245
246 sub search {
247   $lxdebug->enter_sub();
248
249   $form->get_lists("customers"   => "ALL_CUSTOMERS",
250                    "departments" => "ALL_DEPARTMENTS");
251
252   DN->get_config(\%myconfig, \%$form);
253
254   $form->{SHOW_CUSTOMER_DDBOX}   = scalar @{ $form->{ALL_CUSTOMERS} } <= $myconfig{vclimit};
255   $form->{SHOW_DEPARTMENT_DDBOX} = scalar @{ $form->{ALL_CUSTOMERS} };
256   $form->{SHOW_DUNNING_LEVELS}   = scalar @{ $form->{DUNNING} };
257
258   $form->{jsscript} = 1;
259   $form->{title}    = $locale->text('Search Dunning');
260   $form->{fokus}    = "search.customer";
261
262   $form->header();
263
264   $form->{onload} = qq|focus()|
265     . qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|
266     . qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
267
268   print $form->parse_html_template("dunning/search");
269
270   $lxdebug->leave_sub();
271
272 }
273
274 sub show_dunning {
275   $lxdebug->enter_sub();
276
277   DN->get_dunning(\%myconfig, \%$form);
278
279   my $odd_even = 0;
280   my ($previous_dunning_id, $first_row_for_dunning);
281
282   foreach $ref (@{ $form->{DUNNINGS} }) {
283     if ($previous_dunning_id != $ref->{dunning_id}) {
284       $odd_even = ($odd_even + 1) % 2;
285       $ref->{first_row_for_dunning} = 1;
286
287     } else {
288       $ref->{first_row_for_dunning} = 0;
289     }
290
291     $previous_dunning_id     = $ref->{dunning_id};
292     $ref->{listrow_odd_even} = $odd_even;
293   }
294
295   if (!$form->{callback}) {
296     $form->{callback} =
297       build_std_url("action=show_dunning", qw(customer_id customer dunning_level department_id invnumber ordnumber
298                                               ransdatefrom transdateto dunningfrom dunningto notes showold));
299   }
300
301   $form->get_lists('printers'  => 'printers',
302                    'languages' => 'languages');
303
304   $form->{type}          = 'dunning';
305   $form->{PRINT_OPTIONS} = print_options({ 'inline'          => 1,
306                                            'no_queue'        => 1,
307                                            'no_postscript'   => 1,
308                                            'no_html'         => 1,
309                                            'no_opendocument' => 1, });
310   $form->{title}         = $locale->text('Dunning overview');
311
312   $form->header();
313
314   print $form->parse_html_template("dunning/show_dunning");
315
316   $lxdebug->leave_sub();
317
318 }
319
320 sub print_dunning {
321   $lxdebug->enter_sub();
322
323   $form->{rowcount}     = 1;
324   $form->{selected_1}   = 1;
325   $form->{dunning_id_1} = $form->{dunning_id};
326
327   print_multiple();
328
329   $lxdebug->leave_sub();
330 }
331
332 sub print_multiple {
333   $lxdebug->enter_sub();
334
335   $form->{title} = $locale->text('Print dunnings');
336
337   my @dunning_ids = map { $form->{"dunning_id_$_"} } grep { $form->{"selected_$_"} } (1..$form->{rowcount});
338
339   if (!scalar @dunning_ids) {
340     $form->error($locale->text('No dunnings have been selected for printing.'));
341   }
342
343   $form->{DUNNING_PDFS} = [];
344
345   foreach my $dunning_id (@dunning_ids) {
346     DN->print_invoice_for_fees(\%myconfig, $form, $dunning_id);
347     DN->print_dunning(\%myconfig, $form, $dunning_id);
348   }
349
350   if (scalar @{ $form->{DUNNING_PDFS} }) {
351     $form->{dunning_id} = strftime("%Y%m%d", localtime time);
352     DN->melt_pdfs(\%myconfig, $form, $form->{copies});
353
354     if ($form->{media} eq 'printer') {
355       $form->header();
356       $form->info($locale->text('The dunnings have been printed.'));
357     }
358
359   } else {
360     $form->redirect($locale->text('Could not print dunning.'));
361   }
362
363   $lxdebug->leave_sub();
364 }
365
366 # end of main
367