1 #=====================================================================
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
7 #=====================================================================
8 # SQL-Ledger Accounting
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 #======================================================================
32 #======================================================================
43 require "bin/mozilla/arap.pl";
44 require "bin/mozilla/common.pl";
46 our ($form, %myconfig, $lxdebug, $locale, $auth);
53 $lxdebug->enter_sub();
55 $auth->assert('cash');
59 $form->{ARAP} = ($form->{type} eq 'receipt') ? "AR" : "AP";
60 $form->{arap} = lc $form->{ARAP};
62 # setup customer/vendor selection for open invoices
63 if ($form->{all_vc}) {
64 # Dieser Zweig funktioniert derzeit NIE. Ggf. ganz raus oder
65 # alle offenen Zahlungen wieder korrekt anzeigen. jb 12.10.2010
66 $form->all_vc(\%myconfig, $form->{vc}, $form->{ARAP});
68 CP->get_openvc(\%myconfig, \%$form);
70 # Auswahlliste für vc zusammenbauen
71 # Erweiterung für schliessende option und erweiterung um value
72 # für bugfix 1771 (doppelte Leerzeichen werden nicht 'gepostet')
73 $form->{"select$form->{vc}"} = "";
75 $form->{selectcustomer} .= "<option value=\"\"></option>\n" if $form->{vc} eq "customer";
77 if ($form->{"all_$form->{vc}"}) {
79 $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
80 map { $form->{"select$form->{vc}"} .= "<option value=\"$_->{name}--$_->{id}\">$_->{name}--$_->{id}</option>\n" }
81 @{ $form->{"all_$form->{vc}"} };
83 CP->paymentaccounts(\%myconfig, \%$form);
85 # Standard Konto für Umlaufvermögen
86 my $accno_arap = IS->get_standard_accno_current_assets(\%myconfig, \%$form);
87 # Entsprechend präventiv die Auswahlliste für Kontonummer
88 # auch mit value= zusammenbauen (s.a. oben bugfix 1771)
89 # Wichtig: Auch das Template anpassen, damit hidden input korrekt die "
91 $form->{selectaccount} = "";
92 $form->{"select$form->{ARAP}"} = "";
94 map { $form->{selectaccount} .= "<option value=\"$_->{accno}--$_->{description}\">$_->{accno}--$_->{description}</option>\n";
95 $form->{account} = "$_->{accno}--$_->{description}" if ($_->{accno} eq $accno_arap) } @{ $form->{PR}{"$form->{ARAP}_paid"} };
97 # Braucht man das hier überhaupt? Erstmal auskommentieren .. jan 18.12.2010
99 # $form->{"select$form->{ARAP}"} .=
100 # "<option>$_->{accno}--$_->{description}\n"
101 # } @{ $form->{PR}{ $form->{ARAP} } };
102 # ENDE LOESCHMICH in 2012
105 # oldcurrency ist zwar noch hier als fragment enthalten, wird aber bei
106 # der aktualisierung der form auch nicht mitübernommen. das konzept
107 # old_$FOO habe ich auch noch nicht verstanden ...
108 # Ok. Wenn currency übernommen werden, dann in callback-string über-
109 # geben und hier reinparsen, oder besser multibox oder html auslagern?
110 # Antwort: form->currency wird mit oldcurrency oder curr[0] überschrieben
111 # Wofür macht das Sinn?
112 @curr = split(/:/, $form->{currencies});
114 $form->{defaultcurrency} = $form->{currency} = $form->{oldcurrency} =
117 # Entsprechend präventiv die Auswahlliste für Währungen
118 # auch mit value= zusammenbauen (s.a. oben bugfix 1771)
119 $form->{selectcurrency} = "";
120 map { $form->{selectcurrency} .= "<option value=\"$_\">$_</option>\n" } @curr;
126 $lxdebug->leave_sub();
132 $auth->assert('cash');
134 my ($vc, $arap, $exchangerate);
137 if ($form->{ $form->{vc} } eq "") {
138 map { $form->{"addr$_"} = "" } (1 .. 4);
141 # sometimes it happens that values in customer arrive without the signs '--'
142 # but in order to select the right option field we need values with '--'
143 if ($form->{vc} eq "customer"){
144 my ($customername) = split /--/, $form->{ $form->{vc} };
145 $form->{ $form->{vc} } = $customername . "--" . $form->{customer_id};
148 # geändert von <option>asdf--2929
150 # <option value="asdf--2929">asdf--2929</option>
151 # offen: $form->{ARAP} kann raus?
152 for my $item ($form->{vc}, "account", "currency", $form->{ARAP}) {
153 $form->{"select$item"} =~ s/ selected//;
154 $form->{"select$item"} =~ s/option value="\Q$form->{$item}\E">\Q$form->{$item}\E/option selected value="$form->{$item}">$form->{$item}/;
158 ($form->{"select$form->{vc}"})
159 ? qq|<select name=$form->{vc}>$form->{"select$form->{vc}"}\n</select>|
160 : qq|<input name=$form->{vc} size=35 value="$form->{$form->{vc}}">|;
162 $form->{openinvoices} = $form->{all_vc} ? "" : 1;
164 # $locale->text('AR')
165 # $locale->text('AP')
169 $arap = lc $form->{ARAP};
170 $onload = qq|focus()|;
171 $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
172 $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
174 print $::form->parse_html_template('cp/form_header', {
175 is_customer => $form->{vc} eq 'customer',
176 is_receipt => $form->{type} eq 'receipt',
186 $::lxdebug->enter_sub;
187 $::auth->assert('cash');
189 my @columns = qw(amount due paid invnumber id transdate checked);
190 my (@invoices, %total);
191 for my $i (1 .. $::form->{rowcount}) {
192 push @invoices, +{ map { $_ => $::form->{"$_\_$i"} } @columns };
193 $total{$_} += $invoices[-1]{$_} = $::form->parse_amount(\%::myconfig, $invoices[-1]{$_}) for qw(amount due paid);
196 print $::form->parse_html_template('cp/invoices', {
197 invoices => \@invoices,
201 $::lxdebug->leave_sub;
205 $::lxdebug->enter_sub;
206 $::auth->assert('cash');
208 print $::form->parse_html_template('cp/form_footer');
210 $::lxdebug->leave_sub;
214 $lxdebug->enter_sub();
216 $auth->assert('cash');
218 my ($new_name_selected) = @_;
220 my ($buysell, $newvc, $updated, $exchangerate, $amount);
222 if ($form->{vc} eq 'customer') {
228 # if we switched to all_vc
229 # funktioniert derzeit nicht 12.10.2010 jb
230 if ($form->{all_vc} ne $form->{oldall_vc}) {
232 $form->{openinvoices} = ($form->{all_vc}) ? 0 : 1;
234 $form->{"select$form->{vc}"} = "";
236 if ($form->{all_vc}) {
237 $form->all_vc(\%myconfig, $form->{vc}, $form->{ARAP});
239 if ($form->{"all_$form->{vc}"}) {
241 $form->{"select$form->{vc}"} .=
242 "<option>$_->{name}--$_->{id}\n"
243 } @{ $form->{"all_$form->{vc}"} };
245 } else { # ab hier wieder ausgeführter code (s.o.):
246 CP->get_openvc(\%myconfig, \%$form);
248 if ($form->{"all_$form->{vc}"}) {
250 qq|$form->{"all_$form->{vc}"}[0]->{name}--$form->{"all_$form->{vc}"}[0]->{id}|;
252 $form->{"select$form->{vc}"} .=
253 "<option>$_->{name}--$_->{id}\n"
254 } @{ $form->{"all_$form->{vc}"} };
257 # if the name is not the same
258 if ($form->{"select$form->{vc}"} !~ /$form->{$form->{vc}}/) {
259 $form->{ $form->{vc} } = $newvc;
264 # search by customernumber
265 # the customernumber has to be correct otherwise nothing is found
266 if ($form->{vc} eq 'customer' and $form->{customernumber} and $form->{ARAP} eq 'AR') {
267 $form->{open} ='Y'; # only open invoices
268 # ar_transactions automatically searches by $form->{customer_id} or else
269 # $form->{customer} if available, and these variables will always be set
270 # so we have to empty these values first
271 $form->{customer_id} = '';
272 $form->{customer} = '';
273 AR->ar_transactions(\%myconfig, \%$form);
275 # Here we just take the first returned value even if the custumernumber
277 $form->{customer} = $form->{AR}[0]{name};
278 $form->{customer_id} = $form->{AR}[0]{customer_id};
281 # search by invoicenumber,
282 if ($form->{invnumber}) {
283 $form->{open} ='Y'; # only open invoices
284 if ($form->{ARAP} eq 'AR'){
285 # ar_transactions automatically searches by $form->{customer_id} or else
286 # $form->{customer} if available, and these variables will always be set
287 # so we have to empty these values first
288 $form->{customer_id} = '';
289 $form->{customer} = '';
290 AR->ar_transactions(\%myconfig, \%$form);
292 # if you search for invoice '11' ar_transactions will also match invoices
293 # 112, 211, ... due to the LIKE
295 # so there is now an extra loop that tries to match the invoice number
296 # exactly among all returned results, and then passes the customer_id instead of the name
297 # because the name may not be unique
299 my $found_exact_invnumber_match = 0;
300 foreach my $i ( @{ $form->{AR} } ) {
301 next unless $i->{invnumber} eq $form->{invnumber};
302 # found exactly matching invnumber
303 $form->{$form->{vc}} = $i->{name};
304 $form->{customer_id} = $i->{customer_id};
305 #$form->{"old${form->{vc}"} = $i->{customer_id};
306 $found_exact_invnumber_match = 1;
309 unless ( $found_exact_invnumber_match ) {
310 # use first returned entry, may not be the correct one if invnumber doesn't
312 $form->{$form->{vc}} = $form->{AR}[0]{name};
313 $form->{customer_id} = $form->{AR}[0]{customer_id};
316 # s.o. nur für zahlungsausgang
317 AP->ap_transactions(\%myconfig, \%$form);
318 $form->{$form->{vc}} = $form->{AP}[0]{name};
322 # determine customer/vendor
323 if ( $form->{customer_id} and ($form->{invnumber} or $form->{customernumber}) ) {
324 # we already know the exact customer_id, so fill $form with customer data
325 IS->get_customer(\%myconfig, \%$form);
328 # check_name is called with "customer" or "vendor" and otherwise uses contents of $form
329 # check_name also runs get_customer/get_vendor
330 $updated = &check_name($form->{vc});
333 if ($new_name_selected || $updated) {
334 # get open invoices from ar/ap using $form->{vc} and a.${vc}_id, i.e. customer_id
335 CP->get_openinvoices(\%myconfig, \%$form);
336 ($newvc) = split /--/, $form->{ $form->{vc} };
337 $form->{"old$form->{vc}"} = qq|$newvc--$form->{"$form->{vc}_id"}|;
341 if ($form->{currency} ne $form->{oldcurrency}) {
342 $form->{oldcurrency} = $form->{currency};
344 CP->get_openinvoices(\%myconfig, \%$form);
349 if (!$form->{forex}) { # read exchangerate from input field (not hidden)
350 $form->{exchangerate} = $form->parse_amount(\%myconfig, $form->{exchangerate});
352 $form->{forex} = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{datepaid}, $buysell);
353 $form->{exchangerate} = $form->{forex} if $form->{forex};
355 $amount = $form->{amount} = $form->parse_amount(\%myconfig, $form->{amount});
358 $form->{rowcount} = 0;
360 $form->{queued} = "";
363 foreach my $ref (@{ $form->{PR} }) {
365 $form->{"id_$i"} = $ref->{id};
366 $form->{"invnumber_$i"} = $ref->{invnumber};
367 $form->{"transdate_$i"} = $ref->{transdate};
368 $ref->{exchangerate} = 1 unless $ref->{exchangerate};
369 $form->{"amount_$i"} = $ref->{amount} / $ref->{exchangerate};
371 ($ref->{amount} - $ref->{paid}) / $ref->{exchangerate};
372 $form->{"checked_$i"} = "";
373 $form->{"paid_$i"} = "";
378 $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
382 $form->{rowcount} = $i;
387 # Modified from $amount = $form->{amount} by J.Zach to update amount to total
388 # payment amount in Zahlungsausgang
390 for my $i (1 .. $form->{rowcount}) {
394 $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
395 } qw(amount due paid);
397 if ($form->{"checked_$i"}) {
400 if (!$form->{"paid_$i"}) {
401 $form->{"paid_$i"} = $form->{"due_$i"};
404 # Modified by J.Zach, see abovev
405 $amount += $form->{"paid_$i"};
408 $form->{"paid_$i"} = "";
413 $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
414 } qw(amount due paid);
418 # Line added by J.Zach, see above
419 $form->{amount}=$amount;
425 $lxdebug->leave_sub();
429 $lxdebug->enter_sub();
431 $auth->assert('cash');
435 if ($form->{currency} ne $form->{defaultcurrency}) {
436 $form->error($locale->text('Exchangerate missing!'))
437 unless $form->{exchangerate};
440 # Beim Aktualisieren wird das Konto übernommen
441 # und jetzt auch Beleg und Datum
442 $form->{callback} = "cp.pl?action=payment&vc=$form->{vc}&type=$form->{type}&account=$form->{account}&$form->{currency}" .
443 "&datepaid=$form->{datepaid}&source=$form->{source}";
445 my $msg1 = $::form->{type} eq 'receipt' ? $::locale->text("Receipt posted!") : $::locale->text("Payment posted!");
446 my $msg2 = $::form->{type} eq 'receipt' ? $::locale->text("Cannot post Receipt!") : $::locale->text("Cannot post Payment!");
448 # Die Nachrichten (Receipt posted!) werden nicht angezeigt.
449 # Entweder wieder aktivieren oder komplett rausnehmen
450 $form->redirect($msg1) if (CP->process_payment(\%::myconfig, $::form));
453 $lxdebug->leave_sub();
457 $lxdebug->enter_sub();
459 $auth->assert('cash');
461 my ($closedto, $datepaid, $amount);
463 &check_name($form->{vc});
465 if ($form->{currency} ne $form->{oldcurrency}) {
469 $form->error($locale->text('Date missing!')) unless $form->{datepaid};
470 my $selected_check = 1;
471 for my $i (1 .. $form->{rowcount}) {
472 if ($form->{"checked_$i"}) {
473 if ($form->parse_amount(\%myconfig, $form->{"paid_$i"}, 2) <= 0) { # negativen Betrag eingegeben
474 $form->error($locale->text('Amount has to be greater then zero! Wrong row number: ') . $i);
476 undef($selected_check);
477 # last; # ich muss doch über alle buchungen laufen, da ich noch
478 # die freitext-eingabe der werte prüfen will
481 $form->error($locale->text('No transaction selected!')) if $selected_check;
483 $closedto = $form->datetonum($form->{closedto}, \%myconfig);
484 $datepaid = $form->datetonum($form->{datepaid}, \%myconfig);
486 $form->error($locale->text('Cannot process payment for a closed period!'))
487 if ($form->date_closed($form->{"datepaid"}, \%myconfig));
489 $amount = $form->parse_amount(\%myconfig, $form->{amount});
490 $form->{amount} = $amount;
492 for my $i (1 .. $form->{rowcount}) {
493 if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
494 $amount -= $form->parse_amount(\%myconfig, $form->{"paid_$i"});
496 push(@{ $form->{paid} ||= [] }, $form->{"paid_$i"});
497 push(@{ $form->{due} ||= [] }, $form->{"due_$i"});
498 push(@{ $form->{invnumber} ||= [] }, $form->{"invnumber_$i"});
499 push(@{ $form->{invdate} ||= [] }, $form->{"transdate_$i"});
503 if ($form->round_amount($amount, 2) != 0) {
504 push(@{ $form->{paid} }, $form->format_amount(\%myconfig, $amount, 2));
505 push(@{ $form->{due} }, $form->format_amount(\%myconfig, 0, "0"));
506 push(@{ $form->{invnumber} },
507 ($form->{ARAP} eq 'AR')
508 ? $locale->text('Deposit')
509 : $locale->text('Prepayment'));
510 push(@{ $form->{invdate} }, $form->{datepaid});
513 $lxdebug->leave_sub();