ee49181315eeb0f763f6e217f2e5e8faab84f2d2
[kivitendo-erp.git] / bin / mozilla / cp.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) 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 # Payment module
31 #
32 #======================================================================
33
34 use SL::CP;
35 use SL::IS;
36 use SL::IR;
37 use SL::AR;
38 use SL::AP;
39 use strict;
40 #use warnings;
41
42 require "bin/mozilla/arap.pl";
43 require "bin/mozilla/common.pl";
44
45 our ($form, %myconfig, $lxdebug, $locale, $auth);
46
47 1;
48
49 # end of main
50
51 sub payment {
52   $lxdebug->enter_sub();
53
54   $auth->assert('cash');
55
56   my (@curr);
57
58   $form->{ARAP} = ($form->{type} eq 'receipt') ? "AR" : "AP";
59   $form->{arap} = lc $form->{ARAP};
60
61   # setup customer/vendor selection for open invoices
62   if ($form->{all_vc}) {
63     # Dieser Zweig funktioniert derzeit NIE. Ggf. ganz raus oder
64     # alle offenen Zahlungen wieder korrekt anzeigen. jb 12.10.2010
65     $form->all_vc(\%myconfig, $form->{vc}, $form->{ARAP});
66   } else {
67     CP->get_openvc(\%myconfig, \%$form);
68   }
69
70   $form->{"select$form->{vc}"} = "";
71
72   if ($form->{"all_$form->{vc}"}) {
73     # s.o. jb 12.10.2010
74     $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
75     map { $form->{"select$form->{vc}"} .= "<option>$_->{name}--$_->{id}\n" }
76       @{ $form->{"all_$form->{vc}"} };
77   }
78
79   CP->paymentaccounts(\%myconfig, \%$form);
80
81   # Standard Konto für Umlaufvermögen
82   my $accno_arap = IS->get_standard_accno_current_assets(\%myconfig, \%$form);
83
84   $form->{selectaccount} = "";
85   $form->{"select$form->{ARAP}"} = "";
86
87   map { $form->{selectaccount} .= "<option>$_->{accno}--$_->{description}\n";
88         $form->{account}        = "$_->{accno}--$_->{description}" if ($_->{accno} eq $accno_arap) } @{ $form->{PR}{"$form->{ARAP}_paid"} };
89
90   # Braucht man das hier überhaupt? Erstmal auskommentieren .. jan 18.12.2010
91   #  map {
92   #    $form->{"select$form->{ARAP}"} .=
93   #      "<option>$_->{accno}--$_->{description}\n"
94   #  } @{ $form->{PR}{ $form->{ARAP} } };
95   # ENDE LOESCHMICH in 2012
96
97   # currencies
98   # oldcurrency ist zwar noch hier als fragment enthalten, wird aber bei
99   # der aktualisierung der form auch nicht mitübernommen. das konzept
100   # old_$FOO habe ich auch noch nicht verstanden ...
101   # Ok. Wenn currency übernommen werden, dann in callback-string über-
102   # geben und hier reinparsen, oder besser multibox oder html auslagern?
103   # Antwort: form->currency wird mit oldcurrency oder curr[0] überschrieben
104   # Wofür macht das Sinn?
105   @curr = split(/:/, $form->{currencies});
106   chomp $curr[0];
107   $form->{defaultcurrency} = $form->{currency} = $form->{oldcurrency} =
108     $curr[0];
109
110   $form->{selectcurrency} = "";
111   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
112
113
114   &form_header;
115   &form_footer;
116
117   $lxdebug->leave_sub();
118 }
119
120 sub form_header {
121   $lxdebug->enter_sub;
122
123   $auth->assert('cash');
124
125   my ($vc, $arap, $exchangerate);
126   my ($onload);
127
128   if ($form->{ $form->{vc} } eq "") {
129     map { $form->{"addr$_"} = "" } (1 .. 4);
130   }
131
132   for my $item ($form->{vc}, "account", "currency", $form->{ARAP}) {
133     $form->{"select$item"} =~ s/ selected//;
134     $form->{"select$item"} =~ s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
135   }
136
137   $vc =
138     ($form->{"select$form->{vc}"})
139     ? qq|<select name=$form->{vc}>$form->{"select$form->{vc}"}\n</select>|
140     : qq|<input name=$form->{vc} size=35 value="$form->{$form->{vc}}">|;
141
142   $form->{openinvoices} = $form->{all_vc} ? "" : 1;
143
144   # $locale->text('AR')
145   # $locale->text('AP')
146
147   $form->header;
148
149   $arap = lc $form->{ARAP};
150   $onload = qq|focus()|;
151   $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
152   $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
153
154   print $::form->parse_html_template('cp/form_header', {
155     is_customer => $form->{vc}   eq 'customer',
156     is_receipt  => $form->{type} eq 'receipt',
157     onload      => $onload,
158     arap        => $arap,
159     vccontent   => $vc,
160   });
161
162   $lxdebug->leave_sub;
163 }
164
165 sub list_invoices {
166   $::lxdebug->enter_sub;
167   $::auth->assert('cash');
168
169   my @columns = qw(amount due paid invnumber id transdate checked);
170   my (@invoices, %total);
171   for my $i (1 .. $::form->{rowcount}) {
172     push @invoices, +{ map { $_ => $::form->{"$_\_$i"} } @columns };
173     $total{$_} += $invoices[-1]{$_} = $::form->parse_amount(\%::myconfig, $invoices[-1]{$_}) for qw(amount due paid);
174   }
175
176   print $::form->parse_html_template('cp/invoices', {
177     invoices => \@invoices,
178     totals   => \%total,
179   });
180
181   $::lxdebug->leave_sub;
182 }
183
184 sub form_footer {
185   $::lxdebug->enter_sub;
186   $::auth->assert('cash');
187
188   print $::form->parse_html_template('cp/form_footer');
189
190   $::lxdebug->leave_sub;
191 }
192
193 sub update {
194   $lxdebug->enter_sub();
195
196   $auth->assert('cash');
197
198   my ($new_name_selected) = @_;
199
200   my ($buysell, $newvc, $updated, $exchangerate, $amount);
201
202   if ($form->{vc} eq 'customer') {
203     $buysell = "buy";
204   } else {
205     $buysell = "sell";
206   }
207
208   # if we switched to all_vc
209   # funktioniert derzeit nicht 12.10.2010 jb
210   if ($form->{all_vc} ne $form->{oldall_vc}) {
211
212     $form->{openinvoices} = ($form->{all_vc}) ? 0 : 1;
213
214     $form->{"select$form->{vc}"} = "";
215
216     if ($form->{all_vc}) {
217       $form->all_vc(\%myconfig, $form->{vc}, $form->{ARAP});
218
219       if ($form->{"all_$form->{vc}"}) {
220         map {
221           $form->{"select$form->{vc}"} .=
222             "<option>$_->{name}--$_->{id}\n"
223         } @{ $form->{"all_$form->{vc}"} };
224       }
225     } else {  # ab hier wieder ausgeführter code (s.o.):
226       CP->get_openvc(\%myconfig, \%$form);
227
228       if ($form->{"all_$form->{vc}"}) {
229         $newvc =
230           qq|$form->{"all_$form->{vc}"}[0]->{name}--$form->{"all_$form->{vc}"}[0]->{id}|;
231         map {
232           $form->{"select$form->{vc}"} .=
233             "<option>$_->{name}--$_->{id}\n"
234         } @{ $form->{"all_$form->{vc}"} };
235       }
236
237       # if the name is not the same
238       if ($form->{"select$form->{vc}"} !~ /$form->{$form->{vc}}/) {
239         $form->{ $form->{vc} } = $newvc;
240       }
241     }
242   }
243   # Falls Suche über Rechnungsnummer und kein Kundenname vorhanden
244   if ($form->{invnumber} && !($form->{$form->{vc}})){
245   $form->{open} ='Y'; # nur die offenen rechnungen
246   if ($form->{ARAP} eq 'AR'){
247     AR->ar_transactions(\%myconfig, \%$form);
248
249     # if you search for invoice '11' ar_transactions will also match invoices
250     # 112, 211, ... due to the LIKE
251
252     # so there is now an extra loop that tries to match the invoice number
253     # exactly among all returned results, and then passes the customer_id instead of the name
254     # because the name may not be unique
255
256     my $found_exact_invnumber_match = 0;
257     foreach my $i ( @{ $form->{AR} } ) {
258       next unless $i->{invnumber} eq $form->{invnumber};
259       # found exactly matching invnumber
260       $form->{$form->{vc}} = $i->{name};
261       $form->{customer_id} = $i->{customer_id};
262       $found_exact_invnumber_match = 1;
263     };
264
265     unless ( $found_exact_invnumber_match ) {
266       # use first returned entry, may not be the correct one if invnumber doesn't match uniquely
267       $form->{$form->{vc}} = $form->{AR}[0]{name};
268       $form->{customer_id} = $form->{AR}[0]{customer_id};
269     };
270   } else {
271     # s.o. nur für zahlungsausgang
272     AP->ap_transactions(\%myconfig, \%$form);
273     $form->{$form->{vc}} = $form->{AP}[0]{name};
274     }
275   }
276   # get customer and invoices
277   $updated = &check_name($form->{vc}) unless $form->{customer_id};
278
279   if ( $form->{customer_id} ) {
280     # we already know the exact customer_id, fill $form with customer data
281     IS->get_customer(\%myconfig, \%$form);
282     $updated = 1;
283   };
284
285   if ($new_name_selected || $updated) {
286     # get open invoices from ar/ap using $form->{vc} and a.${vc}_id
287     CP->get_openinvoices(\%myconfig, \%$form);
288     ($newvc) = split /--/, $form->{ $form->{vc} };
289     $form->{"old$form->{vc}"} = qq|$newvc--$form->{"$form->{vc}_id"}|;
290     $updated = 1;
291   }
292
293   if ($form->{currency} ne $form->{oldcurrency}) {
294     $form->{oldcurrency} = $form->{currency};
295     if (!$updated) {
296       CP->get_openinvoices(\%myconfig, \%$form);
297       $updated = 1;
298     }
299   }
300
301   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{datepaid}, $buysell);
302   $form->{exchangerate} = $form->{forex} if $form->{forex};
303
304   $amount = $form->{amount} = $form->parse_amount(\%myconfig, $form->{amount});
305
306   if ($updated) {
307     $form->{rowcount} = 0;
308
309     $form->{queued} = "";
310
311     my $i = 0;
312     foreach my $ref (@{ $form->{PR} }) {
313       $i++;
314       $form->{"id_$i"}        = $ref->{id};
315       $form->{"invnumber_$i"} = $ref->{invnumber};
316       $form->{"transdate_$i"} = $ref->{transdate};
317       $ref->{exchangerate} = 1 unless $ref->{exchangerate};
318       $form->{"amount_$i"} = $ref->{amount} / $ref->{exchangerate};
319       $form->{"due_$i"}    =
320         ($ref->{amount} - $ref->{paid}) / $ref->{exchangerate};
321       $form->{"checked_$i"} = "";
322       $form->{"paid_$i"}    = "";
323
324       # need to format
325       map {
326         $form->{"${_}_$i"} =
327           $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
328       } qw(amount due);
329
330     }
331     $form->{rowcount} = $i;
332   }
333
334   # recalculate
335
336   # Modified from $amount = $form->{amount} by J.Zach to update amount to total
337   # payment amount in Zahlungsausgang
338   $amount = 0;
339   for my $i (1 .. $form->{rowcount}) {
340
341     map {
342       $form->{"${_}_$i"} =
343         $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
344     } qw(amount due paid);
345
346     if ($form->{"checked_$i"}) {
347
348       # calculate paid_$i
349       if (!$form->{"paid_$i"}) {
350         $form->{"paid_$i"} = $form->{"due_$i"};
351       }
352
353       # Modified by J.Zach, see abovev
354       $amount += $form->{"paid_$i"};
355
356     } else {
357       $form->{"paid_$i"} = "";
358     }
359
360     map {
361       $form->{"${_}_$i"} =
362         $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
363     } qw(amount due paid);
364
365   }
366
367   # Line added by J.Zach, see above
368   $form->{amount}=$amount;
369
370   &form_header;
371   &list_invoices;
372   &form_footer;
373
374   $lxdebug->leave_sub();
375 }
376
377 sub post {
378   $lxdebug->enter_sub();
379
380   $auth->assert('cash');
381
382   &check_form;
383
384   if ($form->{currency} ne $form->{defaultcurrency}) {
385     $form->error($locale->text('Exchangerate missing!'))
386       unless $form->{exchangerate};
387   }
388
389   # Beim Aktualisieren wird das Konto übernommen
390   # und jetzt auch Beleg und Datum
391   $form->{callback} = "cp.pl?action=payment&vc=$form->{vc}&type=$form->{type}&account=$form->{account}&$form->{currency}" .
392                       "&datepaid=$form->{datepaid}&source=$form->{source}";
393
394   my $msg1 = $::form->{type} eq 'receipt' ? $::locale->text("Receipt posted!") : $::locale->text("Payment posted!");
395   my $msg2 = $::form->{type} eq 'receipt' ? $::locale->text("Cannot post Receipt!") : $::locale->text("Cannot post Payment!");
396
397   # Die Nachrichten (Receipt posted!) werden nicht angezeigt.
398   # Entweder wieder aktivieren oder komplett rausnehmen
399   $form->redirect($msg1) if (CP->process_payment(\%::myconfig, $::form));
400   $form->error($msg2);
401
402   $lxdebug->leave_sub();
403 }
404
405 sub check_form {
406   $lxdebug->enter_sub();
407
408   $auth->assert('cash');
409
410   my ($closedto, $datepaid, $amount);
411
412   &check_name($form->{vc});
413
414   if ($form->{currency} ne $form->{oldcurrency}) {
415     &update;
416     ::end_of_request();
417   }
418   $form->error($locale->text('Date missing!')) unless $form->{datepaid};
419   my $selected_check = 1;
420   for my $i (1 .. $form->{rowcount}) {
421     if ($form->{"checked_$i"}) {
422       if ($form->parse_amount(\%myconfig, $form->{"paid_$i"}, 2) <= 0) { # negativen Betrag eingegeben
423           $form->error($locale->text('Amount has to be greater then zero! Wrong row number: ') . $i);
424       }
425         undef($selected_check);
426         # last; # ich muss doch über alle buchungen laufen, da ich noch
427         # die freitext-eingabe der werte prüfen will
428     }
429   }
430   $form->error($locale->text('No transaction selected!')) if $selected_check;
431
432   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
433   $datepaid = $form->datetonum($form->{datepaid}, \%myconfig);
434
435   $form->error($locale->text('Cannot process payment for a closed period!'))
436     if ($form->date_closed($form->{"datepaid"}, \%myconfig));
437
438   $amount = $form->parse_amount(\%myconfig, $form->{amount});
439   $form->{amount} = $amount;
440
441   for my $i (1 .. $form->{rowcount}) {
442     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
443       $amount -= $form->parse_amount(\%myconfig, $form->{"paid_$i"});
444
445       push(@{ $form->{paid}      ||= [] }, $form->{"paid_$i"});
446       push(@{ $form->{due}       ||= [] }, $form->{"due_$i"});
447       push(@{ $form->{invnumber} ||= [] }, $form->{"invnumber_$i"});
448       push(@{ $form->{invdate}   ||= [] }, $form->{"transdate_$i"});
449     }
450   }
451
452   if ($form->round_amount($amount, 2) != 0) {
453     push(@{ $form->{paid} }, $form->format_amount(\%myconfig, $amount, 2));
454     push(@{ $form->{due} }, $form->format_amount(\%myconfig, 0, "0"));
455     push(@{ $form->{invnumber} },
456          ($form->{ARAP} eq 'AR')
457          ? $locale->text('Deposit')
458          : $locale->text('Prepayment'));
459     push(@{ $form->{invdate} }, $form->{datepaid});
460   }
461
462   $lxdebug->leave_sub();
463 }