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";
43 # this is for our long dates
44 # $locale->text('January')
45 # $locale->text('February')
46 # $locale->text('March')
47 # $locale->text('April')
48 # $locale->text('May ')
49 # $locale->text('June')
50 # $locale->text('July')
51 # $locale->text('August')
52 # $locale->text('September')
53 # $locale->text('October')
54 # $locale->text('November')
55 # $locale->text('December')
57 # this is for our short month
58 # $locale->text('Jan')
59 # $locale->text('Feb')
60 # $locale->text('Mar')
61 # $locale->text('Apr')
62 # $locale->text('May')
63 # $locale->text('Jun')
64 # $locale->text('Jul')
65 # $locale->text('Aug')
66 # $locale->text('Sep')
67 # $locale->text('Oct')
68 # $locale->text('Nov')
69 # $locale->text('Dec')
72 $lxdebug->enter_sub();
74 $form->{title} = "Add";
77 "$form->{script}?action=add&path=$form->{path}&login=$form->{login}&password=$form->{password}"
78 unless $form->{callback};
80 # we use this only to set a default date
81 GL->transaction(\%myconfig, \%$form);
85 "<option value=\"$_->{accno}--$_->{taxkey_id}\">$_->{accno}--$_->{description}</option>"
86 } @{ $form->{chart} };
89 qq|<option value="$_->{taxkey}--$_->{rate}">$_->{taxdescription} |
90 . ($_->{rate} * 100) . qq| %|
93 $form->{chart} = $chart;
94 $form->{chartinit} = $chart;
95 $form->{rowcount} = 2;
97 $form->{debitchart} = $chart;
98 $form->{creditchart} = $chart;
99 $form->{taxchart} = $tax;
106 $form->all_departments(\%myconfig);
107 if (@{ $form->{all_departments} }) {
108 $form->{selectdepartment} = "<option>\n";
111 $form->{selectdepartment} .=
112 "<option>$_->{description}--$_->{id}\n"
113 } (@{ $form->{all_departments} });
117 $lxdebug->leave_sub();
122 $lxdebug->enter_sub();
124 GL->transaction(\%myconfig, \%$form);
127 if ($form->{debitaccno} eq $_->{accno}) {
128 $form->{debitchart} .=
129 "<option value=\"$_->{accno}--$_->{taxkey_id}\">$_->{accno}--$_->{description}";
131 } @{ $form->{chart} };
133 if ($form->{creditaccno} eq $_->{accno}) {
134 $form->{creditchart} .=
135 "<option value=\"$_->{accno}--$_->{taxkey_id}\">$_->{accno}--$_->{description}";
137 } @{ $form->{chart} };
140 qq|<option value="$_->{taxkey}--$_->{rate}">$_->{taxdescription} |
141 . ($_->{rate} * 100) . qq| %|
144 $form->{chart} = $chart;
146 $form->{taxchart} = $tax;
148 if ($form->{tax} < 0) {
149 $form->{tax} = $form->{tax} * (-1);
152 $form->{amount} = $form->format_amount(\%myconfig, $form->{amount}, 2);
155 $form->all_departments(\%myconfig);
156 if (@{ $form->{all_departments} }) {
157 $form->{selectdepartment} = "<option>\n";
160 $form->{selectdepartment} .=
161 "<option>$_->{description}--$_->{id}\n"
162 } (@{ $form->{all_departments} });
166 foreach $ref (@{ $form->{GL} }) {
167 $form->{"accno_$i"} = "$ref->{accno}--$ref->{description}";
169 $form->{"projectnumber_$i"} = "$ref->{projectnumber}--$ref->{project_id}";
170 for (qw(fx_transaction source memo)) { $form->{"${_}_$i"} = $ref->{$_} }
172 if ($ref->{amount} < 0) {
173 $form->{totaldebit} -= $ref->{amount};
174 $form->{"debit_$i"} = $ref->{amount} * -1;
176 $form->{totalcredit} += $ref->{amount};
177 $form->{"credit_$i"} = $ref->{amount};
183 $form->{rowcount} = $i;
185 ($form->datetonum($form->{transdate}, \%myconfig) <=
186 $form->datetonum($form->{closedto}, \%myconfig));
188 $form->{title} = "Edit";
193 $lxdebug->leave_sub();
198 $lxdebug->enter_sub();
200 $form->{title} = $locale->text('Buchungsjournal');
202 $form->all_departments(\%myconfig);
205 if (@{ $form->{all_departments} }) {
206 $form->{selectdepartment} = "<option>\n";
209 $form->{selectdepartment} .=
210 "<option>$_->{description}--$_->{id}\n"
211 } (@{ $form->{all_departments} });
216 <th align=right nowrap>| . $locale->text('Department') . qq|</th>
217 <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
219 | if $form->{selectdepartment};
221 # use JavaScript Calendar or not
222 $form->{jsscript} = $jscalendar;
224 if ($form->{jsscript}) {
226 # with JavaScript Calendar
228 <td><input name=datefrom id=datefrom size=11 title="$myconfig{dateformat}">
229 <input type=button name=datefrom id="trigger1" value=|
230 . $locale->text('button')
234 <td><input name=dateto id=dateto size=11 title="$myconfig{dateformat}">
235 <input type=button name=dateto id="trigger2" value=|
236 . $locale->text('button')
242 Form->write_trigger(\%myconfig, "2", "datefrom", "BR", "trigger1",
243 "dateto", "BL", "trigger2");
246 # without JavaScript Calendar
248 qq|<td><input name=datefrom id=datefrom size=11 title="$myconfig{dateformat}"></td>|;
250 qq|<td><input name=dateto id=dateto size=11 title="$myconfig{dateformat}"></td>|;
258 <form method=post action=$form->{script}>
260 <input type=hidden name=sort value=transdate>
264 <th class=listtop>$form->{title}</th>
271 <th align=right>| . $locale->text('Reference') . qq|</th>
272 <td><input name=reference size=20></td>
273 <th align=right>| . $locale->text('Source') . qq|</th>
274 <td><input name=source size=20></td>
278 <th align=right>| . $locale->text('Description') . qq|</th>
279 <td colspan=3><input name=description size=40></td>
282 <th align=right>| . $locale->text('Notes') . qq|</th>
283 <td colspan=3><input name=notes size=40></td>
286 <th align=right>| . $locale->text('From') . qq|</th>
291 <th align=right>| . $locale->text('Include in Report') . qq|</th>
296 <input name="category" class=radio type=radio value=X checked> |
297 . $locale->text('All') . qq|
298 <input name="category" class=radio type=radio value=A> |
299 . $locale->text('Asset') . qq|
300 <input name="category" class=radio type=radio value=C> |
301 . $locale->text('Contra') . qq|
302 <input name="category" class=radio type=radio value=L> |
303 . $locale->text('Liability') . qq|
304 <input name="category" class=radio type=radio value=Q> |
305 . $locale->text('Equity') . qq|
306 <input name="category" class=radio type=radio value=I> |
307 . $locale->text('Revenue') . qq|
308 <input name="category" class=radio type=radio value=E> |
309 . $locale->text('Expense') . qq|
315 <td align=right><input name="l_id" class=checkbox type=checkbox value=Y></td>
316 <td>| . $locale->text('ID') . qq|</td>
317 <td align=right><input name="l_transdate" class=checkbox type=checkbox value=Y checked></td>
318 <td>| . $locale->text('Date') . qq|</td>
319 <td align=right><input name="l_reference" class=checkbox type=checkbox value=Y checked></td>
320 <td>| . $locale->text('Reference') . qq|</td>
321 <td align=right><input name="l_description" class=checkbox type=checkbox value=Y checked></td>
322 <td>| . $locale->text('Description') . qq|</td>
323 <td align=right><input name="l_notes" class=checkbox type=checkbox value=Y></td>
324 <td>| . $locale->text('Notes') . qq|</td>
327 <td align=right><input name="l_debit" class=checkbox type=checkbox value=Y checked></td>
328 <td>| . $locale->text('Debit') . qq|</td>
329 <td align=right><input name="l_credit" class=checkbox type=checkbox value=Y checked></td>
330 <td>| . $locale->text('Credit') . qq|</td>
331 <td align=right><input name="l_source" class=checkbox type=checkbox value=Y checked></td>
332 <td>| . $locale->text('Source') . qq|</td>
333 <td align=right><input name="l_accno" class=checkbox type=checkbox value=Y checked></td>
334 <td>| . $locale->text('Account') . qq|</td>
335 <td align=right><input name="l_gifi_accno" class=checkbox type=checkbox value=Y></td>
336 <td>| . $locale->text('GIFI') . qq|</td>
339 <td align=right><input name="l_subtotal" class=checkbox type=checkbox value=Y></td>
340 <td>| . $locale->text('Subtotal') . qq|</td>
350 <td><hr size=3 noshade></td>
356 <input type=hidden name=nextsub value=generate_report>
358 <input type=hidden name=path value=$form->{path}>
359 <input type=hidden name=login value=$form->{login}>
360 <input type=hidden name=password value=$form->{password}>
363 <input class=submit type=submit name=action value="|
364 . $locale->text('Continue') . qq|">
370 $lxdebug->leave_sub();
373 sub generate_report {
374 $lxdebug->enter_sub();
376 $form->{sort} = "transdate" unless $form->{sort};
378 GL->all_transactions(\%myconfig, \%$form);
381 "$form->{script}?action=generate_report&path=$form->{path}&login=$form->{login}&password=$form->{password}";
385 %acctype = ('A' => $locale->text('Asset'),
386 'C' => $locale->text('Contra'),
387 'L' => $locale->text('Liability'),
388 'Q' => $locale->text('Equity'),
389 'I' => $locale->text('Revenue'),
390 'E' => $locale->text('Expense'),);
392 $form->{title} = $locale->text('General Ledger');
394 $ml = ($form->{ml} =~ /(A|E)/) ? -1 : 1;
396 unless ($form->{category} eq 'X') {
397 $form->{title} .= " : " . $locale->text($acctype{ $form->{category} });
399 if ($form->{accno}) {
400 $href .= "&accno=" . $form->escape($form->{accno});
401 $callback .= "&accno=" . $form->escape($form->{accno}, 1);
403 $locale->text('Account')
404 . " : $form->{accno} $form->{account_description}";
406 if ($form->{gifi_accno}) {
407 $href .= "&gifi_accno=" . $form->escape($form->{gifi_accno});
408 $callback .= "&gifi_accno=" . $form->escape($form->{gifi_accno}, 1);
409 $option .= "\n<br>" if $option;
411 $locale->text('GIFI')
412 . " : $form->{gifi_accno} $form->{gifi_account_description}";
414 if ($form->{source}) {
415 $href .= "&source=" . $form->escape($form->{source});
416 $callback .= "&source=" . $form->escape($form->{source}, 1);
417 $option .= "\n<br>" if $option;
418 $option .= $locale->text('Source') . " : $form->{source}";
420 if ($form->{reference}) {
421 $href .= "&reference=" . $form->escape($form->{reference});
422 $callback .= "&reference=" . $form->escape($form->{reference}, 1);
423 $option .= "\n<br>" if $option;
424 $option .= $locale->text('Reference') . " : $form->{reference}";
426 if ($form->{department}) {
427 $href .= "&department=" . $form->escape($form->{department});
428 $callback .= "&department=" . $form->escape($form->{department}, 1);
429 ($department) = split /--/, $form->{department};
430 $option .= "\n<br>" if $option;
431 $option .= $locale->text('Department') . " : $department";
434 if ($form->{description}) {
435 $href .= "&description=" . $form->escape($form->{description});
436 $callback .= "&description=" . $form->escape($form->{description}, 1);
437 $option .= "\n<br>" if $option;
438 $option .= $locale->text('Description') . " : $form->{description}";
440 if ($form->{notes}) {
441 $href .= "¬es=" . $form->escape($form->{notes});
442 $callback .= "¬es=" . $form->escape($form->{notes}, 1);
443 $option .= "\n<br>" if $option;
444 $option .= $locale->text('Notes') . " : $form->{notes}";
447 if ($form->{datefrom}) {
448 $href .= "&datefrom=$form->{datefrom}";
449 $callback .= "&datefrom=$form->{datefrom}";
450 $option .= "\n<br>" if $option;
452 $locale->text('From') . " "
453 . $locale->date(\%myconfig, $form->{datefrom}, 1);
455 if ($form->{dateto}) {
456 $href .= "&dateto=$form->{dateto}";
457 $callback .= "&dateto=$form->{dateto}";
458 if ($form->{datefrom}) {
461 $option .= "\n<br>" if $option;
464 $locale->text('Bis') . " "
465 . $locale->date(\%myconfig, $form->{dateto}, 1);
470 qw(transdate id reference description notes source debit debit_accno credit credit_accno debit_tax debit_tax_accno credit_tax credit_tax_accno accno gifi_accno)
473 if ($form->{accno} || $form->{gifi_accno}) {
474 @columns = grep !/(accno|gifi_accno)/, @columns;
475 push @columns, "balance";
476 $form->{l_balance} = "Y";
480 $form->{l_credit_accno} = "Y";
481 $form->{l_debit_accno} = "Y";
482 $form->{l_credit_tax} = "Y";
483 $form->{l_debit_tax} = "Y";
484 $form->{l_credit_tax_accno} = "Y";
485 $form->{l_debit_tax_accno} = "Y";
486 $form->{l_accno} = "N";
487 foreach $item (@columns) {
488 if ($form->{"l_$item"} eq "Y") {
489 push @column_index, $item;
491 # add column to href and callback
492 $callback .= "&l_$item=Y";
493 $href .= "&l_$item=Y";
497 if ($form->{l_subtotal} eq 'Y') {
498 $callback .= "&l_subtotal=Y";
499 $href .= "&l_subtotal=Y";
502 $callback .= "&category=$form->{category}";
503 $href .= "&category=$form->{category}";
506 "<th><a class=listheading href=$href&sort=id>"
507 . $locale->text('ID')
509 $column_header{transdate} =
510 "<th><a class=listheading href=$href&sort=transdate>"
511 . $locale->text('Date')
513 $column_header{reference} =
514 "<th><a class=listheading href=$href&sort=reference>"
515 . $locale->text('Reference')
517 $column_header{source} =
518 "<th><a class=listheading href=$href&sort=source>"
519 . $locale->text('Source')
521 $column_header{description} =
522 "<th><a class=listheading href=$href&sort=description>"
523 . $locale->text('Description')
525 $column_header{notes} =
526 "<th class=listheading>" . $locale->text('Notes') . "</th>";
527 $column_header{debit} =
528 "<th class=listheading>" . $locale->text('Debit') . "</th>";
529 $column_header{debit_accno} =
530 "<th><a class=listheading href=$href&sort=accno>"
531 . $locale->text('Debit Account')
533 $column_header{credit} =
534 "<th class=listheading>" . $locale->text('Credit') . "</th>";
535 $column_header{credit_accno} =
536 "<th><a class=listheading href=$href&sort=accno>"
537 . $locale->text('Credit Account')
539 $column_header{debit_tax} =
540 "<th><a class=listheading href=$href&sort=accno>"
541 . $locale->text('Debit Tax')
543 $column_header{debit_tax_accno} =
544 "<th><a class=listheading href=$href&sort=accno>"
545 . $locale->text('Debit Tax Account')
547 $column_header{credit_tax} =
548 "<th><a class=listheading href=$href&sort=accno>"
549 . $locale->text('Credit Tax')
551 $column_header{credit_tax_accno} =
552 "<th><a class=listheading href=$href&sort=accno>"
553 . $locale->text('Credit Tax Account')
555 $column_header{gifi_accno} =
556 "<th><a class=listheading href=$href&sort=gifi_accno>"
557 . $locale->text('GIFI')
559 $column_header{balance} = "<th>" . $locale->text('Balance') . "</th>";
561 $form->{landscape} = 1;
570 <th class=listtop>$form->{title}</th>
580 <tr class=listheading>
583 map { print "$column_header{$_}\n" } @column_index;
592 # add sort to callback
593 $form->{callback} = "$callback&sort=$form->{sort}";
594 $callback = $form->escape($form->{callback});
596 # initial item for subtotals
597 if (@{ $form->{GL} }) {
598 $sameitem = $form->{GL}->[0]->{ $form->{sort} };
601 if (($form->{accno} || $form->{gifi_accno}) && $form->{balance}) {
603 map { $column_data{$_} = "<td> </td>" } @column_index;
604 $column_data{balance} =
606 . $form->format_amount(\%myconfig, $form->{balance} * $ml, 2, 0)
614 map { print "$column_data{$_}\n" } @column_index;
621 foreach $ref (@{ $form->{GL} }) {
623 # if item ne sort print subtotal
624 if ($form->{l_subtotal} eq 'Y') {
625 if ($sameitem ne $ref->{ $form->{sort} }) {
629 foreach $key (sort keys(%{ $ref->{amount} })) {
630 $form->{balance} += $ref->{amount}{$key};
634 foreach $key (sort keys(%{ $ref->{debit} })) {
635 $subtotaldebit += $ref->{debit}{$key};
636 $totaldebit += $ref->{debit}{$key};
638 $debit = $form->format_amount(\%myconfig, $ref->{debit}{$key}, 2, 0);
641 "<br>" . $form->format_amount(\%myconfig, $ref->{debit}{$key}, 2, 0);
646 foreach $key (sort keys(%{ $ref->{credit} })) {
647 $subtotalcredit += $ref->{credit}{$key};
648 $totalcredit += $ref->{credit}{$key};
650 $credit = $form->format_amount(\%myconfig, $ref->{credit}{$key}, 2, 0);
653 . $form->format_amount(\%myconfig, $ref->{credit}{$key}, 2, 0);
658 foreach $key (sort keys(%{ $ref->{debit_tax} })) {
659 $subtotaldebittax += $ref->{debit_tax}{$key};
660 $totaldebittax += $ref->{debit_tax}{$key};
663 $form->format_amount(\%myconfig, $ref->{debit_tax}{$key}, 2, 0);
666 . $form->format_amount(\%myconfig, $ref->{debit_tax}{$key}, 2, 0);
671 foreach $key (sort keys(%{ $ref->{credit_tax} })) {
672 $subtotalcredittax += $ref->{credit_tax}{$key};
673 $totalcredittax += $ref->{credit_tax}{$key};
676 $form->format_amount(\%myconfig, $ref->{credit_tax}{$key}, 2, 0);
679 . $form->format_amount(\%myconfig, $ref->{credit_tax}{$key}, 2, 0);
686 foreach $key (sort keys(%{ $ref->{debit_accno} })) {
689 "<a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{debit_accno}{$key}</a>";
692 "<br><a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{debit_accno}{$key}</a>";
694 if ($ref->{debit_taxkey}{$key} eq $debittaxkey) {
695 $ref->{debit_tax_accno}{$key} = $taxaccno;
697 $taxaccno = $ref->{debit_tax_accno}{$key};
698 $debittaxkey = $ref->{debit_taxkey}{$key};
704 foreach $key (sort keys(%{ $ref->{credit_accno} })) {
707 "<a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{credit_accno}{$key}</a>";
710 "<br><a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{credit_accno}{$key}</a>";
712 if ($ref->{credit_taxkey}{$key} eq $credittaxkey) {
713 $ref->{credit_tax_accno}{$key} = $taxaccno;
715 $taxaccno = $ref->{credit_tax_accno}{$key};
716 $credittaxkey = $ref->{credit_taxkey}{$key};
720 foreach $key (sort keys(%{ $ref->{debit_tax_accno} })) {
723 "<a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{debit_tax_accno}{$key}</a>";
726 "<br><a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{debit_tax_accno}{$key}</a>";
730 $credittaxaccno = "";
731 foreach $key (sort keys(%{ $ref->{credit_tax_accno} })) {
734 "<a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{credit_tax_accno}{$key}</a>";
737 "<br><a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{credit_tax_accno}{$key}</a>";
741 # $ref->{debit} = $form->format_amount(\%myconfig, $ref->{debit}, 2, " ");
742 # $ref->{credit} = $form->format_amount(\%myconfig, $ref->{credit}, 2, " ");
744 $column_data{id} = "<td align=right> $ref->{id} </td>";
745 $column_data{transdate} =
746 "<td align=center> $ref->{transdate} </td>";
747 $column_data{reference} =
748 "<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>";
749 $column_data{description} =
750 "<td align=center>$ref->{description} </td>";
751 $column_data{source} = "<td align=center>$ref->{source} </td>";
752 $column_data{notes} = "<td align=center>$ref->{notes} </td>";
753 $column_data{debit} = "<td align=right>$debit</td>";
754 $column_data{debit_accno} = "<td align=center>$debitaccno</td>";
755 $column_data{credit} = "<td align=right>$credit</td>";
756 $column_data{credit_accno} = "<td align=center>$creditaccno</td>";
757 $column_data{debit_tax} =
758 ($ref->{debit_tax_accno} ne "")
759 ? "<td align=right>$debittax</td>"
761 $column_data{debit_tax_accno} = "<td align=center>$debittaxaccno</td>";
762 $column_data{gifi_accno} =
763 "<td><a href=$href&gifi_accno=$ref->{gifi_accno}&callback=$callback>$ref->{gifi_accno}</a> </td>";
764 $column_data{credit_tax} =
765 ($ref->{credit_tax_accno} ne "")
766 ? "<td align=right>$credittax</td>"
768 $column_data{credit_tax_accno} = "<td align=center>$credittaxaccno</td>";
769 $column_data{gifi_accno} =
770 "<td><a href=$href&gifi_accno=$ref->{gifi_accno}&callback=$callback>$ref->{gifi_accno}</a> </td>";
771 $column_data{balance} =
773 . $form->format_amount(\%myconfig, $form->{balance} * $ml, 2, 0)
779 <tr class=listrow$i>";
780 map { print "$column_data{$_}\n" } @column_index;
785 &gl_subtotal if ($form->{l_subtotal} eq 'Y');
787 map { $column_data{$_} = "<td> </td>" } @column_index;
789 $column_data{debit} =
790 "<th align=right class=listtotal>"
791 . $form->format_amount(\%myconfig, $totaldebit, 2, " ") . "</th>";
792 $column_data{credit} =
793 "<th align=right class=listtotal>"
794 . $form->format_amount(\%myconfig, $totalcredit, 2, " ") . "</th>";
795 $column_data{debit_tax} =
796 "<th align=right class=listtotal>"
797 . $form->format_amount(\%myconfig, $totaldebittax, 2, " ") . "</th>";
798 $column_data{credit_tax} =
799 "<th align=right class=listtotal>"
800 . $form->format_amount(\%myconfig, $totalcredittax, 2, " ") . "</th>";
801 $column_data{balance} =
802 "<th align=right class=listtotal>"
803 . $form->format_amount(\%myconfig, $form->{balance} * $ml, 2, 0) . "</th>";
809 map { print "$column_data{$_}\n" } @column_index;
818 <td><hr size=3 noshade></td>
824 <form method=post action=$form->{script}>
826 <input name=callback type=hidden value="$form->{callback}">
828 <input type=hidden name=path value=$form->{path}>
829 <input type=hidden name=login value=$form->{login}>
830 <input type=hidden name=password value=$form->{password}>
832 <input class=submit type=submit name=action value="|
833 . $locale->text('GL Transaction') . qq|">
834 <input class=submit type=submit name=action value="|
835 . $locale->text('AR Transaction') . qq|">
836 <input class=submit type=submit name=action value="|
837 . $locale->text('AP Transaction') . qq|">
838 <input class=submit type=submit name=action value="|
839 . $locale->text('Sales Invoice') . qq|">
840 <input class=submit type=submit name=action value="|
841 . $locale->text('Vendor Invoice') . qq|">|;
843 if ($form->{menubar}) {
844 require "$form->{path}/menu.pl";
855 $lxdebug->leave_sub();
860 $lxdebug->enter_sub();
863 $form->format_amount(\%myconfig, $subtotaldebit, 2, " ");
865 $form->format_amount(\%myconfig, $subtotalcredit, 2, " ");
867 map { $column_data{$_} = "<td> </td>" }
868 qw(transdate id reference source description accno);
869 $column_data{debit} = "<th align=right>$subtotaldebit</td>";
870 $column_data{credit} = "<th align=right>$subtotalcredit</td>";
872 print "<tr class=listsubtotal>";
873 map { print "$column_data{$_}\n" } @column_index;
879 $sameitem = $ref->{ $form->{sort} };
880 $lxdebug->leave_sub();
885 $lxdebug->enter_sub();
887 if ($form->{transdate} ne $form->{oldtransdate}) {
888 if ($form->{selectprojectnumber}) {
889 $form->all_projects(\%myconfig, undef, $form->{transdate});
890 if (@{ $form->{all_project} }) {
891 $form->{selectprojectnumber} = "<option>\n";
892 for (@{ $form->{all_project} }) {
893 $form->{selectprojectnumber} .=
894 qq|<option value="$_->{projectnumber}--$_->{id}">$_->{projectnumber}\n|;
896 $form->{selectprojectnumber} =
897 $form->escape($form->{selectprojectnumber}, 1);
900 $form->{oldtransdate} = $form->{transdate};
908 qw(accno debit credit projectnumber fx_transaction source memo tax taxchart);
910 for my $i (1 .. $form->{rowcount}) {
912 unless (($form->{"debit_$i"} eq "") && ($form->{"credit_$i"} eq "")) {
913 for (qw(debit credit tax)) {
915 $form->parse_amount(\%myconfig, $form->{"${_}_$i"});
919 $debitcredit = ($form->{"debit_$i"} == 0) ? "0" : "1";
921 ($form->{"debit_$i"} == 0)
922 ? $form->{"credit_$i"}
923 : $form->{"debit_$i"};
925 if (($debitcredit && $credittax) || (!$debitcredit && $debittax)) {
926 $form->{"taxchart_$i"} = "0--";
927 $form->{"tax_$i"} = 0;
929 if (!$form->{"korrektur_$i"}) {
930 ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
937 if ($form->{taxincluded}) {
938 $form->{"tax_$i"} = $amount / ($rate + 1) * $rate;
940 $form->{"tax_$i"} = $amount * $rate;
943 $form->{"tax_$i"} = 0;
947 for (@flds) { $a[$j]->{$_} = $form->{"${_}_$i"} }
952 for $i (1 .. $count) {
954 for (@flds) { $form->{"${_}_$i"} = $a[$j]->{$_} }
957 for $i ($count + 1 .. $form->{rowcount}) {
958 for (@flds) { delete $form->{"${_}_$i"} }
961 $form->{rowcount} = $count + 1;
964 $lxdebug->leave_sub();
970 $lxdebug->enter_sub();
974 # for $i (1 .. $form->{rowcount}) {
975 # $form->{totaldebit} += $form->parse_amount(\%myconfig, $form->{"debit_$i"});
976 # $form->{totalcredit} += $form->parse_amount(\%myconfig, $form->{"credit_$i"});
980 &display_rows($init);
982 $lxdebug->leave_sub();
988 $lxdebug->enter_sub();
990 $form->{selectprojectnumber} = $form->unescape($form->{selectprojectnumber})
991 if $form->{selectprojectnumber};
993 $form->{totaldebit} = 0;
994 $form->{totalcredit} = 0;
995 my $chart = $form->{chart};
996 $chart = $form->unquote($chart);
997 $form->{taxchart} = $form->unquote($form->{taxchart});
998 $taxchart = $form->{taxchart};
999 for $i (1 .. $form->{rowcount}) {
1002 <td><input name="source_$i" value="$form->{"source_$i"}" tabindex=|
1003 . ($i + 11 + (($i - 1) * 8))
1006 <td><input name="memo_$i" value="$form->{"memo_$i"}" tabindex=|
1007 . ($i + 12 + (($i - 1) * 8))
1012 <td><select name="accno_$i" onChange="setTaxkey(this, $i)" style="width:300px" tabindex=|
1013 . ($i + 5 + (($i - 1) * 8))
1014 . qq|>$form->{chartinit}</select></td>|;
1016 qq|<td><select id="taxchart_$i" name="taxchart_$i" tabindex=|
1017 . ($i + 10 + (($i - 1) * 8))
1018 . qq|>$form->{taxchart}</select></td>|;
1019 if ($form->{selectprojectnumber}) {
1021 <td><select name="projectnumber_$i">$form->{selectprojectnumber}</select></td>|;
1024 qq|<td><input type="checkbox" name="korrektur_$i" value="1" tabindex=|
1025 . ($i + 9 + (($i - 1) * 8))
1027 if ($form->{transfer}) {
1028 $fx_transaction = qq|
1029 <td><input name="fx_transaction_$i" class=checkbox type=checkbox value=1></td>
1035 $form->{totaldebit} += $form->{"debit_$i"};
1036 $form->{totalcredit} += $form->{"credit_$i"};
1038 for (qw(debit credit tax)) {
1039 $form->{"${_}_$i"} =
1040 ($form->{"${_}_$i"})
1041 ? $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
1045 if ($i < $form->{rowcount}) {
1048 $chart_selected = $form->{"accno_$i"};
1050 s/value=\"$chart_selected\"/value=\"$chart_selected\" selected/;
1052 qq|<td><select name="accno_$i" onChange="setTaxkey(this, $i)" style="width:300px" tabindex=|
1053 . ($i + 5 + (($i - 1) * 8))
1054 . qq|>$accno</select></td>|;
1056 $tax_selected = $form->{"taxchart_$i"};
1057 $tax =~ s/value=\"$tax_selected\"/value=\"$tax_selected\" selected/;
1059 qq|<td><select id="taxchart_$i" name="taxchart_$i" tabindex=|
1060 . ($i + 10 + (($i - 1) * 8))
1061 . qq|>$tax</select></td>|;
1063 if ($form->{selectprojectnumber}) {
1064 $form->{"projectnumber_$i"} = ""
1065 if $form->{selectprojectnumber} !~ /$form->{"projectnumber_$i"}/;
1067 $project = $form->{"projectnumber_$i"};
1068 $project =~ s/--.*//;
1069 $project = qq|<td>$project</td>|;
1072 if ($form->{transfer}) {
1073 $checked = ($form->{"fx_transaction_$i"}) ? "1" : "";
1074 $x = ($checked) ? "x" : "";
1075 $fx_transaction = qq|
1076 <td><input type=hidden name="fx_transaction_$i" value="$checked">$x</td>
1079 $checked = ($form->{"korrektur_$i"}) ? "checked" : "";
1081 qq|<td><input type="checkbox" name="korrektur_$i" value="1" $checked tabindex=|
1082 . ($i + 9 + (($i - 1) * 8))
1084 $form->hide_form("accno_$i", "projectnumber_$i");
1089 <td><select name="accno_$i" onChange="setTaxkey(this, $i)" style="width:300px" tabindex=|
1090 . ($i + 5 + (($i - 1) * 8))
1091 . qq|>$chart</select></td>|;
1093 <td><select id="taxchart_$i" name="taxchart_$i" tabindex=|
1094 . ($i + 10 + (($i - 1) * 8))
1095 . qq|>$taxchart</select></td>|;
1096 if ($form->{selectprojectnumber}) {
1098 <td><select name="projectnumber_$i">$form->{selectprojectnumber}</select></td>|;
1101 qq|<td><input type="checkbox" name="korrektur_$i" value="1" tabindex=|
1102 . ($i + 9 + (($i - 1) * 8))
1104 if ($form->{transfer}) {
1105 $fx_transaction = qq|
1106 <td><input name="fx_transaction_$i" class=checkbox type=checkbox value=1></td>
1112 print qq|<tr valign=top>
1115 <td><input name="debit_$i" size=10 value="$form->{"debit_$i"}" accesskey=$i tabindex=|
1116 . ($i + 6 + (($i - 1) * 8))
1118 <td><input name="credit_$i" size=10 value="$form->{"credit_$i"}" tabindex=|
1119 . ($i + 7 + (($i - 1) * 8))
1121 <td><input name="tax_$i" size=8 value="$form->{"tax_$i"}" tabindex=|
1122 . ($i + 8 + (($i - 1) * 8))
1134 $form->hide_form(qw(rowcount selectaccno));
1136 <input type=hidden name=selectprojectnumber value="|
1137 . $form->escape($form->{selectprojectnumber}, 1) . qq|">|;
1138 $lxdebug->leave_sub();
1144 $lxdebug->enter_sub();
1145 $title = $form->{title};
1146 $form->{title} = $locale->text("$title General Ledger Transaction");
1147 $readonly = ($form->{id}) ? "readonly" : "";
1149 # $locale->text('Add General Ledger Transaction')
1150 # $locale->text('Edit General Ledger Transaction')
1152 map { $form->{$_} =~ s/\"/"/g }
1153 qw(reference description chart taxchart);
1154 $form->{javascript} = qq|<script type="text/javascript">
1156 function setTaxkey(accno, row) {
1157 var taxkey = accno.options[accno.selectedIndex].value;
1158 var reg = /--([0-9])*/;
1159 var found = reg.exec(taxkey);
1160 var index = found[1];
1161 index = parseInt(index);
1162 var tax = 'taxchart_' + row;
1163 for (var i = 0; i < document.getElementById(tax).options.length; ++i) {
1164 var reg2 = new RegExp("^"+ index, "");
1165 if (reg2.exec(document.getElementById(tax).options[i].value)) {
1166 document.getElementById(tax).options[i].selected = true;
1174 $form->{selectdepartment} =~ s/ selected//;
1175 $form->{selectdepartment} =~
1176 s/option>\Q$form->{department}\E/option selected>$form->{department}/;
1178 if (($rows = $form->numtextrows($form->{description}, 50)) > 1) {
1180 qq|<textarea name=description rows=$rows cols=50 wrap=soft $readonly >$form->{description}</textarea>|;
1183 qq|<input name=description size=50 value="$form->{description}" tabindex="3" $readonly>|;
1186 $taxincluded = ($form->{taxincluded}) ? "checked" : "";
1189 $taxincluded = "checked";
1193 qq|<input name=amount size=20 value="$form->{amount}" tabindex="4" $readonly>|;
1197 <th align=right nowrap>| . $locale->text('Department') . qq|</th>
1198 <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
1199 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
1201 | if $form->{selectdepartment};
1203 $form->{fokus} = "gl.reference";
1205 $form->{fokus} = qq|gl.accno_$form->{rowcount}|;
1208 # use JavaScript Calendar or not
1209 $form->{jsscript} = $jscalendar;
1211 if ($form->{jsscript}) {
1213 # with JavaScript Calendar
1215 <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate} tabindex="2" $readonly>
1216 <input type=button name=transdate id="trigger1" value=|
1217 . $locale->text('button')
1223 Form->write_trigger(\%myconfig, "1", "transdate", "BL", "trigger1", "",
1227 # without JavaScript Calendar
1229 qq|<td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate} tabindex="2" $readonly></td>|;
1235 <body onLoad="fokus()">
1237 <form method=post name="gl" action=$form->{script}>
1239 <input name=id type=hidden value=$form->{id}>
1241 <input type=hidden name=closedto value=$form->{closedto}>
1242 <input type=hidden name=locked value=$form->{locked}>
1243 <input type=hidden name=title value="$title">
1244 <input type=hidden name=taxchart value="$form->{taxchart}">
1245 <input type=hidden name=chart value="$form->{chart}">
1250 <th class=listtop>$form->{title}</th>
1252 <tr height="5"></tr>
1257 <th align=right>| . $locale->text('Reference') . qq|</th>
1258 <td><input name=reference size=20 value="$form->{reference}" tabindex="1" $readonly></td>
1262 <th align=right nowrap>| . $locale->text('Date') . qq|</th>
1271 <th align=right>| . $locale->text('Belegnummer') . qq|</th>
1272 <td><input name=id size=20 value="$form->{id}" $readonly></td>
1276 <th align=right width=50%>| . $locale->text('Buchungsdatum') . qq|</th>
1277 <td align=left><input name=gldate size=11 title="$myconfig{dateformat}" value=$form->{gldate} $readonly></td>
1288 <th align=right>| . $locale->text('Description') . qq|</th>
1289 <td>$description</td>
1293 <th align=right width=50%>| . $locale->text('Mitarbeiter') . qq|</th>
1294 <td align=left><input name=employee size=11 value=$form->{employee} $readonly></td>
1302 <th align=right>| . $locale->text('Description') . qq|</th>
1303 <td colspan=2>$description</td>
1308 <th align=right>| . $locale->text('Betrag') . qq|</th>
1313 <th align=left>| . $locale->text('MwSt. inkl.') . qq|</th>
1314 <td><input type=checkbox name=taxincluded value=1 tabindex="5" $taxincluded></td>
1321 <tr class=listheading>
1322 <th class=listheading style="width:15%">|
1323 . $locale->text('Account')
1325 <th class=listheading style="width:10%">|
1326 . $locale->text('Debit')
1328 <th class=listheading style="width:10%">|
1329 . $locale->text('Credit')
1331 <th class=listheading style="width:10%">|
1332 . $locale->text('Tax')
1334 <th class=listheading style="width:5%">|
1335 . $locale->text('Korrektur')
1337 <th class=listheading style="width:10%">|
1338 . $locale->text('Taxkey')
1340 <th class=listheading style="width:20%">|
1341 . $locale->text('Source')
1343 <th class=listheading style="width:20%">| . $locale->text('Memo') . qq|</th>
1349 $lxdebug->leave_sub();
1354 $lxdebug->enter_sub();
1355 ($dec) = ($form->{totaldebit} =~ /\.(\d+)/);
1357 $decimalplaces = ($dec > 2) ? $dec : 2;
1358 $radieren = ($form->current_date(\%myconfig) eq $form->{gldate}) ? 1 : 0;
1362 $form->format_amount(\%myconfig, $form->{$_}, $decimalplaces, " ")
1363 } qw(totaldebit totalcredit);
1369 <input type=hidden name=path value=$form->{path}>
1370 <input type=hidden name=login value=$form->{login}>
1371 <input type=hidden name=password value=$form->{password}>
1373 <input name=callback type=hidden value="$form->{callback}">
1378 $transdate = $form->datetonum($form->{transdate}, \%myconfig);
1379 $closedto = $form->datetonum($form->{closedto}, \%myconfig);
1383 print qq|<input class=submit type=submit name=action value="|
1384 . $locale->text('Storno') . qq|">|;
1386 # Löschen und ändern von Buchungen nicht mehr möglich (GoB) nur am selben Tag möglich
1388 if (!$form->{locked} && $radieren) {
1390 <input class=submit type=submit name=action value="|
1391 . $locale->text('Post')
1392 . qq|" accesskey="b">
1393 <input class=submit type=submit name=action value="|
1394 . $locale->text('Delete') . qq|">|;
1397 # if ($transdate > $closedto) {
1399 # <input class=submit type=submit name=action value="|.$locale->text('Post as new').qq|">|;
1402 if ($transdate > $closedto) {
1403 print qq|<input class=submit type=submit name=action value="|
1404 . $locale->text('Update') . qq|">
1405 <input class=submit type=submit name=action value="|
1406 . $locale->text('Post') . qq|">|;
1410 if ($form->{menubar}) {
1411 require "$form->{path}/menu.pl";
1421 $lxdebug->leave_sub();
1426 $lxdebug->enter_sub();
1433 <form method=post action=$form->{script}>
1436 map { $form->{$_} =~ s/\"/"/g } qw(reference description chart);
1438 delete $form->{header};
1440 foreach $key (keys %$form) {
1441 print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
1445 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
1448 . $locale->text('Are you sure you want to delete Transaction')
1449 . qq| $form->{reference}</h4>
1451 <input name=action class=submit type=submit value="|
1452 . $locale->text('Yes') . qq|">
1455 $lxdebug->leave_sub();
1460 $lxdebug->enter_sub();
1462 $form->redirect($locale->text('Transaction deleted!'))
1463 if (GL->delete_transaction(\%myconfig, \%$form));
1464 $form->error($locale->text('Cannot delete transaction!'));
1465 $lxdebug->leave_sub();
1470 $lxdebug->enter_sub();
1472 # check if there is something in reference and date
1473 $form->isblank("reference", $locale->text('Reference missing!'));
1474 $form->isblank("transdate", $locale->text('Transaction Date missing!'));
1475 $form->isblank("description", $locale->text('Description missing!'));
1477 $transdate = $form->datetonum($form->{transdate}, \%myconfig);
1478 $closedto = $form->datetonum($form->{closedto}, \%myconfig);
1488 qw(accno debit credit projectnumber fx_transaction source memo tax taxchart);
1490 for my $i (1 .. $form->{rowcount}) {
1492 unless (($form->{"debit_$i"} eq "") && ($form->{"credit_$i"} eq "")) {
1493 for (qw(debit credit tax)) {
1494 $form->{"${_}_$i"} =
1495 $form->parse_amount(\%myconfig, $form->{"${_}_$i"});
1499 $debitcredit = ($form->{"debit_$i"} == 0) ? "0" : "1";
1501 ($form->{"debit_$i"} == 0)
1502 ? $form->{"credit_$i"}
1503 : $form->{"debit_$i"};
1505 if (($debitcredit && $credittax) || (!$debitcredit && $debittax)) {
1506 $form->{"taxchart_$i"} = "0--";
1507 $form->{"tax_$i"} = 0;
1509 if (!$form->{"korrektur_$i"}) {
1510 ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
1517 if ($form->{taxincluded}) {
1518 $form->{"tax_$i"} = $amount / ($rate + 1) * $rate;
1520 $form->{"tax_$i"} = $amount * $rate;
1523 $form->{"tax_$i"} = 0;
1527 for (@flds) { $a[$j]->{$_} = $form->{"${_}_$i"} }
1532 for $i (1 .. $count) {
1534 for (@flds) { $form->{"${_}_$i"} = $a[$j]->{$_} }
1537 for $i ($count + 1 .. $form->{rowcount}) {
1538 for (@flds) { delete $form->{"${_}_$i"} }
1541 for $i (1 .. $form->{rowcount}) {
1542 $dr = $form->{"debit_$i"};
1543 $cr = $form->{"credit_$i"};
1544 $tax = $form->{"tax_$i"};
1548 'Cannot post transaction with a debit and credit entry for the same account!'
1551 if ($form->{taxincluded}) {
1557 $debit += $dr + $tax;
1560 $credit += $cr + $tax;
1565 $form->{taxincluded} = 0;
1568 # this is just for the wise guys
1569 $form->error($locale->text('Cannot post transaction for a closed period!'))
1570 if ($transdate <= $closedto);
1571 if ($form->round_amount($debit, 2) != $form->round_amount($credit, 2)) {
1572 $form->error($locale->text('Out of balance transaction!'));
1574 if (($errno = GL->post_transaction(\%myconfig, \%$form)) <= -1) {
1576 $err[1] = $locale->text('Cannot have a value in both Debit and Credit!');
1577 $err[2] = $locale->text('Debit and credit out of balance!');
1578 $err[3] = $locale->text('Cannot post a transaction without a value!');
1580 $form->error($err[$errno]);
1582 undef($form->{callback});
1583 $form->redirect("Buchung gespeichert. Buchungsnummer = " . $form->{id});
1584 $lxdebug->leave_sub();
1589 $lxdebug->enter_sub();
1593 $lxdebug->leave_sub();
1598 $lxdebug->enter_sub();
1601 $form->{storno} = 1;
1603 $lxdebug->leave_sub();