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 #======================================================================
32 #======================================================================
37 require "$form->{path}/arap.pl";
38 require "bin/mozilla/common.pl";
44 # this is for our long dates
45 # $locale->text('January')
46 # $locale->text('February')
47 # $locale->text('March')
48 # $locale->text('April')
49 # $locale->text('May ')
50 # $locale->text('June')
51 # $locale->text('July')
52 # $locale->text('August')
53 # $locale->text('September')
54 # $locale->text('October')
55 # $locale->text('November')
56 # $locale->text('December')
58 # this is for our short month
59 # $locale->text('Jan')
60 # $locale->text('Feb')
61 # $locale->text('Mar')
62 # $locale->text('Apr')
63 # $locale->text('May')
64 # $locale->text('Jun')
65 # $locale->text('Jul')
66 # $locale->text('Aug')
67 # $locale->text('Sep')
68 # $locale->text('Oct')
69 # $locale->text('Nov')
70 # $locale->text('Dec')
73 $lxdebug->enter_sub();
75 $form->{title} = "Add";
78 "$form->{script}?action=add&path=$form->{path}&login=$form->{login}&password=$form->{password}"
79 unless $form->{callback};
81 # we use this only to set a default date
82 GL->transaction(\%myconfig, \%$form);
86 qq|<option value="$_->{id}--$_->{rate}">$_->{taxdescription} |
87 . ($_->{rate} * 100) . qq| %|
90 $form->{rowcount} = 2;
97 $form->all_departments(\%myconfig);
98 if (@{ $form->{all_departments} }) {
99 $form->{selectdepartment} = "<option>\n";
102 $form->{selectdepartment} .=
103 "<option>$_->{description}--$_->{id}\n"
104 } (@{ $form->{all_departments} });
108 $lxdebug->leave_sub();
113 $lxdebug->enter_sub();
115 GL->transaction(\%myconfig, \%$form);
119 qq|<option value="$_->{id}--$_->{rate}">$_->{taxdescription} |
120 . ($_->{rate} * 100) . qq| %|
123 $form->{amount} = $form->format_amount(\%myconfig, $form->{amount}, 2);
126 $form->all_departments(\%myconfig);
127 if (@{ $form->{all_departments} }) {
128 $form->{selectdepartment} = "<option>\n";
131 $form->{selectdepartment} .=
132 "<option>$_->{description}--$_->{id}\n"
133 } (@{ $form->{all_departments} });
139 foreach $ref (@{ $form->{GL} }) {
141 if ($tax && ($ref->{accno} eq $taxaccno)) {
142 $form->{"tax_$j"} = abs($ref->{amount});
143 $form->{"taxchart_$j"} = $ref->{id} . "--" . $ref->{taxrate};
144 if ($form->{taxincluded}) {
145 if ($ref->{amount} < 0) {
146 $form->{"debit_$j"} += $form->{"tax_$j"};
148 $form->{"credit_$j"} += $form->{"tax_$j"};
151 $form->{"project_id_$j"} = $ref->{project_id};
154 $form->{"accno_$i"} = "$ref->{accno}--$ref->{tax_id}";
155 for (qw(fx_transaction source memo)) { $form->{"${_}_$i"} = $ref->{$_} }
156 if ($ref->{amount} < 0) {
157 $form->{totaldebit} -= $ref->{amount};
158 $form->{"debit_$i"} = $ref->{amount} * -1;
160 $form->{totalcredit} += $ref->{amount};
161 $form->{"credit_$i"} = $ref->{amount};
163 $form->{"taxchart_$i"} = "0--0.00";
164 $form->{"project_id_$i"} = $ref->{project_id};
167 if ($ref->{taxaccno} && !$tax) {
168 $taxaccno = $ref->{taxaccno};
176 $form->{rowcount} = $i;
178 ($form->datetonum($form->{transdate}, \%myconfig) <=
179 $form->datetonum($form->{closedto}, \%myconfig));
181 $form->{title} = "Edit";
186 $lxdebug->leave_sub();
191 $lxdebug->enter_sub();
193 $form->{title} = $locale->text('Buchungsjournal');
195 $form->all_departments(\%myconfig);
198 if (@{ $form->{all_departments} }) {
199 $form->{selectdepartment} = "<option>\n";
202 $form->{selectdepartment} .=
203 "<option>$_->{description}--$_->{id}\n"
204 } (@{ $form->{all_departments} });
209 <th align=right nowrap>| . $locale->text('Department') . qq|</th>
210 <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
212 | if $form->{selectdepartment};
214 $form->get_lists("projects" => { "key" => "ALL_PROJECTS",
217 my %project_labels = ();
218 my @project_values = ("");
219 foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
220 push(@project_values, $item->{"id"});
221 $project_labels{$item->{"id"}} = $item->{"projectnumber"};
225 NTI($cgi->popup_menu('-name' => "project_id",
226 '-values' => \@project_values,
227 '-labels' => \%project_labels));
229 # use JavaScript Calendar or not
230 $form->{jsscript} = $jscalendar;
232 if ($form->{jsscript}) {
234 # with JavaScript Calendar
236 <td><input name=datefrom id=datefrom size=11 title="$myconfig{dateformat}">
237 <input type=button name=datefrom id="trigger1" value=|
238 . $locale->text('button') . qq|></td>
241 <td><input name=dateto id=dateto size=11 title="$myconfig{dateformat}">
242 <input type=button name=dateto id="trigger2" value=|
243 . $locale->text('button') . qq|></td>
248 Form->write_trigger(\%myconfig, "2", "datefrom", "BR", "trigger1",
249 "dateto", "BL", "trigger2");
252 # without JavaScript Calendar
254 qq|<td><input name=datefrom id=datefrom size=11 title="$myconfig{dateformat}"></td>|;
256 qq|<td><input name=dateto id=dateto size=11 title="$myconfig{dateformat}"></td>|;
264 <form method=post action=$form->{script}>
266 <input type=hidden name=sort value=transdate>
270 <th class=listtop>$form->{title}</th>
277 <th align=right>| . $locale->text('Reference') . qq|</th>
278 <td><input name=reference size=20></td>
279 <th align=right>| . $locale->text('Source') . qq|</th>
280 <td><input name=source size=20></td>
284 <th align=right>| . $locale->text('Description') . qq|</th>
285 <td colspan=3><input name=description size=40></td>
288 <th align=right>| . $locale->text('Notes') . qq|</th>
289 <td colspan=3><input name=notes size=40></td>
292 <th align=right>| . $locale->text('Project Number') . qq|</th>
293 <td colspan=3>$projectnumber</td>
296 <th align=right>| . $locale->text('From') . qq|</th>
298 <th align=right>| . $locale->text('To (time)') . qq|</th>
302 <th align=right>| . $locale->text('Include in Report') . qq|</th>
307 <input name="category" class=radio type=radio value=X checked> |
308 . $locale->text('All') . qq|
309 <input name="category" class=radio type=radio value=A> |
310 . $locale->text('Asset') . qq|
311 <input name="category" class=radio type=radio value=L> |
312 . $locale->text('Liability') . qq|
313 <input name="category" class=radio type=radio value=I> |
314 . $locale->text('Revenue') . qq|
315 <input name="category" class=radio type=radio value=E> |
316 . $locale->text('Expense') . qq|
322 <td align=right><input name="l_id" class=checkbox type=checkbox value=Y></td>
323 <td>| . $locale->text('ID') . qq|</td>
324 <td align=right><input name="l_transdate" class=checkbox type=checkbox value=Y checked></td>
325 <td>| . $locale->text('Date') . qq|</td>
326 <td align=right><input name="l_reference" class=checkbox type=checkbox value=Y checked></td>
327 <td>| . $locale->text('Reference') . qq|</td>
328 <td align=right><input name="l_description" class=checkbox type=checkbox value=Y checked></td>
329 <td>| . $locale->text('Description') . qq|</td>
330 <td align=right><input name="l_notes" class=checkbox type=checkbox value=Y></td>
331 <td>| . $locale->text('Notes') . qq|</td>
334 <td align=right><input name="l_debit" class=checkbox type=checkbox value=Y checked></td>
335 <td>| . $locale->text('Debit') . qq|</td>
336 <td align=right><input name="l_credit" class=checkbox type=checkbox value=Y checked></td>
337 <td>| . $locale->text('Credit') . qq|</td>
338 <td align=right><input name="l_source" class=checkbox type=checkbox value=Y checked></td>
339 <td>| . $locale->text('Source') . qq|</td>
340 <td align=right><input name="l_accno" class=checkbox type=checkbox value=Y checked></td>
341 <td>| . $locale->text('Account') . qq|</td>
342 <td align=right><input name="l_gifi_accno" class=checkbox type=checkbox value=Y></td>
343 <td>| . $locale->text('GIFI') . qq|</td>
346 <td align=right><input name="l_subtotal" class=checkbox type=checkbox value=Y></td>
347 <td>| . $locale->text('Subtotal') . qq|</td>
348 <td align=right><input name="l_projectnumbers" class=checkbox type=checkbox value=Y></td>
349 <td>| . $locale->text('Project Number') . qq|</td>
359 <td><hr size=3 noshade></td>
365 <input type=hidden name=nextsub value=generate_report>
367 <input type=hidden name=path value=$form->{path}>
368 <input type=hidden name=login value=$form->{login}>
369 <input type=hidden name=password value=$form->{password}>
372 <input class=submit type=submit name=action value="|
373 . $locale->text('Continue') . qq|">
379 $lxdebug->leave_sub();
382 sub generate_report {
383 $lxdebug->enter_sub();
385 $form->{sort} = "transdate" unless $form->{sort};
387 GL->all_transactions(\%myconfig, \%$form);
390 "$form->{script}?action=generate_report&path=$form->{path}&login=$form->{login}&password=$form->{password}";
394 %acctype = ('A' => $locale->text('Asset'),
395 'C' => $locale->text('Contra'),
396 'L' => $locale->text('Liability'),
397 'Q' => $locale->text('Equity'),
398 'I' => $locale->text('Revenue'),
399 'E' => $locale->text('Expense'),);
401 $form->{title} = $locale->text('General Ledger');
403 $ml = ($form->{ml} =~ /(A|E|Q)/) ? -1 : 1;
405 unless ($form->{category} eq 'X') {
406 $form->{title} .= " : " . $locale->text($acctype{ $form->{category} });
408 if ($form->{accno}) {
409 $href .= "&accno=" . $form->escape($form->{accno});
410 $callback .= "&accno=" . $form->escape($form->{accno}, 1);
412 $locale->text('Account')
413 . " : $form->{accno} $form->{account_description}";
415 if ($form->{gifi_accno}) {
416 $href .= "&gifi_accno=" . $form->escape($form->{gifi_accno});
417 $callback .= "&gifi_accno=" . $form->escape($form->{gifi_accno}, 1);
418 $option .= "\n<br>" if $option;
420 $locale->text('GIFI')
421 . " : $form->{gifi_accno} $form->{gifi_account_description}";
423 if ($form->{source}) {
424 $href .= "&source=" . $form->escape($form->{source});
425 $callback .= "&source=" . $form->escape($form->{source}, 1);
426 $option .= "\n<br>" if $option;
427 $option .= $locale->text('Source') . " : $form->{source}";
429 if ($form->{reference}) {
430 $href .= "&reference=" . $form->escape($form->{reference});
431 $callback .= "&reference=" . $form->escape($form->{reference}, 1);
432 $option .= "\n<br>" if $option;
433 $option .= $locale->text('Reference') . " : $form->{reference}";
435 if ($form->{department}) {
436 $href .= "&department=" . $form->escape($form->{department});
437 $callback .= "&department=" . $form->escape($form->{department}, 1);
438 ($department) = split /--/, $form->{department};
439 $option .= "\n<br>" if $option;
440 $option .= $locale->text('Department') . " : $department";
443 if ($form->{description}) {
444 $href .= "&description=" . $form->escape($form->{description});
445 $callback .= "&description=" . $form->escape($form->{description}, 1);
446 $option .= "\n<br>" if $option;
447 $option .= $locale->text('Description') . " : $form->{description}";
449 if ($form->{notes}) {
450 $href .= "¬es=" . $form->escape($form->{notes});
451 $callback .= "¬es=" . $form->escape($form->{notes}, 1);
452 $option .= "\n<br>" if $option;
453 $option .= $locale->text('Notes') . " : $form->{notes}";
455 if ($form->{project_id}) {
456 $href .= "&project_id=" . $form->escape($form->{project_id});
457 $callback .= "&project_id=" . $form->escape($form->{project_id});
460 if ($form->{datefrom}) {
461 $href .= "&datefrom=$form->{datefrom}";
462 $callback .= "&datefrom=$form->{datefrom}";
463 $option .= "\n<br>" if $option;
465 $locale->text('From') . " "
466 . $locale->date(\%myconfig, $form->{datefrom}, 1);
468 if ($form->{dateto}) {
469 $href .= "&dateto=$form->{dateto}";
470 $callback .= "&dateto=$form->{dateto}";
471 if ($form->{datefrom}) {
474 $option .= "\n<br>" if $option;
477 $locale->text('Bis') . " "
478 . $locale->date(\%myconfig, $form->{dateto}, 1);
481 @columns = $form->sort_columns( qw(
482 transdate id reference description
483 notes source debit debit_accno
484 credit credit_accno debit_tax debit_tax_accno
485 credit_tax credit_tax_accno accno gifi_accno
490 if ($form->{accno} || $form->{gifi_accno}) {
491 @columns = grep !/(accno|gifi_accno)/, @columns;
492 push @columns, "balance";
493 $form->{l_balance} = "Y";
497 $form->{l_credit_accno} = "Y";
498 $form->{l_debit_accno} = "Y";
499 $form->{l_credit_tax} = "Y";
500 $form->{l_debit_tax} = "Y";
501 $form->{l_credit_tax_accno} = "Y";
502 $form->{l_debit_tax_accno} = "Y";
503 $form->{l_accno} = "N";
504 foreach $item (@columns) {
505 if ($form->{"l_$item"} eq "Y") {
506 push @column_index, $item;
508 # add column to href and callback
509 $callback .= "&l_$item=Y";
510 $href .= "&l_$item=Y";
514 if ($form->{l_subtotal} eq 'Y') {
515 $callback .= "&l_subtotal=Y";
516 $href .= "&l_subtotal=Y";
519 $callback .= "&category=$form->{category}";
520 $href .= "&category=$form->{category}";
523 "<th><a class=listheading href=$href&sort=id>"
524 . $locale->text('ID')
526 $column_header{transdate} =
527 "<th><a class=listheading href=$href&sort=transdate>"
528 . $locale->text('Date')
530 $column_header{reference} =
531 "<th><a class=listheading href=$href&sort=reference>"
532 . $locale->text('Reference')
534 $column_header{source} =
535 "<th><a class=listheading href=$href&sort=source>"
536 . $locale->text('Source')
538 $column_header{description} =
539 "<th><a class=listheading href=$href&sort=description>"
540 . $locale->text('Description')
542 $column_header{notes} =
543 "<th class=listheading>" . $locale->text('Notes') . "</th>";
544 $column_header{debit} =
545 "<th class=listheading>" . $locale->text('Debit') . "</th>";
546 $column_header{debit_accno} =
547 "<th><a class=listheading href=$href&sort=accno>"
548 . $locale->text('Debit Account')
550 $column_header{credit} =
551 "<th class=listheading>" . $locale->text('Credit') . "</th>";
552 $column_header{credit_accno} =
553 "<th><a class=listheading href=$href&sort=accno>"
554 . $locale->text('Credit Account')
556 $column_header{debit_tax} =
557 "<th><a class=listheading href=$href&sort=accno>"
558 . $locale->text('Debit Tax')
560 $column_header{debit_tax_accno} =
561 "<th><a class=listheading href=$href&sort=accno>"
562 . $locale->text('Debit Tax Account')
564 $column_header{credit_tax} =
565 "<th><a class=listheading href=$href&sort=accno>"
566 . $locale->text('Credit Tax')
568 $column_header{credit_tax_accno} =
569 "<th><a class=listheading href=$href&sort=accno>"
570 . $locale->text('Credit Tax Account')
572 $column_header{gifi_accno} =
573 "<th><a class=listheading href=$href&sort=gifi_accno>"
574 . $locale->text('GIFI')
576 $column_header{balance} = "<th>" . $locale->text('Balance') . "</th>";
577 $column_header{projectnumbers} =
578 "<th class=listheading>" . $locale->text('Project Numbers') . "</th>";
580 $form->{landscape} = 1;
589 <th class=listtop>$form->{title}</th>
599 <tr class=listheading>
602 map { print "$column_header{$_}\n" } @column_index;
611 # add sort to callback
612 $form->{callback} = "$callback&sort=$form->{sort}";
613 $callback = $form->escape($form->{callback});
615 # initial item for subtotals
616 if (@{ $form->{GL} }) {
617 $sameitem = $form->{GL}->[0]->{ $form->{sort} };
620 if (($form->{accno} || $form->{gifi_accno}) && $form->{balance}) {
622 map { $column_data{$_} = "<td> </td>" } @column_index;
623 $column_data{balance} =
625 . $form->format_amount(\%myconfig, $form->{balance} * $ml, 2, 0)
633 map { print "$column_data{$_}\n" } @column_index;
639 $form->{balance} *= $ml;
640 foreach $ref (@{ $form->{GL} }) {
641 $form->{balance} *= $ml;
643 # if item ne sort print subtotal
644 if ($form->{l_subtotal} eq 'Y') {
645 if ($sameitem ne $ref->{ $form->{sort} }) {
650 #foreach $key (sort keys(%{ $ref->{amount} })) {
651 # $form->{balance} += $ref->{amount}{$key};
655 foreach $key (sort keys(%{ $ref->{debit} })) {
656 $subtotaldebit += $ref->{debit}{$key};
657 $totaldebit += $ref->{debit}{$key};
659 $debit = $form->format_amount(\%myconfig, $ref->{debit}{$key}, 2, 0);
662 "<br>" . $form->format_amount(\%myconfig, $ref->{debit}{$key}, 2, 0);
664 $form->{balance} = abs($form->{balance}) - abs($ref->{debit}{$key});
668 foreach $key (sort keys(%{ $ref->{credit} })) {
669 $subtotalcredit += $ref->{credit}{$key};
670 $totalcredit += $ref->{credit}{$key};
672 $credit = $form->format_amount(\%myconfig, $ref->{credit}{$key}, 2, 0);
675 . $form->format_amount(\%myconfig, $ref->{credit}{$key}, 2, 0);
677 $form->{balance} = abs($form->{balance}) - abs($ref->{credit}{$key});
681 foreach $key (sort keys(%{ $ref->{debit_tax} })) {
682 $subtotaldebittax += $ref->{debit_tax}{$key};
683 $totaldebittax += $ref->{debit_tax}{$key};
686 $form->format_amount(\%myconfig, $ref->{debit_tax}{$key}, 2, 0);
689 . $form->format_amount(\%myconfig, $ref->{debit_tax}{$key}, 2, 0);
691 $form->{balance} = abs($form->{balance}) - abs($ref->{debit_tax}{$key});
695 foreach $key (sort keys(%{ $ref->{credit_tax} })) {
696 $subtotalcredittax += $ref->{credit_tax}{$key};
697 $totalcredittax += $ref->{credit_tax}{$key};
700 $form->format_amount(\%myconfig, $ref->{credit_tax}{$key}, 2, 0);
703 . $form->format_amount(\%myconfig, $ref->{credit_tax}{$key}, 2, 0);
705 $form->{balance} = abs($form->{balance}) - abs($ref->{credit_tax}{$key});
711 foreach $key (sort keys(%{ $ref->{debit_accno} })) {
714 "<a href=$href&accno=$ref->{debit_accno}{$key}&callback=$callback>$ref->{debit_accno}{$key}</a>";
717 "<br><a href=$href&accno=$ref->{debit_accno}{$key}&callback=$callback>$ref->{debit_accno}{$key}</a>";
720 # if ($ref->{debit_taxkey}{$key} eq $debittaxkey) {
721 # $ref->{debit_tax_accno}{$key} = $taxaccno;
723 $taxaccno = $ref->{debit_tax_accno}{$key};
724 $debittaxkey = $ref->{debit_taxkey}{$key};
730 foreach $key (sort keys(%{ $ref->{credit_accno} })) {
733 "<a href=$href&accno=$ref->{credit_accno}{$key}&callback=$callback>$ref->{credit_accno}{$key}</a>";
736 "<br><a href=$href&accno=$ref->{credit_accno}{$key}&callback=$callback>$ref->{credit_accno}{$key}</a>";
739 # if ($ref->{credit_taxkey}{$key} eq $credittaxkey) {
740 # $ref->{credit_tax_accno}{$key} = $taxaccno;
742 $taxaccno = $ref->{credit_tax_accno}{$key};
743 $credittaxkey = $ref->{credit_taxkey}{$key};
747 foreach $key (sort keys(%{ $ref->{debit_tax_accno} })) {
750 "<a href=$href&accno=$ref->{debit_tax_accno}{$key}&callback=$callback>$ref->{debit_tax_accno}{$key}</a>";
753 "<br><a href=$href&accno=$ref->{debit_tax_accno}{$key}&callback=$callback>$ref->{debit_tax_accno}{$key}</a>";
757 $credittaxaccno = "";
758 foreach $key (sort keys(%{ $ref->{credit_tax_accno} })) {
761 "<a href=$href&accno=$ref->{credit_tax_accno}{$key}&callback=$callback>$ref->{credit_tax_accno}{$key}</a>";
764 "<br><a href=$href&accno=$ref->{credit_tax_accno}{$key}&callback=$callback>$ref->{credit_tax_accno}{$key}</a>";
769 foreach $key (sort keys(%{ $ref->{transdate} })) {
771 $transdate = "$ref->{transdate}{$key}";
773 $transdate .= "<br>$ref->{transdate}{$key}";
777 # $ref->{debit} = $form->format_amount(\%myconfig, $ref->{debit}, 2, " ");
778 # $ref->{credit} = $form->format_amount(\%myconfig, $ref->{credit}, 2, " ");
780 $column_data{id} = "<td align=right> $ref->{id} </td>";
781 $column_data{transdate} = "<td align=center>$transdate</td>";
782 $column_data{reference} =
783 "<td align=center><a href=$ref->{module}.pl?action=edit&id=$ref->{id}&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$callback>$ref->{reference}</td>";
784 $column_data{description} = "<td align=center>$ref->{description} </td>";
785 $column_data{source} = "<td align=center>$ref->{source} </td>";
786 $column_data{notes} = "<td align=center>$ref->{notes} </td>";
787 $column_data{debit} = "<td align=right>$debit</td>";
788 $column_data{debit_accno} = "<td align=center>$debitaccno</td>";
789 $column_data{credit} = "<td align=right>$credit</td>";
790 $column_data{credit_accno} = "<td align=center>$creditaccno</td>";
791 $column_data{debit_tax} =
792 ($ref->{debit_tax_accno} ne "")
793 ? "<td align=right>$debittax</td>"
795 $column_data{debit_tax_accno} = "<td align=center>$debittaxaccno</td>";
796 $column_data{gifi_accno} =
797 "<td><a href=$href&gifi_accno=$ref->{gifi_accno}&callback=$callback>$ref->{gifi_accno}</a> </td>";
798 $column_data{credit_tax} =
799 ($ref->{credit_tax_accno} ne "")
800 ? "<td align=right>$credittax</td>"
802 $column_data{credit_tax_accno} = "<td align=center>$credittaxaccno</td>";
803 $column_data{gifi_accno} =
804 "<td><a href=$href&gifi_accno=$ref->{gifi_accno}&callback=$callback>$ref->{gifi_accno}</a> </td>";
805 $column_data{balance} =
807 . $form->format_amount(\%myconfig, $form->{balance}, 2, 0) . "</td>";
808 $column_data{projectnumbers} =
809 "<td>" . join(", ", sort({ lc($a) cmp lc($b) } keys(%{ $ref->{projectnumbers} }))) . "</td>";
814 <tr class=listrow$i>";
815 map { print "$column_data{$_}\n" } @column_index;
820 &gl_subtotal if ($form->{l_subtotal} eq 'Y');
822 map { $column_data{$_} = "<td> </td>" } @column_index;
824 my $balanced_ledger = $totaldebit
828 # = 0 for balanced ledger
830 $column_data{debit} =
831 "<th align=right class=listtotal>"
832 . $form->format_amount(\%myconfig, $totaldebit, 2, " ") . "</th>";
833 $column_data{credit} =
834 "<th align=right class=listtotal>"
835 . $form->format_amount(\%myconfig, $totalcredit, 2, " ") . "</th>";
836 $column_data{debit_tax} =
837 "<th align=right class=listtotal>"
838 . $form->format_amount(\%myconfig, $totaldebittax, 2, " ") . "</th>";
839 $column_data{credit_tax} =
840 "<th align=right class=listtotal>"
841 . $form->format_amount(\%myconfig, $totalcredittax, 2, " ") . "</th>";
842 $column_data{balance} =
843 "<th align=right class=listtotal>"
844 . $form->format_amount(\%myconfig, $form->{balance} * $ml, 2, 0) . "</th>";
850 map { print "$column_data{$_}\n" } @column_index;
857 if ( abs($balanced_ledger) > 0.001 ) {
859 print qq|<td colspan="4" style="background-color:#FFA0A0" >|
860 . $locale->text('Unbalanced Ledger')
862 . $form->format_amount(\%myconfig, $balanced_ledger, 3, " ")
864 } elsif ( abs($balanced_ledger) <= 0.001 ) {
866 print qq|<td colspan="3">|
867 . $locale->text('Balanced Ledger')
880 <td><hr size=3 noshade></td>
886 <form method=post action=$form->{script}>
888 <input name=callback type=hidden value="$form->{callback}">
890 <input type=hidden name=path value=$form->{path}>
891 <input type=hidden name=login value=$form->{login}>
892 <input type=hidden name=password value=$form->{password}>
894 <input class=submit type=submit name=action value="|
895 . $locale->text('GL Transaction') . qq|">
896 <input class=submit type=submit name=action value="|
897 . $locale->text('AR Transaction') . qq|">
898 <input class=submit type=submit name=action value="|
899 . $locale->text('AP Transaction') . qq|">
900 <input class=submit type=submit name=action value="|
901 . $locale->text('Sales Invoice') . qq|">
902 <input class=submit type=submit name=action value="|
903 . $locale->text('Vendor Invoice') . qq|">
910 $lxdebug->leave_sub();
915 $lxdebug->enter_sub();
918 $form->format_amount(\%myconfig, $subtotaldebit, 2, " ");
920 $form->format_amount(\%myconfig, $subtotalcredit, 2, " ");
922 map { $column_data{$_} = "<td> </td>" }
923 qw(transdate id reference source description accno);
924 $column_data{debit} = "<th align=right>$subtotaldebit</td>";
925 $column_data{credit} = "<th align=right>$subtotalcredit</td>";
927 print "<tr class=listsubtotal>";
928 map { print "$column_data{$_}\n" } @column_index;
934 $sameitem = $ref->{ $form->{sort} };
935 $lxdebug->leave_sub();
940 $lxdebug->enter_sub();
942 $form->{oldtransdate} = $form->{transdate};
954 qw(accno debit credit projectnumber fx_transaction source memo tax taxchart);
956 for my $i (1 .. $form->{rowcount}) {
958 unless (($form->{"debit_$i"} eq "") && ($form->{"credit_$i"} eq "")) {
959 for (qw(debit credit tax)) {
961 $form->parse_amount(\%myconfig, $form->{"${_}_$i"});
965 $debitcredit = ($form->{"debit_$i"} == 0) ? "0" : "1";
972 if (($debitcount >= 2) && ($creditcount == 2)) {
973 $form->{"credit_$i"} = 0;
974 $form->{"tax_$i"} = 0;
978 if (($creditcount >= 2) && ($debitcount == 2)) {
979 $form->{"debit_$i"} = 0;
980 $form->{"tax_$i"} = 0;
984 if (($creditcount == 1) && ($debitcount == 2)) {
987 if (($creditcount == 2) && ($debitcount == 1)) {
990 if ($debitcredit && $credittax) {
991 $form->{"taxchart_$i"} = "0--0.00";
993 if (!$debitcredit && $debittax) {
994 $form->{"taxchart_$i"} = "0--0.00";
997 ($form->{"debit_$i"} == 0)
998 ? $form->{"credit_$i"}
999 : $form->{"debit_$i"};
1001 if (($debitcredit && $credittax) || (!$debitcredit && $debittax)) {
1002 $form->{"taxchart_$i"} = "0--0.00";
1003 $form->{"tax_$i"} = 0;
1005 if (!$form->{"korrektur_$i"}) {
1006 ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
1013 if ($form->{taxincluded}) {
1014 $form->{"tax_$i"} = $amount / ($rate + 1) * $rate;
1016 $form->{"tax_$i"} = $amount * $rate;
1019 $form->{"tax_$i"} = 0;
1023 for (@flds) { $a[$j]->{$_} = $form->{"${_}_$i"} }
1028 for $i (1 .. $count) {
1030 for (@flds) { $form->{"${_}_$i"} = $a[$j]->{$_} }
1033 for $i ($count + 1 .. $form->{rowcount}) {
1034 for (@flds) { delete $form->{"${_}_$i"} }
1037 $form->{rowcount} = $count + 1;
1040 $lxdebug->leave_sub();
1046 $lxdebug->enter_sub();
1048 &form_header($init);
1050 # for $i (1 .. $form->{rowcount}) {
1051 # $form->{totaldebit} += $form->parse_amount(\%myconfig, $form->{"debit_$i"});
1052 # $form->{totalcredit} += $form->parse_amount(\%myconfig, $form->{"credit_$i"});
1056 &display_rows($init);
1058 $lxdebug->leave_sub();
1064 $lxdebug->enter_sub();
1066 $form->{totaldebit} = 0;
1067 $form->{totalcredit} = 0;
1069 my @old_project_ids = ();
1070 map({ push(@old_project_ids, $form->{"project_id_$_"})
1071 if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
1073 $form->get_lists("projects" => { "key" => "ALL_PROJECTS",
1075 "old_id" => \@old_project_ids },
1076 "charts" => { "key" => "ALL_CHARTS",
1077 "transdate" => $form->{transdate} },
1078 "taxcharts" => "ALL_TAXCHARTS");
1080 my %project_labels = ();
1081 my @project_values = ("");
1082 foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
1083 push(@project_values, $item->{"id"});
1084 $project_labels{$item->{"id"}} = $item->{"projectnumber"};
1087 my %chart_labels = ();
1088 my @chart_values = ();
1090 foreach my $item (@{ $form->{ALL_CHARTS} }) {
1091 my $key = Q($item->{accno}) . "--" . Q($item->{tax_id});
1092 $taxchart_init = $item->{taxkey_id} unless (@chart_values);
1093 push(@chart_values, $key);
1094 $chart_labels{$key} = H($item->{accno}) . "--" . H($item->{description});
1097 my %taxchart_labels = ();
1098 my @taxchart_values = ();
1099 foreach my $item (@{ $form->{ALL_TAXCHARTS} }) {
1100 my $key = Q($item->{id}) . "--" . Q($item->{rate});
1101 $taxchart_init = $key if ($taxchart_init eq $item->{taxkey});
1102 push(@taxchart_values, $key);
1103 $taxchart_labels{$key} = H($item->{taxdescription}) . " " .
1104 H($item->{rate} * 100) . ' %';
1107 for $i (1 .. $form->{rowcount}) {
1110 <td><input name="source_$i" value="$form->{"source_$i"}" size="16" tabindex=|
1111 . ($i + 11 + (($i - 1) * 8)) . qq|></td>|;
1113 <td><input name="memo_$i" value="$form->{"memo_$i"}" size="16" tabindex=|
1114 . ($i + 12 + (($i - 1) * 8)) . qq|></td>|;
1117 $cgi->popup_menu('-name' => "accno_$i",
1118 '-onChange' => "setTaxkey(this, $i)",
1119 '-style' => 'width:200px',
1120 '-tabindex' => ($i + 5 + (($i - 1) * 8)),
1121 '-values' => \@chart_values,
1122 '-labels' => \%chart_labels,
1123 '-default' => $init ? '' : $form->{"accno_$i"})
1126 $cgi->popup_menu('-name' => "taxchart_$i",
1127 '-style' => 'width:200px',
1128 '-tabindex' => ($i + 10 + (($i - 1) * 8)),
1129 '-values' => \@taxchart_values,
1130 '-labels' => \%taxchart_labels,
1131 '-default' => $init ? $taxchart_init : $form->{"taxchart_$i"})
1136 qq|<td><input type="checkbox" name="korrektur_$i" value="1" tabindex=|
1137 . ($i + 9 + (($i - 1) * 8))
1139 if ($form->{transfer}) {
1140 $fx_transaction = qq|
1141 <td><input name="fx_transaction_$i" class=checkbox type=checkbox value=1></td>
1146 if ($form->{"debit_$i"} != 0) {
1147 $form->{totaldebit} += $form->{"debit_$i"};
1148 if (!$form->{taxincluded}) {
1149 $form->{totaldebit} += $form->{"tax_$i"};
1152 $form->{totalcredit} += $form->{"credit_$i"};
1153 if (!$form->{taxincluded}) {
1154 $form->{totalcredit} += $form->{"tax_$i"};
1158 for (qw(debit credit tax)) {
1159 $form->{"${_}_$i"} =
1160 ($form->{"${_}_$i"})
1161 ? $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
1165 if ($i < $form->{rowcount}) {
1166 if ($form->{transfer}) {
1167 $checked = ($form->{"fx_transaction_$i"}) ? "1" : "";
1168 $x = ($checked) ? "x" : "";
1169 $fx_transaction = qq|
1170 <td><input type=hidden name="fx_transaction_$i" value="$checked">$x</td>
1173 $checked = ($form->{"korrektur_$i"}) ? "checked" : "";
1175 qq|<td><input type="checkbox" name="korrektur_$i" value="1" $checked tabindex=|
1176 . ($i + 9 + (($i - 1) * 8))
1178 $form->hide_form("accno_$i");
1182 qq|<td><input type="checkbox" name="korrektur_$i" value="1" tabindex=|
1183 . ($i + 9 + (($i - 1) * 8))
1185 if ($form->{transfer}) {
1186 $fx_transaction = qq|
1187 <td><input name="fx_transaction_$i" class=checkbox type=checkbox value=1></td>
1192 my $debitreadonly = "";
1193 my $creditreadonly = "";
1194 if ($i == $form->{rowcount}) {
1196 $debitreadonly = "readonly";
1197 } elsif ($creditlock) {
1198 $creditreadonly = "readonly";
1203 NTI($cgi->popup_menu('-name' => "project_id_$i",
1204 '-values' => \@project_values,
1205 '-labels' => \%project_labels,
1206 '-default' => $form->{"project_id_$i"} ));
1208 print qq|<tr valign=top>
1211 <td><input name="debit_$i" size=8 value="$form->{"debit_$i"}" accesskey=$i tabindex=|
1212 . ($i + 6 + (($i - 1) * 8)) . qq| $debitreadonly></td>
1213 <td><input name="credit_$i" size=8 value="$form->{"credit_$i"}" tabindex=|
1214 . ($i + 7 + (($i - 1) * 8)) . qq| $creditreadonly></td>
1215 <td><input name="tax_$i" size=6 value="$form->{"tax_$i"}" tabindex=|
1216 . ($i + 8 + (($i - 1) * 8)) . qq|></td>
1221 <td>$projectnumber</td>
1227 $form->hide_form(qw(rowcount selectaccno));
1229 $lxdebug->leave_sub();
1235 $lxdebug->enter_sub();
1236 $title = $form->{title};
1237 $form->{title} = $locale->text("$title General Ledger Transaction");
1238 $readonly = ($form->{id}) ? "readonly" : "";
1240 # $locale->text('Add General Ledger Transaction')
1241 # $locale->text('Edit General Ledger Transaction')
1243 map { $form->{$_} =~ s/\"/"/g }
1244 qw(reference description chart taxchart);
1245 $form->{javascript} = qq|<script type="text/javascript">
1247 function setTaxkey(accno, row) {
1248 var taxkey = accno.options[accno.selectedIndex].value;
1249 var reg = /--([0-9]*)/;
1250 var found = reg.exec(taxkey);
1251 var index = found[1];
1252 index = parseInt(index);
1253 var tax = 'taxchart_' + row;
1254 for (var i = 0; i < document.getElementById(tax).options.length; ++i) {
1255 var reg2 = new RegExp("^"+ index, "");
1256 if (reg2.exec(document.getElementById(tax).options[i].value)) {
1257 document.getElementById(tax).options[i].selected = true;
1265 $form->{selectdepartment} =~ s/ selected//;
1266 $form->{selectdepartment} =~
1267 s/option>\Q$form->{department}\E/option selected>$form->{department}/;
1269 if (($rows = $form->numtextrows($form->{description}, 50)) > 1) {
1271 qq|<textarea name=description rows=$rows cols=50 wrap=soft $readonly >$form->{description}</textarea>|;
1274 qq|<input name=description size=50 value="$form->{description}" tabindex="3" $readonly>|;
1277 $taxincluded = ($form->{taxincluded}) ? "checked" : "";
1280 $taxincluded = "checked";
1285 <th align=right nowrap>| . $locale->text('Department') . qq|</th>
1286 <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
1287 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
1289 | if $form->{selectdepartment};
1291 $form->{fokus} = "gl.reference";
1293 $form->{fokus} = qq|gl.accno_$form->{rowcount}|;
1296 # use JavaScript Calendar or not
1297 $form->{jsscript} = $jscalendar;
1299 if ($form->{jsscript}) {
1301 # with JavaScript Calendar
1303 <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" tabindex="2" $readonly>
1304 <input type=button name=transdate id="trigger1" value=|
1305 . $locale->text('button') . qq|></td>
1310 Form->write_trigger(\%myconfig, "1", "transdate", "BL", "trigger1");
1313 # without JavaScript Calendar
1315 qq|<td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" tabindex="2" $readonly></td>|;
1321 <body onLoad="fokus()">
1323 <form method=post name="gl" action=$form->{script}>
1325 <input name=id type=hidden value=$form->{id}>
1327 <input type=hidden name=closedto value=$form->{closedto}>
1328 <input type=hidden name=locked value=$form->{locked}>
1329 <input type=hidden name=title value="$title">
1334 <th class=listtop>$form->{title}</th>
1336 <tr height="5"></tr>
1341 <th align=left>| . $locale->text('Reference') . qq|</th>
1342 <td><input name=reference size=20 value="$form->{reference}" tabindex="1" $readonly></td>
1346 <th align=right nowrap>| . $locale->text('Date') . qq|</th>
1355 <th align=right>| . $locale->text('Belegnummer') . qq|</th>
1356 <td><input name=id size=20 value="$form->{id}" $readonly></td>
1360 <th align=right width=50%>| . $locale->text('Buchungsdatum') . qq|</th>
1361 <td align=left><input name=gldate size=11 title="$myconfig{dateformat}" value=$form->{gldate} $readonly></td>
1372 <th align=left width=1%>| . $locale->text('Description') . qq|</th>
1373 <td width=1%>$description</td>
1377 <th align=left>| . $locale->text('MwSt. inkl.') . qq|</th>
1378 <td><input type=checkbox name=taxincluded value=1 tabindex="5" $taxincluded></td>
1385 <th align=right width=50%>| . $locale->text('Mitarbeiter') . qq|</th>
1386 <td align=left><input name=employee size=11 value=$form->{employee} $readonly></td>
1394 <th align=left width=1%>| . $locale->text('Description') . qq|</th>
1395 <td width=1%>$description</td>
1399 <th align=left>| . $locale->text('MwSt. inkl.') . qq|</th>
1400 <td><input type=checkbox name=taxincluded value=1 tabindex="5" $taxincluded></td>
1410 <tr class=listheading>
1411 <th class=listheading style="width:15%">|
1412 . $locale->text('Account') . qq|</th>
1413 <th class=listheading style="width:10%">|
1414 . $locale->text('Debit') . qq|</th>
1415 <th class=listheading style="width:10%">|
1416 . $locale->text('Credit') . qq|</th>
1417 <th class=listheading style="width:10%">|
1418 . $locale->text('Tax') . qq|</th>
1419 <th class=listheading style="width:5%">|
1420 . $locale->text('Korrektur') . qq|</th>
1421 <th class=listheading style="width:10%">|
1422 . $locale->text('Taxkey') . qq|</th>
1423 <th class=listheading style="width:20%">|
1424 . $locale->text('Source') . qq|</th>
1425 <th class=listheading style="width:20%">| . $locale->text('Memo') . qq|</th>
1426 <th class=listheading style="width:20%">|
1427 . $locale->text('Project Number') . qq|</th>
1432 $lxdebug->leave_sub();
1437 $lxdebug->enter_sub();
1438 ($dec) = ($form->{totaldebit} =~ /\.(\d+)/);
1440 $decimalplaces = ($dec > 2) ? $dec : 2;
1441 $radieren = ($form->current_date(\%myconfig) eq $form->{gldate}) ? 1 : 0;
1445 $form->format_amount(\%myconfig, $form->{$_}, 2, " ")
1446 } qw(totaldebit totalcredit);
1449 <tr class=listtotal>
1451 <th align=right class=listtotal> $form->{totaldebit}</th>
1452 <th align=right class=listtotal> $form->{totalcredit}</th>
1460 <input type=hidden name=path value=$form->{path}>
1461 <input type=hidden name=login value=$form->{login}>
1462 <input type=hidden name=password value=$form->{password}>
1464 <input name=callback type=hidden value="$form->{callback}">
1469 $transdate = $form->datetonum($form->{transdate}, \%myconfig);
1470 $closedto = $form->datetonum($form->{closedto}, \%myconfig);
1474 print qq|<input class=submit type=submit name=action value="|
1475 . $locale->text('Storno') . qq|">|;
1477 # Löschen und Ändern von Buchungen nicht mehr möglich (GoB) nur am selben Tag möglich
1479 if (!$form->{locked} && $radieren) {
1481 <input class=submit type=submit name=action value="|
1482 . $locale->text('Post') . qq|" accesskey="b">
1483 <input class=submit type=submit name=action value="|
1484 . $locale->text('Delete') . qq|">|;
1487 # if ($transdate > $closedto) {
1489 # <input class=submit type=submit name=action value="|.$locale->text('Post as new').qq|">|;
1492 if ($transdate > $closedto) {
1493 print qq|<input class=submit type=submit name=action value="|
1494 . $locale->text('Update') . qq|">
1495 <input class=submit type=submit name=action value="|
1496 . $locale->text('Post') . qq|">|;
1506 $lxdebug->leave_sub();
1511 $lxdebug->enter_sub();
1518 <form method=post action=$form->{script}>
1521 map { $form->{$_} =~ s/\"/"/g } qw(reference description);
1523 delete $form->{header};
1525 foreach $key (keys %$form) {
1526 print qq|<input type="hidden" name="$key" value="$form->{$key}">\n|;
1530 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
1533 . $locale->text('Are you sure you want to delete Transaction')
1534 . qq| $form->{reference}</h4>
1536 <input name=action class=submit type=submit value="|
1537 . $locale->text('Yes') . qq|">
1540 $lxdebug->leave_sub();
1545 $lxdebug->enter_sub();
1546 if (GL->delete_transaction(\%myconfig, \%$form)){
1547 # saving the history
1548 if(!exists $form->{addition} && $form->{id} ne "") {
1549 $form->{addition} = "DELETED";
1550 $form->save_history($form->dbconnect(\%myconfig));
1552 # /saving the history
1553 $form->redirect($locale->text('Transaction deleted!'))
1555 $form->error($locale->text('Cannot delete transaction!'));
1556 $lxdebug->leave_sub();
1561 $lxdebug->enter_sub();
1563 # check if there is something in reference and date
1564 $form->isblank("reference", $locale->text('Reference missing!'));
1565 $form->isblank("transdate", $locale->text('Transaction Date missing!'));
1566 $form->isblank("description", $locale->text('Description missing!'));
1568 $transdate = $form->datetonum($form->{transdate}, \%myconfig);
1569 $closedto = $form->datetonum($form->{closedto}, \%myconfig);
1576 my $creditcount = 0;
1581 qw(accno debit credit projectnumber fx_transaction source memo tax taxchart);
1582 if ($form->{storno}) {
1583 for my $i (1 .. $form->{rowcount}) {
1584 unless (($form->{"debit_$i"} eq "") && ($form->{"credit_$i"} eq "")) {
1585 if ($form->{"debit_$i"} ne "") {
1586 $form->{"credit_$i"} = $form->{"debit_$i"};
1587 $form->{"debit_$i"} = "";
1588 } elsif ($form->{"credit_$i"} ne "") {
1589 $form->{"debit_$i"} = $form->{"credit_$i"};
1590 $form->{"credit_$i"} = "";
1596 for my $i (1 .. $form->{rowcount}) {
1598 unless (($form->{"debit_$i"} eq "") && ($form->{"credit_$i"} eq "")) {
1599 for (qw(debit credit tax)) {
1600 $form->{"${_}_$i"} =
1601 $form->parse_amount(\%myconfig, $form->{"${_}_$i"});
1605 $debitcredit = ($form->{"debit_$i"} == 0) ? "0" : "1";
1613 if (($debitcount >= 2) && ($creditcount == 2)) {
1614 $form->{"credit_$i"} = 0;
1615 $form->{"tax_$i"} = 0;
1619 if (($creditcount >= 2) && ($debitcount == 2)) {
1620 $form->{"debit_$i"} = 0;
1621 $form->{"tax_$i"} = 0;
1625 if (($creditcount == 1) && ($debitcount == 2)) {
1628 if (($creditcount == 2) && ($debitcount == 1)) {
1631 if ($debitcredit && $credittax) {
1632 $form->{"taxchart_$i"} = "0--0.00";
1634 if (!$debitcredit && $debittax) {
1635 $form->{"taxchart_$i"} = "0--0.00";
1638 ($form->{"debit_$i"} == 0)
1639 ? $form->{"credit_$i"}
1640 : $form->{"debit_$i"};
1642 if (($debitcredit && $credittax) || (!$debitcredit && $debittax)) {
1643 $form->{"taxchart_$i"} = "0--0.00";
1644 $form->{"tax_$i"} = 0;
1646 if (!$form->{"korrektur_$i"}) {
1647 ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
1654 if ($form->{taxincluded}) {
1655 $form->{"tax_$i"} = $amount / ($rate + 1) * $rate;
1657 $form->{"debit_$i"} = $form->{"debit_$i"} - $form->{"tax_$i"};
1659 $form->{"credit_$i"} = $form->{"credit_$i"} - $form->{"tax_$i"};
1662 $form->{"tax_$i"} = $amount * $rate;
1665 $form->{"tax_$i"} = 0;
1667 } elsif ($form->{taxincluded}) {
1669 $form->{"debit_$i"} = $form->{"debit_$i"} - $form->{"tax_$i"};
1671 $form->{"credit_$i"} = $form->{"credit_$i"} - $form->{"tax_$i"};
1675 for (@flds) { $a[$j]->{$_} = $form->{"${_}_$i"} }
1680 for $i (1 .. $count) {
1682 for (@flds) { $form->{"${_}_$i"} = $a[$j]->{$_} }
1685 for $i ($count + 1 .. $form->{rowcount}) {
1686 for (@flds) { delete $form->{"${_}_$i"} }
1689 for $i (1 .. $form->{rowcount}) {
1690 $dr = $form->{"debit_$i"};
1691 $cr = $form->{"credit_$i"};
1692 $tax = $form->{"tax_$i"};
1696 'Cannot post transaction with a debit and credit entry for the same account!'
1699 if ($form->{taxincluded}) {
1701 $debit += $dr + $tax;
1704 $credit += $cr + $tax;
1709 $debit += $dr + $tax;
1712 $credit += $cr + $tax;
1717 $form->{taxincluded} = 0;
1720 # this is just for the wise guys
1721 $form->error($locale->text('Cannot post transaction for a closed period!'))
1722 if ($transdate <= $closedto);
1723 if ($form->round_amount($debit, 2) != $form->round_amount($credit, 2)) {
1724 $form->error($locale->text('Out of balance transaction!'));
1727 if ($form->round_amount($debit, 2) + $form->round_amount($credit, 2) == 0) {
1728 $form->error($locale->text('Empty transaction!'));
1731 if (($errno = GL->post_transaction(\%myconfig, \%$form)) <= -1) {
1733 $err[1] = $locale->text('Cannot have a value in both Debit and Credit!');
1734 $err[2] = $locale->text('Debit and credit out of balance!');
1735 $err[3] = $locale->text('Cannot post a transaction without a value!');
1737 $form->error($err[$errno]);
1739 undef($form->{callback});
1740 # saving the history
1741 if(!exists $form->{addition} && $form->{id} ne "") {
1742 $form->{addition} = "SAVED";
1743 $form->{what_done} = $locale->text("Buchungsnummer") . " = " . $form->{id};
1744 $form->save_history($form->dbconnect(\%myconfig));
1746 # /saving the history
1747 $form->redirect("Buchung gespeichert. Buchungsnummer = " . $form->{id});
1748 $lxdebug->leave_sub();
1753 $lxdebug->enter_sub();
1757 $lxdebug->leave_sub();
1762 $lxdebug->enter_sub();
1765 $form->{storno} = 1;
1766 # saving the history
1767 if(!exists $form->{addition} && $form->{id} ne "") {
1768 $form->{addition} = "STORNO";
1769 $form->save_history($form->dbconnect(\%myconfig));
1771 # /saving the history
1773 $lxdebug->leave_sub();