Anpassung neue Menu Layout
[kivitendo-erp.git] / bin / mozilla / gl.pl
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (c) 1998-2002
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #
16 # This program is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by
18 # the Free Software Foundation; either version 2 of the License, or
19 # (at your option) any later version.
20 #
21 # This program is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 # GNU General Public License for more details.
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #======================================================================
29 #
30 # Genereal Ledger
31 #
32 #======================================================================
33
34 use SL::GL;
35 use SL::PE;
36
37 require "$form->{path}/arap.pl";
38
39 1;
40
41 # end of main
42
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')
56
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')
70
71 sub add {
72   $lxdebug->enter_sub();
73
74   $form->{title} = "Add";
75
76   $form->{callback} =
77     "$form->{script}?action=add&path=$form->{path}&login=$form->{login}&password=$form->{password}"
78     unless $form->{callback};
79
80   # we use this only to set a default date
81   GL->transaction(\%myconfig, \%$form);
82
83   map {
84     $chart .=
85       "<option value=\"$_->{accno}--$_->{taxkey_id}\">$_->{accno}--$_->{description}</option>"
86   } @{ $form->{chart} };
87   map {
88     $tax .=
89       qq|<option value="$_->{taxkey}--$_->{rate}">$_->{taxdescription}  |
90       . ($_->{rate} * 100) . qq| %|
91   } @{ $form->{TAX} };
92
93   $form->{chart}     = $chart;
94   $form->{chartinit} = $chart;
95   $form->{rowcount}  = 2;
96
97   $form->{debitchart}  = $chart;
98   $form->{creditchart} = $chart;
99   $form->{taxchart}    = $tax;
100
101   $form->{debit}  = 0;
102   $form->{credit} = 0;
103   $form->{tax}    = 0;
104
105   # departments
106   $form->all_departments(\%myconfig);
107   if (@{ $form->{all_departments} }) {
108     $form->{selectdepartment} = "<option>\n";
109
110     map {
111       $form->{selectdepartment} .=
112         "<option>$_->{description}--$_->{id}\n"
113     } (@{ $form->{all_departments} });
114   }
115
116   &display_form(1);
117   $lxdebug->leave_sub();
118
119 }
120
121 sub edit {
122   $lxdebug->enter_sub();
123
124   GL->transaction(\%myconfig, \%$form);
125   map {
126     $chart .=
127       "<option value=\"$_->{accno}--$_->{taxkey_id}\">$_->{accno}--$_->{description}</option>"
128   } @{ $form->{chart} };
129
130   map {
131     $tax .=
132       qq|<option value="$_->{taxkey}--$_->{rate}">$_->{taxdescription}  |
133       . ($_->{rate} * 100) . qq| %|
134   } @{ $form->{TAX} };
135
136   $form->{chart} = $chart;
137
138   $form->{taxchart} = $tax;
139
140   $form->{amount} = $form->format_amount(\%myconfig, $form->{amount}, 2);
141
142   # departments
143   $form->all_departments(\%myconfig);
144   if (@{ $form->{all_departments} }) {
145     $form->{selectdepartment} = "<option>\n";
146
147     map {
148       $form->{selectdepartment} .=
149         "<option>$_->{description}--$_->{id}\n"
150     } (@{ $form->{all_departments} });
151   }
152
153   my $i        = 1;
154   my $tax      = 0;
155   my $taxaccno = "";
156   foreach $ref (@{ $form->{GL} }) {
157     $form->{"projectnumber_$i"} = "$ref->{projectnumber}--$ref->{project_id}";
158
159     $j = $i - 1;
160     if ($tax && ($ref->{accno} eq $taxaccno)) {
161       $form->{"tax_$j"}      = abs($ref->{amount});
162       $form->{"taxchart_$j"} = $ref->{taxkey} . "--" . $ref->{taxrate};
163     } else {
164       $form->{"accno_$i"} = "$ref->{accno}--$ref->{accnotaxkey}";
165       for (qw(fx_transaction source memo)) { $form->{"${_}_$i"} = $ref->{$_} }
166       if ($ref->{amount} < 0) {
167         $form->{totaldebit} -= $ref->{amount};
168         $form->{"debit_$i"} = $ref->{amount} * -1;
169       } else {
170         $form->{totalcredit} += $ref->{amount};
171         $form->{"credit_$i"} = $ref->{amount};
172       }
173       $i++;
174     }
175     if ($ref->{taxaccno} && !$tax) {
176       $taxaccno = $ref->{taxaccno};
177       $tax      = 1;
178     } else {
179       $taxaccno = "";
180       $tax      = 0;
181     }
182
183   }
184
185   $form->{rowcount} = $i;
186   $form->{locked}   =
187     ($form->datetonum($form->{transdate}, \%myconfig) <=
188      $form->datetonum($form->{closedto}, \%myconfig));
189
190   $form->{title} = "Edit";
191
192   &form_header;
193   &display_rows;
194   &form_footer;
195   $lxdebug->leave_sub();
196
197 }
198
199 sub search {
200   $lxdebug->enter_sub();
201
202   $form->{title} = $locale->text('Buchungsjournal');
203
204   $form->all_departments(\%myconfig);
205
206   # departments
207   if (@{ $form->{all_departments} }) {
208     $form->{selectdepartment} = "<option>\n";
209
210     map {
211       $form->{selectdepartment} .=
212         "<option>$_->{description}--$_->{id}\n"
213     } (@{ $form->{all_departments} });
214   }
215
216   $department = qq|
217         <tr>
218           <th align=right nowrap>| . $locale->text('Department') . qq|</th>
219           <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
220         </tr>
221 | if $form->{selectdepartment};
222
223   # use JavaScript Calendar or not
224   $form->{jsscript} = $jscalendar;
225   $jsscript = "";
226   if ($form->{jsscript}) {
227
228     # with JavaScript Calendar
229     $button1 = qq|
230        <td><input name=datefrom id=datefrom size=11 title="$myconfig{dateformat}">
231        <input type=button name=datefrom id="trigger1" value=|
232       . $locale->text('button') . qq|></td>  
233        |;
234     $button2 = qq|
235        <td><input name=dateto id=dateto size=11 title="$myconfig{dateformat}">
236        <input type=button name=dateto id="trigger2" value=|
237       . $locale->text('button') . qq|></td>
238      |;
239
240     #write Trigger
241     $jsscript =
242       Form->write_trigger(\%myconfig, "2", "datefrom", "BR", "trigger1",
243                           "dateto", "BL", "trigger2");
244   } else {
245
246     # without JavaScript Calendar
247     $button1 =
248       qq|<td><input name=datefrom id=datefrom size=11 title="$myconfig{dateformat}"></td>|;
249     $button2 =
250       qq|<td><input name=dateto id=dateto size=11 title="$myconfig{dateformat}"></td>|;
251   }
252
253   $form->header;
254
255   print qq|
256 <body>
257
258 <form method=post action=$form->{script}>
259
260 <input type=hidden name=sort value=transdate>
261
262 <table width=100%>
263   <tr>
264     <th class=listtop>$form->{title}</th>
265   </tr>
266   <tr height="5"></tr>
267   <tr>
268     <td>
269       <table>
270         <tr>
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>
275         </tr>
276         $department
277         <tr>
278           <th align=right>| . $locale->text('Description') . qq|</th>
279           <td colspan=3><input name=description size=40></td>
280         </tr>
281         <tr>
282           <th align=right>| . $locale->text('Notes') . qq|</th>
283           <td colspan=3><input name=notes size=40></td>
284         </tr>
285         <tr>
286           <th align=right>| . $locale->text('From') . qq|</th>
287           $button1
288           $button2
289         </tr>
290         <tr>
291           <th align=right>| . $locale->text('Include in Report') . qq|</th>
292           <td colspan=3>
293             <table>
294               <tr>
295                 <td>
296                   <input name="category" class=radio type=radio value=X checked>&nbsp;|
297     . $locale->text('All') . qq|
298                   <input name="category" class=radio type=radio value=A>&nbsp;|
299     . $locale->text('Asset') . qq|
300                   <input name="category" class=radio type=radio value=C>&nbsp;|
301     . $locale->text('Contra') . qq|
302                   <input name="category" class=radio type=radio value=L>&nbsp;|
303     . $locale->text('Liability') . qq|
304                   <input name="category" class=radio type=radio value=Q>&nbsp;|
305     . $locale->text('Equity') . qq|
306                   <input name="category" class=radio type=radio value=I>&nbsp;|
307     . $locale->text('Revenue') . qq|
308                   <input name="category" class=radio type=radio value=E>&nbsp;|
309     . $locale->text('Expense') . qq|
310                 </td>
311               </tr>
312               <tr>
313                 <table>
314                   <tr>
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>
325                   </tr>
326                   <tr>
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>
337                   </tr>
338                   <tr>
339                     <td align=right><input name="l_subtotal" class=checkbox type=checkbox value=Y></td>
340                     <td>| . $locale->text('Subtotal') . qq|</td>
341                   </tr>
342                 </table>
343               </tr>
344             </table>
345         </tr>
346       </table>
347     </td>
348   </tr>
349   <tr>
350     <td><hr size=3 noshade></td>
351   </tr>
352 </table>
353
354 $jsscript
355
356 <input type=hidden name=nextsub value=generate_report>
357
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}>
361
362 <br>
363 <input class=submit type=submit name=action value="|
364     . $locale->text('Continue') . qq|">
365 </form>
366
367 </body>
368 </html>
369 |;
370   $lxdebug->leave_sub();
371 }
372
373 sub generate_report {
374   $lxdebug->enter_sub();
375
376   $form->{sort} = "transdate" unless $form->{sort};
377
378   GL->all_transactions(\%myconfig, \%$form);
379
380   $callback =
381     "$form->{script}?action=generate_report&path=$form->{path}&login=$form->{login}&password=$form->{password}";
382
383   $href = $callback;
384
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'),);
391
392   $form->{title} = $locale->text('General Ledger');
393
394   $ml = ($form->{ml} =~ /(A|E)/) ? -1 : 1;
395
396   unless ($form->{category} eq 'X') {
397     $form->{title} .= " : " . $locale->text($acctype{ $form->{category} });
398   }
399   if ($form->{accno}) {
400     $href .= "&accno=" . $form->escape($form->{accno});
401     $callback .= "&accno=" . $form->escape($form->{accno}, 1);
402     $option =
403       $locale->text('Account')
404       . " : $form->{accno} $form->{account_description}";
405   }
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;
410     $option   .=
411       $locale->text('GIFI')
412       . " : $form->{gifi_accno} $form->{gifi_account_description}";
413   }
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}";
419   }
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}";
425   }
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";
432   }
433
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}";
439   }
440   if ($form->{notes}) {
441     $href     .= "&notes=" . $form->escape($form->{notes});
442     $callback .= "&notes=" . $form->escape($form->{notes}, 1);
443     $option   .= "\n<br>" if $option;
444     $option   .= $locale->text('Notes') . " : $form->{notes}";
445   }
446
447   if ($form->{datefrom}) {
448     $href     .= "&datefrom=$form->{datefrom}";
449     $callback .= "&datefrom=$form->{datefrom}";
450     $option   .= "\n<br>" if $option;
451     $option   .=
452         $locale->text('From') . " "
453       . $locale->date(\%myconfig, $form->{datefrom}, 1);
454   }
455   if ($form->{dateto}) {
456     $href     .= "&dateto=$form->{dateto}";
457     $callback .= "&dateto=$form->{dateto}";
458     if ($form->{datefrom}) {
459       $option .= " ";
460     } else {
461       $option .= "\n<br>" if $option;
462     }
463     $option .=
464         $locale->text('Bis') . " "
465       . $locale->date(\%myconfig, $form->{dateto}, 1);
466   }
467
468   @columns = $form->sort_columns(
469     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)
470   );
471
472   if ($form->{accno} || $form->{gifi_accno}) {
473     @columns = grep !/(accno|gifi_accno)/, @columns;
474     push @columns, "balance";
475     $form->{l_balance} = "Y";
476
477   }
478
479   $form->{l_credit_accno}     = "Y";
480   $form->{l_debit_accno}      = "Y";
481   $form->{l_credit_tax}       = "Y";
482   $form->{l_debit_tax}        = "Y";
483   $form->{l_credit_tax_accno} = "Y";
484   $form->{l_debit_tax_accno}  = "Y";
485   $form->{l_accno}            = "N";
486   foreach $item (@columns) {
487     if ($form->{"l_$item"} eq "Y") {
488       push @column_index, $item;
489
490       # add column to href and callback
491       $callback .= "&l_$item=Y";
492       $href     .= "&l_$item=Y";
493     }
494   }
495
496   if ($form->{l_subtotal} eq 'Y') {
497     $callback .= "&l_subtotal=Y";
498     $href     .= "&l_subtotal=Y";
499   }
500
501   $callback .= "&category=$form->{category}";
502   $href     .= "&category=$form->{category}";
503
504   $column_header{id} =
505       "<th><a class=listheading href=$href&sort=id>"
506     . $locale->text('ID')
507     . "</a></th>";
508   $column_header{transdate} =
509       "<th><a class=listheading href=$href&sort=transdate>"
510     . $locale->text('Date')
511     . "</a></th>";
512   $column_header{reference} =
513       "<th><a class=listheading href=$href&sort=reference>"
514     . $locale->text('Reference')
515     . "</a></th>";
516   $column_header{source} =
517       "<th><a class=listheading href=$href&sort=source>"
518     . $locale->text('Source')
519     . "</a></th>";
520   $column_header{description} =
521       "<th><a class=listheading href=$href&sort=description>"
522     . $locale->text('Description')
523     . "</a></th>";
524   $column_header{notes} =
525     "<th class=listheading>" . $locale->text('Notes') . "</th>";
526   $column_header{debit} =
527     "<th class=listheading>" . $locale->text('Debit') . "</th>";
528   $column_header{debit_accno} =
529       "<th><a class=listheading href=$href&sort=accno>"
530     . $locale->text('Debit Account')
531     . "</a></th>";
532   $column_header{credit} =
533     "<th class=listheading>" . $locale->text('Credit') . "</th>";
534   $column_header{credit_accno} =
535       "<th><a class=listheading href=$href&sort=accno>"
536     . $locale->text('Credit Account')
537     . "</a></th>";
538   $column_header{debit_tax} =
539       "<th><a class=listheading href=$href&sort=accno>"
540     . $locale->text('Debit Tax')
541     . "</a></th>";
542   $column_header{debit_tax_accno} =
543       "<th><a class=listheading href=$href&sort=accno>"
544     . $locale->text('Debit Tax Account')
545     . "</a></th>";
546   $column_header{credit_tax} =
547       "<th><a class=listheading href=$href&sort=accno>"
548     . $locale->text('Credit Tax')
549     . "</a></th>";
550   $column_header{credit_tax_accno} =
551       "<th><a class=listheading href=$href&sort=accno>"
552     . $locale->text('Credit Tax Account')
553     . "</a></th>";
554   $column_header{gifi_accno} =
555       "<th><a class=listheading href=$href&sort=gifi_accno>"
556     . $locale->text('GIFI')
557     . "</a></th>";
558   $column_header{balance} = "<th>" . $locale->text('Balance') . "</th>";
559
560   $form->{landscape} = 1;
561
562   $form->header;
563
564   print qq|
565 <body>
566
567 <table width=100%>
568   <tr>
569     <th class=listtop>$form->{title}</th>
570   </tr>
571   <tr height="5"></tr>
572   <tr>
573     <td>$option</td>
574   </tr>
575   <tr>
576     <td>
577       <table width=100%>
578        <thead>
579         <tr class=listheading>
580 |;
581
582   map { print "$column_header{$_}\n" } @column_index;
583
584   print "
585         </tr>
586         </thead>
587         </tfoot>
588         <tbody>
589 ";
590
591   # add sort to callback
592   $form->{callback} = "$callback&sort=$form->{sort}";
593   $callback = $form->escape($form->{callback});
594
595   # initial item for subtotals
596   if (@{ $form->{GL} }) {
597     $sameitem = $form->{GL}->[0]->{ $form->{sort} };
598   }
599
600   if (($form->{accno} || $form->{gifi_accno}) && $form->{balance}) {
601
602     map { $column_data{$_} = "<td>&nbsp;</td>" } @column_index;
603     $column_data{balance} =
604         "<td align=right>"
605       . $form->format_amount(\%myconfig, $form->{balance} * $ml, 2, 0)
606       . "</td>";
607
608     $i++;
609     $i %= 2;
610     print qq|
611         <tr class=listrow$i>
612 |;
613     map { print "$column_data{$_}\n" } @column_index;
614
615     print qq|
616         </tr>
617 |;
618   }
619
620   foreach $ref (@{ $form->{GL} }) {
621
622     # if item ne sort print subtotal
623     if ($form->{l_subtotal} eq 'Y') {
624       if ($sameitem ne $ref->{ $form->{sort} }) {
625         &gl_subtotal;
626       }
627     }
628     foreach $key (sort keys(%{ $ref->{amount} })) {
629       $form->{balance} += $ref->{amount}{$key};
630     }
631
632     $debit = "";
633     foreach $key (sort keys(%{ $ref->{debit} })) {
634       $subtotaldebit += $ref->{debit}{$key};
635       $totaldebit    += $ref->{debit}{$key};
636       if ($key == 0) {
637         $debit = $form->format_amount(\%myconfig, $ref->{debit}{$key}, 2, 0);
638       } else {
639         $debit .=
640           "<br>" . $form->format_amount(\%myconfig, $ref->{debit}{$key}, 2, 0);
641       }
642     }
643
644     $credit = "";
645     foreach $key (sort keys(%{ $ref->{credit} })) {
646       $subtotalcredit += $ref->{credit}{$key};
647       $totalcredit    += $ref->{credit}{$key};
648       if ($key == 0) {
649         $credit = $form->format_amount(\%myconfig, $ref->{credit}{$key}, 2, 0);
650       } else {
651         $credit .= "<br>"
652           . $form->format_amount(\%myconfig, $ref->{credit}{$key}, 2, 0);
653       }
654     }
655
656     $debittax = "";
657     foreach $key (sort keys(%{ $ref->{debit_tax} })) {
658       $subtotaldebittax += $ref->{debit_tax}{$key};
659       $totaldebittax    += $ref->{debit_tax}{$key};
660       if ($key == 0) {
661         $debittax =
662           $form->format_amount(\%myconfig, $ref->{debit_tax}{$key}, 2, 0);
663       } else {
664         $debittax .= "<br>"
665           . $form->format_amount(\%myconfig, $ref->{debit_tax}{$key}, 2, 0);
666       }
667     }
668
669     $credittax = "";
670     foreach $key (sort keys(%{ $ref->{credit_tax} })) {
671       $subtotalcredittax += $ref->{credit_tax}{$key};
672       $totalcredittax    += $ref->{credit_tax}{$key};
673       if ($key == 0) {
674         $credittax =
675           $form->format_amount(\%myconfig, $ref->{credit_tax}{$key}, 2, 0);
676       } else {
677         $credittax .= "<br>"
678           . $form->format_amount(\%myconfig, $ref->{credit_tax}{$key}, 2, 0);
679       }
680     }
681
682     $debitaccno  = "";
683     $debittaxkey = "";
684     $taxaccno    = "";
685     foreach $key (sort keys(%{ $ref->{debit_accno} })) {
686       if ($key == 0) {
687         $debitaccno =
688           "<a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{debit_accno}{$key}</a>";
689       } else {
690         $debitaccno .=
691           "<br><a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{debit_accno}{$key}</a>";
692       }
693       if ($ref->{debit_taxkey}{$key} eq $debittaxkey) {
694         $ref->{debit_tax_accno}{$key} = $taxaccno;
695       }
696       $taxaccno    = $ref->{debit_tax_accno}{$key};
697       $debittaxkey = $ref->{debit_taxkey}{$key};
698     }
699
700     $creditaccno  = "";
701     $credittaxkey = "";
702     $taxaccno     = "";
703     foreach $key (sort keys(%{ $ref->{credit_accno} })) {
704       if ($key == 0) {
705         $creditaccno =
706           "<a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{credit_accno}{$key}</a>";
707       } else {
708         $creditaccno .=
709           "<br><a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{credit_accno}{$key}</a>";
710       }
711       if ($ref->{credit_taxkey}{$key} eq $credittaxkey) {
712         $ref->{credit_tax_accno}{$key} = $taxaccno;
713       }
714       $taxaccno     = $ref->{credit_tax_accno}{$key};
715       $credittaxkey = $ref->{credit_taxkey}{$key};
716     }
717
718     $debittaxaccno = "";
719     foreach $key (sort keys(%{ $ref->{debit_tax_accno} })) {
720       if ($key == 0) {
721         $debittaxaccno =
722           "<a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{debit_tax_accno}{$key}</a>";
723       } else {
724         $debittaxaccno .=
725           "<br><a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{debit_tax_accno}{$key}</a>";
726       }
727     }
728
729     $credittaxaccno = "";
730     foreach $key (sort keys(%{ $ref->{credit_tax_accno} })) {
731       if ($key == 0) {
732         $credittaxaccno =
733           "<a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{credit_tax_accno}{$key}</a>";
734       } else {
735         $credittaxaccno .=
736           "<br><a href=$href&accno=$ref->{accno}&callback=$callback>$ref->{credit_tax_accno}{$key}</a>";
737       }
738     }
739
740     #    $ref->{debit} = $form->format_amount(\%myconfig, $ref->{debit}, 2, "&nbsp;");
741     #    $ref->{credit} = $form->format_amount(\%myconfig, $ref->{credit}, 2, "&nbsp;");
742
743     $column_data{id}        = "<td align=right>&nbsp;$ref->{id}&nbsp;</td>";
744     $column_data{transdate} =
745       "<td align=center>&nbsp;$ref->{transdate}&nbsp;</td>";
746     $column_data{reference} =
747       "<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>";
748     $column_data{description} =
749       "<td align=center>$ref->{description}&nbsp;</td>";
750     $column_data{source}       = "<td align=center>$ref->{source}&nbsp;</td>";
751     $column_data{notes}        = "<td align=center>$ref->{notes}&nbsp;</td>";
752     $column_data{debit}        = "<td align=right>$debit</td>";
753     $column_data{debit_accno}  = "<td align=center>$debitaccno</td>";
754     $column_data{credit}       = "<td align=right>$credit</td>";
755     $column_data{credit_accno} = "<td align=center>$creditaccno</td>";
756     $column_data{debit_tax}    =
757       ($ref->{debit_tax_accno} ne "")
758       ? "<td align=right>$debittax</td>"
759       : "<td></td>";
760     $column_data{debit_tax_accno} = "<td align=center>$debittaxaccno</td>";
761     $column_data{gifi_accno}      =
762       "<td><a href=$href&gifi_accno=$ref->{gifi_accno}&callback=$callback>$ref->{gifi_accno}</a>&nbsp;</td>";
763     $column_data{credit_tax} =
764       ($ref->{credit_tax_accno} ne "")
765       ? "<td align=right>$credittax</td>"
766       : "<td></td>";
767     $column_data{credit_tax_accno} = "<td align=center>$credittaxaccno</td>";
768     $column_data{gifi_accno}       =
769       "<td><a href=$href&gifi_accno=$ref->{gifi_accno}&callback=$callback>$ref->{gifi_accno}</a>&nbsp;</td>";
770     $column_data{balance} =
771         "<td align=right>"
772       . $form->format_amount(\%myconfig, $form->{balance} * $ml, 2, 0)
773       . "</td>";
774
775     $i++;
776     $i %= 2;
777     print "
778         <tr class=listrow$i>";
779     map { print "$column_data{$_}\n" } @column_index;
780     print "</tr>";
781
782   }
783
784   &gl_subtotal if ($form->{l_subtotal} eq 'Y');
785
786   map { $column_data{$_} = "<td>&nbsp;</td>" } @column_index;
787
788   $column_data{debit} =
789     "<th align=right class=listtotal>"
790     . $form->format_amount(\%myconfig, $totaldebit, 2, "&nbsp;") . "</th>";
791   $column_data{credit} =
792     "<th align=right class=listtotal>"
793     . $form->format_amount(\%myconfig, $totalcredit, 2, "&nbsp;") . "</th>";
794   $column_data{debit_tax} =
795     "<th align=right class=listtotal>"
796     . $form->format_amount(\%myconfig, $totaldebittax, 2, "&nbsp;") . "</th>";
797   $column_data{credit_tax} =
798     "<th align=right class=listtotal>"
799     . $form->format_amount(\%myconfig, $totalcredittax, 2, "&nbsp;") . "</th>";
800   $column_data{balance} =
801     "<th align=right class=listtotal>"
802     . $form->format_amount(\%myconfig, $form->{balance} * $ml, 2, 0) . "</th>";
803
804   print qq|
805         <tr class=listtotal>
806 |;
807
808   map { print "$column_data{$_}\n" } @column_index;
809
810   print qq|
811         </tr>
812         </tbody>
813       </table>
814     </td>
815   </tr>
816   <tr>
817     <td><hr size=3 noshade></td>
818   </tr>
819 </table>
820
821 <br>
822
823 <form method=post action=$form->{script}>
824
825 <input name=callback type=hidden value="$form->{callback}">
826
827 <input type=hidden name=path value=$form->{path}>
828 <input type=hidden name=login value=$form->{login}>
829 <input type=hidden name=password value=$form->{password}>
830
831 <input class=submit type=submit name=action value="|
832     . $locale->text('GL Transaction') . qq|">
833 <input class=submit type=submit name=action value="|
834     . $locale->text('AR Transaction') . qq|">
835 <input class=submit type=submit name=action value="|
836     . $locale->text('AP Transaction') . qq|">
837 <input class=submit type=submit name=action value="|
838     . $locale->text('Sales Invoice') . qq|">
839 <input class=submit type=submit name=action value="|
840     . $locale->text('Vendor Invoice') . qq|">|;
841
842   if ($form->{menubar}) {
843     require "$form->{path}/menu.pl";
844     &menubar;
845   }
846
847   print qq|
848
849 </form>
850
851 </body>
852 </html>
853 |;
854   $lxdebug->leave_sub();
855
856 }
857
858 sub gl_subtotal {
859   $lxdebug->enter_sub();
860
861   $subtotaldebit =
862     $form->format_amount(\%myconfig, $subtotaldebit, 2, "&nbsp;");
863   $subtotalcredit =
864     $form->format_amount(\%myconfig, $subtotalcredit, 2, "&nbsp;");
865
866   map { $column_data{$_} = "<td>&nbsp;</td>" }
867     qw(transdate id reference source description accno);
868   $column_data{debit}  = "<th align=right>$subtotaldebit</td>";
869   $column_data{credit} = "<th align=right>$subtotalcredit</td>";
870
871   print "<tr class=listsubtotal>";
872   map { print "$column_data{$_}\n" } @column_index;
873   print "</tr>";
874
875   $subtotaldebit  = 0;
876   $subtotalcredit = 0;
877
878   $sameitem = $ref->{ $form->{sort} };
879   $lxdebug->leave_sub();
880
881 }
882
883 sub update {
884   $lxdebug->enter_sub();
885
886   if ($form->{transdate} ne $form->{oldtransdate}) {
887     if ($form->{selectprojectnumber}) {
888       $form->all_projects(\%myconfig, undef, $form->{transdate});
889       if (@{ $form->{all_project} }) {
890         $form->{selectprojectnumber} = "<option>\n";
891         for (@{ $form->{all_project} }) {
892           $form->{selectprojectnumber} .=
893             qq|<option value="$_->{projectnumber}--$_->{id}">$_->{projectnumber}\n|;
894         }
895         $form->{selectprojectnumber} =
896           $form->escape($form->{selectprojectnumber}, 1);
897       }
898     }
899     $form->{oldtransdate} = $form->{transdate};
900   }
901
902   my @a           = ();
903   my $count       = 0;
904   my $debittax    = 0;
905   my $credittax   = 0;
906   my $debitcount  = 0;
907   my $creditcount = 0;
908   $debitlock  = 0;
909   $creditlock = 0;
910
911   my @flds =
912     qw(accno debit credit projectnumber fx_transaction source memo tax taxchart);
913
914   for my $i (1 .. $form->{rowcount}) {
915
916     unless (($form->{"debit_$i"} eq "") && ($form->{"credit_$i"} eq "")) {
917       for (qw(debit credit tax)) {
918         $form->{"${_}_$i"} =
919           $form->parse_amount(\%myconfig, $form->{"${_}_$i"});
920       }
921
922       push @a, {};
923       $debitcredit = ($form->{"debit_$i"} == 0) ? "0" : "1";
924       if ($debitcredit) {
925         $debitcount++;
926       } else {
927         $creditcount++;
928       }
929
930       if (($debitcount >= 2) && ($creditcount == 2)) {
931         $form->{"credit_$i"} = 0;
932         $form->{"tax_$i"}    = 0;
933         $creditcount--;
934         $creditlock = 1;
935       }
936       if (($creditcount >= 2) && ($debitcount == 2)) {
937         $form->{"debit_$i"} = 0;
938         $form->{"tax_$i"}   = 0;
939         $debitcount--;
940         $debitlock = 1;
941       }
942       if (($creditcount == 1) && ($debitcount == 2)) {
943         $creditlock = 1;
944       }
945       if (($creditcount == 2) && ($debitcount == 1)) {
946         $debitlock = 1;
947       }
948       if ($debitcredit && $credittax) {
949         $form->{"taxchart_$i"} = "0--0.00";
950       }
951       if (!$debitcredit && $debittax) {
952         $form->{"taxchart_$i"} = "0--0.00";
953       }
954       $amount =
955         ($form->{"debit_$i"} == 0)
956         ? $form->{"credit_$i"}
957         : $form->{"debit_$i"};
958       $j = $#a;
959       if (($debitcredit && $credittax) || (!$debitcredit && $debittax)) {
960         $form->{"taxchart_$i"} = "0--";
961         $form->{"tax_$i"}      = 0;
962       }
963       if (!$form->{"korrektur_$i"}) {
964         ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
965         if ($taxkey > 1) {
966           if ($debitcredit) {
967             $debittax = 1;
968           } else {
969             $credittax = 1;
970           }
971           if ($form->{taxincluded}) {
972             $form->{"tax_$i"} = $amount / ($rate + 1) * $rate;
973           } else {
974             $form->{"tax_$i"} = $amount * $rate;
975           }
976         } else {
977           $form->{"tax_$i"} = 0;
978         }
979       }
980
981       for (@flds) { $a[$j]->{$_} = $form->{"${_}_$i"} }
982       $count++;
983     }
984   }
985
986   for $i (1 .. $count) {
987     $j = $i - 1;
988     for (@flds) { $form->{"${_}_$i"} = $a[$j]->{$_} }
989   }
990
991   for $i ($count + 1 .. $form->{rowcount}) {
992     for (@flds) { delete $form->{"${_}_$i"} }
993   }
994
995   $form->{rowcount} = $count + 1;
996
997   &display_form;
998   $lxdebug->leave_sub();
999
1000 }
1001
1002 sub display_form {
1003   my ($init) = @_;
1004   $lxdebug->enter_sub();
1005
1006   &form_header($init);
1007
1008   #   for $i (1 .. $form->{rowcount}) {
1009   #     $form->{totaldebit} += $form->parse_amount(\%myconfig, $form->{"debit_$i"});
1010   #     $form->{totalcredit} += $form->parse_amount(\%myconfig, $form->{"credit_$i"});
1011   #
1012   #     &form_row($i);
1013   #   }
1014   &display_rows($init);
1015   &form_footer;
1016   $lxdebug->leave_sub();
1017
1018 }
1019
1020 sub display_rows {
1021   my ($init) = @_;
1022   $lxdebug->enter_sub();
1023
1024   $form->{selectprojectnumber} = $form->unescape($form->{selectprojectnumber})
1025     if $form->{selectprojectnumber};
1026
1027   $form->{totaldebit}  = 0;
1028   $form->{totalcredit} = 0;
1029   my $chart = $form->{chart};
1030   $chart            = $form->unquote($chart);
1031   $form->{taxchart} = $form->unquote($form->{taxchart});
1032   $taxchart         = $form->{taxchart};
1033   for $i (1 .. $form->{rowcount}) {
1034
1035     $source = qq|
1036     <td><input name="source_$i" value="$form->{"source_$i"}" tabindex=|
1037       . ($i + 11 + (($i - 1) * 8)) . qq|></td>|;
1038     $memo = qq|
1039     <td><input name="memo_$i" value="$form->{"memo_$i"}" tabindex=|
1040       . ($i + 12 + (($i - 1) * 8)) . qq|></td>|;
1041
1042     if ($init) {
1043       $accno = qq|
1044       <td><select name="accno_$i" onChange="setTaxkey(this, $i)" style="width:300px" tabindex=|
1045         . ($i + 5 + (($i - 1) * 8)) . qq|>$form->{chartinit}</select></td>|;
1046       $tax =
1047           qq|<td><select id="taxchart_$i" name="taxchart_$i" tabindex=|
1048         . ($i + 10 + (($i - 1) * 8))
1049         . qq|>$form->{taxchart}</select></td>|;
1050       if ($form->{selectprojectnumber}) {
1051         $project = qq|
1052     <td><select name="projectnumber_$i">$form->{selectprojectnumber}</select></td>|;
1053       }
1054       $korrektur =
1055         qq|<td><input type="checkbox" name="korrektur_$i" value="1" tabindex=|
1056         . ($i + 9 + (($i - 1) * 8))
1057         . qq|></td>|;
1058       if ($form->{transfer}) {
1059         $fx_transaction = qq|
1060         <td><input name="fx_transaction_$i" class=checkbox type=checkbox value=1></td>
1061     |;
1062       }
1063
1064     } else {
1065       if ($form->{"debit_$i"} != 0) {
1066         $form->{totaldebit} += $form->{"debit_$i"};
1067         $form->{totaldebit} += $form->{"tax_$i"};
1068       } else {
1069         $form->{totalcredit} += $form->{"credit_$i"};
1070         $form->{totalcredit} += $form->{"tax_$i"};
1071       }
1072
1073       for (qw(debit credit tax)) {
1074         $form->{"${_}_$i"} =
1075           ($form->{"${_}_$i"})
1076           ? $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
1077           : "";
1078       }
1079
1080       if ($i < $form->{rowcount}) {
1081
1082         $accno          = $chart;
1083         $chart_selected = $form->{"accno_$i"};
1084         $accno =~
1085           s/value=\"$chart_selected\"/value=\"$chart_selected\" selected/;
1086         $accno =
1087           qq|<td><select name="accno_$i" onChange="setTaxkey(this, $i)" style="width:300px" tabindex=|
1088           . ($i + 5 + (($i - 1) * 8))
1089           . qq|>$accno</select></td>|;
1090         $tax          = $taxchart;
1091         $tax_selected = $form->{"taxchart_$i"};
1092         $tax =~ s/value=\"$tax_selected\"/value=\"$tax_selected\" selected/;
1093         $tax =
1094             qq|<td><select id="taxchart_$i" name="taxchart_$i" tabindex=|
1095           . ($i + 10 + (($i - 1) * 8))
1096           . qq|>$tax</select></td>|;
1097
1098         if ($form->{selectprojectnumber}) {
1099           $form->{"projectnumber_$i"} = ""
1100             if $form->{selectprojectnumber} !~ /$form->{"projectnumber_$i"}/;
1101
1102           $project = $form->{"projectnumber_$i"};
1103           $project =~ s/--.*//;
1104           $project = qq|<td>$project</td>|;
1105         }
1106
1107         if ($form->{transfer}) {
1108           $checked = ($form->{"fx_transaction_$i"}) ? "1" : "";
1109           $x = ($checked) ? "x" : "";
1110           $fx_transaction = qq|
1111       <td><input type=hidden name="fx_transaction_$i" value="$checked">$x</td>
1112     |;
1113         }
1114         $checked = ($form->{"korrektur_$i"}) ? "checked" : "";
1115         $korrektur =
1116           qq|<td><input type="checkbox" name="korrektur_$i" value="1" $checked tabindex=|
1117           . ($i + 9 + (($i - 1) * 8))
1118           . qq|></td>|;
1119         $form->hide_form("accno_$i", "projectnumber_$i");
1120
1121       } else {
1122
1123         $accno = qq|
1124       <td><select name="accno_$i" onChange="setTaxkey(this, $i)" style="width:300px" tabindex=|
1125           . ($i + 5 + (($i - 1) * 8)) . qq|>$chart</select></td>|;
1126         $tax = qq|
1127       <td><select id="taxchart_$i" name="taxchart_$i" tabindex=|
1128           . ($i + 10 + (($i - 1) * 8)) . qq|>$taxchart</select></td>|;
1129         if ($form->{selectprojectnumber}) {
1130           $project = qq|
1131       <td><select name="projectnumber_$i">$form->{selectprojectnumber}</select></td>|;
1132         }
1133         $korrektur =
1134           qq|<td><input type="checkbox" name="korrektur_$i" value="1" tabindex=|
1135           . ($i + 9 + (($i - 1) * 8))
1136           . qq|></td>|;
1137         if ($form->{transfer}) {
1138           $fx_transaction = qq|
1139       <td><input name="fx_transaction_$i" class=checkbox type=checkbox value=1></td>
1140     |;
1141         }
1142       }
1143     }
1144     my $debitreadonly  = "";
1145     my $creditreadonly = "";
1146     if ($i == $form->{rowcount}) {
1147       if ($debitlock) {
1148         $debitreadonly = "readonly";
1149       } elsif ($creditlock) {
1150         $creditreadonly = "readonly";
1151       }
1152     }
1153
1154     print qq|<tr valign=top>
1155     $accno
1156     $fx_transaction
1157     <td><input name="debit_$i" size=10 value="$form->{"debit_$i"}" accesskey=$i tabindex=|
1158       . ($i + 6 + (($i - 1) * 8)) . qq| $debitreadonly></td>
1159     <td><input name="credit_$i" size=10 value="$form->{"credit_$i"}" tabindex=|
1160       . ($i + 7 + (($i - 1) * 8)) . qq| $creditreadonly></td>
1161     <td><input name="tax_$i" size=8 value="$form->{"tax_$i"}" tabindex=|
1162       . ($i + 8 + (($i - 1) * 8)) . qq|></td>
1163     $korrektur
1164     $tax
1165     $source
1166     $memo
1167     $project
1168   </tr>
1169
1170   |;
1171   }
1172
1173   $form->hide_form(qw(rowcount selectaccno));
1174   print qq|
1175 <input type=hidden name=selectprojectnumber value="|
1176     . $form->escape($form->{selectprojectnumber}, 1) . qq|">|;
1177   $lxdebug->leave_sub();
1178
1179 }
1180
1181 sub form_header {
1182   my ($init) = @_;
1183   $lxdebug->enter_sub();
1184   $title         = $form->{title};
1185   $form->{title} = $locale->text("$title General Ledger Transaction");
1186   $readonly      = ($form->{id}) ? "readonly" : "";
1187
1188   # $locale->text('Add General Ledger Transaction')
1189   # $locale->text('Edit General Ledger Transaction')
1190
1191   map { $form->{$_} =~ s/\"/&quot;/g }
1192     qw(reference description chart taxchart);
1193   $form->{javascript} = qq|<script type="text/javascript">
1194   <!--
1195   function setTaxkey(accno, row) {
1196     var taxkey = accno.options[accno.selectedIndex].value;
1197     var reg = /--([0-9])*/;
1198     var found = reg.exec(taxkey);
1199     var index = found[1];
1200     index = parseInt(index);
1201     var tax = 'taxchart_' + row;
1202     for (var i = 0; i < document.getElementById(tax).options.length; ++i) {
1203       var reg2 = new RegExp("^"+ index, "");
1204       if (reg2.exec(document.getElementById(tax).options[i].value)) {
1205         document.getElementById(tax).options[i].selected = true;
1206         break;
1207       }
1208     }
1209   };
1210   //-->
1211   </script>|;
1212
1213   $form->{selectdepartment} =~ s/ selected//;
1214   $form->{selectdepartment} =~
1215     s/option>\Q$form->{department}\E/option selected>$form->{department}/;
1216
1217   if (($rows = $form->numtextrows($form->{description}, 50)) > 1) {
1218     $description =
1219       qq|<textarea name=description rows=$rows cols=50 wrap=soft $readonly >$form->{description}</textarea>|;
1220   } else {
1221     $description =
1222       qq|<input name=description size=50 value="$form->{description}" tabindex="3" $readonly>|;
1223   }
1224
1225   $taxincluded = ($form->{taxincluded}) ? "checked" : "";
1226
1227   if ($init) {
1228     $taxincluded = "checked";
1229   }
1230
1231   $department = qq|
1232         <tr>
1233           <th align=right nowrap>| . $locale->text('Department') . qq|</th>
1234           <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
1235           <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
1236         </tr>
1237 | if $form->{selectdepartment};
1238   if ($init) {
1239     $form->{fokus} = "gl.reference";
1240   } else {
1241     $form->{fokus} = qq|gl.accno_$form->{rowcount}|;
1242   }
1243
1244   # use JavaScript Calendar or not
1245   $form->{jsscript} = $jscalendar;
1246   $jsscript = "";
1247   if ($form->{jsscript}) {
1248
1249     # with JavaScript Calendar
1250     $button1 = qq|
1251        <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate} tabindex="2" $readonly>
1252        <input type=button name=transdate id="trigger1" value=|
1253       . $locale->text('button') . qq|></td>  
1254        |;
1255
1256     #write Trigger
1257     $jsscript =
1258       Form->write_trigger(\%myconfig, "1", "transdate", "BL", "trigger1", "",
1259                           "", "");
1260   } else {
1261
1262     # without JavaScript Calendar
1263     $button1 =
1264       qq|<td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate} tabindex="2" $readonly></td>|;
1265   }
1266
1267   $form->header;
1268
1269   print qq|
1270 <body onLoad="fokus()">
1271
1272 <form method=post name="gl" action=$form->{script}>
1273
1274 <input name=id type=hidden value=$form->{id}>
1275
1276 <input type=hidden name=closedto value=$form->{closedto}>
1277 <input type=hidden name=locked value=$form->{locked}>
1278 <input type=hidden name=title value="$title">
1279 <input type=hidden name=taxchart value="$form->{taxchart}">
1280 <input type=hidden name=chart value="$form->{chart}">
1281
1282
1283 <table width=100%>
1284   <tr>
1285     <th class=listtop>$form->{title}</th>
1286   </tr>
1287   <tr height="5"></tr>
1288   <tr>
1289     <td>
1290       <table width=100%>
1291         <tr>
1292           <th align=left>| . $locale->text('Reference') . qq|</th>
1293           <td><input name=reference size=20 value="$form->{reference}" tabindex="1" $readonly></td>
1294           <td align=left>
1295             <table>
1296               <tr>
1297                 <th align=right nowrap>| . $locale->text('Date') . qq|</th>
1298                 $button1
1299               </tr>
1300             </table>
1301           </td>
1302         </tr>|;
1303   if ($form->{id}) {
1304     print qq|
1305         <tr>
1306           <th align=right>| . $locale->text('Belegnummer') . qq|</th>
1307           <td><input name=id size=20 value="$form->{id}" $readonly></td>
1308           <td align=left>
1309           <table>
1310               <tr>
1311                 <th align=right width=50%>| . $locale->text('Buchungsdatum') . qq|</th>
1312                 <td align=left><input name=gldate size=11 title="$myconfig{dateformat}" value=$form->{gldate} $readonly></td>
1313               </tr>
1314             </table>
1315           </td>
1316         </tr>|;
1317   }
1318   print qq|     
1319         $department|;
1320   if ($form->{id}) {
1321     print qq|
1322         <tr>
1323           <th align=left width=1%>| . $locale->text('Description') . qq|</th>
1324           <td width=1%>$description</td>
1325           <td>
1326             <table>
1327               <tr>
1328                 <th align=left>| . $locale->text('MwSt. inkl.') . qq|</th>
1329                 <td><input type=checkbox name=taxincluded value=1 tabindex="5" $taxincluded></td>
1330               </tr>
1331             </table>
1332          </td>
1333           <td align=left>
1334             <table width=100%>
1335               <tr>
1336                 <th align=right width=50%>| . $locale->text('Mitarbeiter') . qq|</th>
1337                 <td align=left><input name=employee size=11  value=$form->{employee} $readonly></td>
1338               </tr>
1339             </table>
1340           </td>
1341         </tr>|;
1342   } else {
1343     print qq|
1344         <tr>
1345           <th align=left width=1%>| . $locale->text('Description') . qq|</th>
1346           <td width=1%>$description</td>
1347           <td>
1348             <table>
1349               <tr>
1350                 <th align=left>| . $locale->text('MwSt. inkl.') . qq|</th>
1351                 <td><input type=checkbox name=taxincluded value=1 tabindex="5" $taxincluded></td>
1352               </tr>
1353             </table>
1354          </td>
1355         </tr>|;
1356   }
1357   print qq|
1358       <tr>
1359       <td colspan=4>
1360           <table width=100%>
1361            <tr class=listheading>
1362           <th class=listheading style="width:15%">|
1363     . $locale->text('Account') . qq|</th>
1364           <th class=listheading style="width:10%">|
1365     . $locale->text('Debit') . qq|</th>
1366           <th class=listheading style="width:10%">|
1367     . $locale->text('Credit') . qq|</th>
1368           <th class=listheading style="width:10%">|
1369     . $locale->text('Tax') . qq|</th>
1370           <th class=listheading style="width:5%">|
1371     . $locale->text('Korrektur') . qq|</th>
1372           <th class=listheading style="width:10%">|
1373     . $locale->text('Taxkey') . qq|</th>
1374           <th class=listheading style="width:20%">|
1375     . $locale->text('Source') . qq|</th>
1376           <th class=listheading style="width:20%">| . $locale->text('Memo') . qq|</th>
1377           $project
1378         </tr>
1379
1380 $jsscript
1381 |;
1382   $lxdebug->leave_sub();
1383
1384 }
1385
1386 sub form_footer {
1387   $lxdebug->enter_sub();
1388   ($dec) = ($form->{totaldebit} =~ /\.(\d+)/);
1389   $dec = length $dec;
1390   $decimalplaces = ($dec > 2) ? $dec : 2;
1391   $radieren = ($form->current_date(\%myconfig) eq $form->{gldate}) ? 1 : 0;
1392
1393   map {
1394     $form->{$_} =
1395       $form->format_amount(\%myconfig, $form->{$_}, 2, "&nbsp;")
1396   } qw(totaldebit totalcredit);
1397
1398   print qq|
1399     <tr class=listtotal>
1400     <td></td>
1401     <th align=right class=listtotal> $form->{totaldebit}</th>
1402     <th align=right class=listtotal> $form->{totalcredit}</th> 
1403     <td colspan=5></td>
1404     </tr>
1405   </table>
1406   </td>
1407   </tr>
1408 </table>
1409
1410 <input type=hidden name=path value=$form->{path}>
1411 <input type=hidden name=login value=$form->{login}>
1412 <input type=hidden name=password value=$form->{password}>
1413
1414 <input name=callback type=hidden value="$form->{callback}">
1415
1416 <br>
1417 |;
1418
1419   $transdate = $form->datetonum($form->{transdate}, \%myconfig);
1420   $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
1421
1422   if ($form->{id}) {
1423
1424     print qq|<input class=submit type=submit name=action value="|
1425       . $locale->text('Storno') . qq|">|;
1426
1427     # Löschen und Ã¤ndern von Buchungen nicht mehr möglich (GoB) nur am selben Tag möglich
1428
1429     if (!$form->{locked} && $radieren) {
1430       print qq|
1431                 <input class=submit type=submit name=action value="|
1432         . $locale->text('Post') . qq|" accesskey="b">
1433                 <input class=submit type=submit name=action value="|
1434         . $locale->text('Delete') . qq|">|;
1435     }
1436
1437     #   if ($transdate > $closedto) {
1438     #           print qq|
1439     #           <input class=submit type=submit name=action value="|.$locale->text('Post as new').qq|">|;
1440     #   }
1441   } else {
1442     if ($transdate > $closedto) {
1443       print qq|<input class=submit type=submit name=action value="|
1444         . $locale->text('Update') . qq|">
1445                  <input class=submit type=submit name=action value="|
1446         . $locale->text('Post') . qq|">|;
1447     }
1448   }
1449
1450   if ($form->{menubar}) {
1451     require "$form->{path}/menu.pl";
1452     &menubar;
1453   }
1454
1455   print "
1456   </form>
1457
1458 </body>
1459 </html>
1460 ";
1461   $lxdebug->leave_sub();
1462
1463 }
1464
1465 sub delete {
1466   $lxdebug->enter_sub();
1467
1468   $form->header;
1469
1470   print qq|
1471 <body>
1472
1473 <form method=post action=$form->{script}>
1474 |;
1475
1476   map { $form->{$_} =~ s/\"/&quot;/g } qw(reference description chart);
1477
1478   delete $form->{header};
1479
1480   foreach $key (keys %$form) {
1481     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
1482   }
1483
1484   print qq|
1485 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
1486
1487 <h4>|
1488     . $locale->text('Are you sure you want to delete Transaction')
1489     . qq| $form->{reference}</h4>
1490
1491 <input name=action class=submit type=submit value="|
1492     . $locale->text('Yes') . qq|">
1493 </form>
1494 |;
1495   $lxdebug->leave_sub();
1496
1497 }
1498
1499 sub yes {
1500   $lxdebug->enter_sub();
1501
1502   $form->redirect($locale->text('Transaction deleted!'))
1503     if (GL->delete_transaction(\%myconfig, \%$form));
1504   $form->error($locale->text('Cannot delete transaction!'));
1505   $lxdebug->leave_sub();
1506
1507 }
1508
1509 sub post {
1510   $lxdebug->enter_sub();
1511
1512   # check if there is something in reference and date
1513   $form->isblank("reference",   $locale->text('Reference missing!'));
1514   $form->isblank("transdate",   $locale->text('Transaction Date missing!'));
1515   $form->isblank("description", $locale->text('Description missing!'));
1516
1517   $transdate = $form->datetonum($form->{transdate}, \%myconfig);
1518   $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
1519
1520   # check project
1521   &check_project;
1522
1523   my @a           = ();
1524   my $count       = 0;
1525   my $debittax    = 0;
1526   my $credittax   = 0;
1527   my $debitcount  = 0;
1528   my $creditcount = 0;
1529   $creditlock = 0;
1530   $debitlock  = 0;
1531
1532   my @flds =
1533     qw(accno debit credit projectnumber fx_transaction source memo tax taxchart);
1534
1535   for my $i (1 .. $form->{rowcount}) {
1536
1537     unless (($form->{"debit_$i"} eq "") && ($form->{"credit_$i"} eq "")) {
1538       for (qw(debit credit tax)) {
1539         $form->{"${_}_$i"} =
1540           $form->parse_amount(\%myconfig, $form->{"${_}_$i"});
1541       }
1542
1543       push @a, {};
1544       $debitcredit = ($form->{"debit_$i"} == 0) ? "0" : "1";
1545
1546       if ($debitcredit) {
1547         $debitcount++;
1548       } else {
1549         $creditcount++;
1550       }
1551
1552       if (($debitcount >= 2) && ($creditcount == 2)) {
1553         $form->{"credit_$i"} = 0;
1554         $form->{"tax_$i"}    = 0;
1555         $creditcount--;
1556         $creditlock = 1;
1557       }
1558       if (($creditcount >= 2) && ($debitcount == 2)) {
1559         $form->{"debit_$i"} = 0;
1560         $form->{"tax_$i"}   = 0;
1561         $debitcount--;
1562         $debitlock = 1;
1563       }
1564       if (($creditcount == 1) && ($debitcount == 2)) {
1565         $creditlock = 1;
1566       }
1567       if (($creditcount == 2) && ($debitcount == 1)) {
1568         $debitlock = 1;
1569       }
1570       if ($debitcredit && $credittax) {
1571         $form->{"taxchart_$i"} = "0--0.00";
1572       }
1573       if (!$debitcredit && $debittax) {
1574         $form->{"taxchart_$i"} = "0--0.00";
1575       }
1576       $amount =
1577         ($form->{"debit_$i"} == 0)
1578         ? $form->{"credit_$i"}
1579         : $form->{"debit_$i"};
1580       $j = $#a;
1581       if (($debitcredit && $credittax) || (!$debitcredit && $debittax)) {
1582         $form->{"taxchart_$i"} = "0--";
1583         $form->{"tax_$i"}      = 0;
1584       }
1585       if (!$form->{"korrektur_$i"}) {
1586         ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
1587         if ($taxkey > 1) {
1588           if ($debitcredit) {
1589             $debittax = 1;
1590           } else {
1591             $credittax = 1;
1592           }
1593           if ($form->{taxincluded}) {
1594             $form->{"tax_$i"} = $amount / ($rate + 1) * $rate;
1595           } else {
1596             $form->{"tax_$i"} = $amount * $rate;
1597           }
1598         } else {
1599           $form->{"tax_$i"} = 0;
1600         }
1601       }
1602
1603       for (@flds) { $a[$j]->{$_} = $form->{"${_}_$i"} }
1604       $count++;
1605     }
1606   }
1607
1608   for $i (1 .. $count) {
1609     $j = $i - 1;
1610     for (@flds) { $form->{"${_}_$i"} = $a[$j]->{$_} }
1611   }
1612
1613   for $i ($count + 1 .. $form->{rowcount}) {
1614     for (@flds) { delete $form->{"${_}_$i"} }
1615   }
1616
1617   for $i (1 .. $form->{rowcount}) {
1618     $dr  = $form->{"debit_$i"};
1619     $cr  = $form->{"credit_$i"};
1620     $tax = $form->{"tax_$i"};
1621     if ($dr && $cr) {
1622       $form->error(
1623         $locale->text(
1624           'Cannot post transaction with a debit and credit entry for the same account!'
1625         ));
1626     }
1627     if ($form->{taxincluded}) {
1628       $debit    += $dr;
1629       $credit   += $cr;
1630       $taxtotal += $tax;
1631     } else {
1632       if ($dr) {
1633         $debit += $dr + $tax;
1634       }
1635       if ($cr) {
1636         $credit += $cr + $tax;
1637       }
1638     }
1639   }
1640   if (!$taxtotal) {
1641     $form->{taxincluded} = 0;
1642   }
1643
1644   # this is just for the wise guys
1645   $form->error($locale->text('Cannot post transaction for a closed period!'))
1646     if ($transdate <= $closedto);
1647   if ($form->round_amount($debit, 2) != $form->round_amount($credit, 2)) {
1648     $form->error($locale->text('Out of balance transaction!'));
1649   }
1650   if (($errno = GL->post_transaction(\%myconfig, \%$form)) <= -1) {
1651     $errno *= -1;
1652     $err[1] = $locale->text('Cannot have a value in both Debit and Credit!');
1653     $err[2] = $locale->text('Debit and credit out of balance!');
1654     $err[3] = $locale->text('Cannot post a transaction without a value!');
1655
1656     $form->error($err[$errno]);
1657   }
1658   undef($form->{callback});
1659   $form->redirect("Buchung gespeichert. Buchungsnummer = " . $form->{id});
1660   $lxdebug->leave_sub();
1661
1662 }
1663
1664 sub post_as_new {
1665   $lxdebug->enter_sub();
1666
1667   $form->{id} = 0;
1668   &add;
1669   $lxdebug->leave_sub();
1670
1671 }
1672
1673 sub storno {
1674   $lxdebug->enter_sub();
1675
1676   $form->{id}     = 0;
1677   $form->{storno} = 1;
1678   &post;
1679   $lxdebug->leave_sub();
1680
1681 }
1682