3433b47f05b26287d4e292b851bdda04c285cf3c
[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 @flds      =
907     qw(accno debit credit projectnumber fx_transaction source memo tax taxchart);
908
909   for my $i (1 .. $form->{rowcount}) {
910
911     unless (($form->{"debit_$i"} eq "") && ($form->{"credit_$i"} eq "")) {
912       for (qw(debit credit tax)) {
913         $form->{"${_}_$i"} =
914           $form->parse_amount(\%myconfig, $form->{"${_}_$i"});
915       }
916
917       push @a, {};
918       $debitcredit = ($form->{"debit_$i"} == 0) ? "0" : "1";
919       $amount =
920         ($form->{"debit_$i"} == 0)
921         ? $form->{"credit_$i"}
922         : $form->{"debit_$i"};
923       $j = $#a;
924       if (($debitcredit && $credittax) || (!$debitcredit && $debittax)) {
925         $form->{"taxchart_$i"} = "0--";
926         $form->{"tax_$i"}      = 0;
927       }
928       if (!$form->{"korrektur_$i"}) {
929         ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
930         if ($taxkey > 1) {
931           if ($debitcredit) {
932             $debittax = 1;
933           } else {
934             $credittax = 1;
935           }
936           if ($form->{taxincluded}) {
937             $form->{"tax_$i"} = $amount / ($rate + 1) * $rate;
938           } else {
939             $form->{"tax_$i"} = $amount * $rate;
940           }
941         } else {
942           $form->{"tax_$i"} = 0;
943         }
944       }
945
946       for (@flds) { $a[$j]->{$_} = $form->{"${_}_$i"} }
947       $count++;
948     }
949   }
950
951   for $i (1 .. $count) {
952     $j = $i - 1;
953     for (@flds) { $form->{"${_}_$i"} = $a[$j]->{$_} }
954   }
955
956   for $i ($count + 1 .. $form->{rowcount}) {
957     for (@flds) { delete $form->{"${_}_$i"} }
958   }
959
960   $form->{rowcount} = $count + 1;
961
962   &display_form;
963   $lxdebug->leave_sub();
964
965 }
966
967 sub display_form {
968   my ($init) = @_;
969   $lxdebug->enter_sub();
970
971   &form_header($init);
972
973   #   for $i (1 .. $form->{rowcount}) {
974   #     $form->{totaldebit} += $form->parse_amount(\%myconfig, $form->{"debit_$i"});
975   #     $form->{totalcredit} += $form->parse_amount(\%myconfig, $form->{"credit_$i"});
976   #
977   #     &form_row($i);
978   #   }
979   &display_rows($init);
980   &form_footer;
981   $lxdebug->leave_sub();
982
983 }
984
985 sub display_rows {
986   my ($init) = @_;
987   $lxdebug->enter_sub();
988
989   $form->{selectprojectnumber} = $form->unescape($form->{selectprojectnumber})
990     if $form->{selectprojectnumber};
991
992   $form->{totaldebit}  = 0;
993   $form->{totalcredit} = 0;
994   my $chart = $form->{chart};
995   $chart            = $form->unquote($chart);
996   $form->{taxchart} = $form->unquote($form->{taxchart});
997   $taxchart         = $form->{taxchart};
998   for $i (1 .. $form->{rowcount}) {
999
1000     $source = qq|
1001     <td><input name="source_$i" value="$form->{"source_$i"}" tabindex=|
1002       . ($i + 11 + (($i - 1) * 8)) . qq|></td>|;
1003     $memo = qq|
1004     <td><input name="memo_$i" value="$form->{"memo_$i"}" tabindex=|
1005       . ($i + 12 + (($i - 1) * 8)) . qq|></td>|;
1006
1007     if ($init) {
1008       $accno = qq|
1009       <td><select name="accno_$i" onChange="setTaxkey(this, $i)" style="width:300px" tabindex=|
1010         . ($i + 5 + (($i - 1) * 8)) . qq|>$form->{chartinit}</select></td>|;
1011       $tax =
1012           qq|<td><select id="taxchart_$i" name="taxchart_$i" tabindex=|
1013         . ($i + 10 + (($i - 1) * 8))
1014         . qq|>$form->{taxchart}</select></td>|;
1015       if ($form->{selectprojectnumber}) {
1016         $project = qq|
1017     <td><select name="projectnumber_$i">$form->{selectprojectnumber}</select></td>|;
1018       }
1019       $korrektur =
1020         qq|<td><input type="checkbox" name="korrektur_$i" value="1" tabindex=|
1021         . ($i + 9 + (($i - 1) * 8))
1022         . qq|></td>|;
1023       if ($form->{transfer}) {
1024         $fx_transaction = qq|
1025         <td><input name="fx_transaction_$i" class=checkbox type=checkbox value=1></td>
1026     |;
1027       }
1028
1029     } else {
1030
1031       $form->{totaldebit}  += $form->{"debit_$i"};
1032       $form->{totalcredit} += $form->{"credit_$i"};
1033
1034       for (qw(debit credit tax)) {
1035         $form->{"${_}_$i"} =
1036           ($form->{"${_}_$i"})
1037           ? $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
1038           : "";
1039       }
1040
1041       if ($i < $form->{rowcount}) {
1042
1043         $accno          = $chart;
1044         $chart_selected = $form->{"accno_$i"};
1045         $accno =~
1046           s/value=\"$chart_selected\"/value=\"$chart_selected\" selected/;
1047         $accno =
1048           qq|<td><select name="accno_$i" onChange="setTaxkey(this, $i)" style="width:300px" tabindex=|
1049           . ($i + 5 + (($i - 1) * 8))
1050           . qq|>$accno</select></td>|;
1051         $tax          = $taxchart;
1052         $tax_selected = $form->{"taxchart_$i"};
1053         $tax =~ s/value=\"$tax_selected\"/value=\"$tax_selected\" selected/;
1054         $tax =
1055             qq|<td><select id="taxchart_$i" name="taxchart_$i" tabindex=|
1056           . ($i + 10 + (($i - 1) * 8))
1057           . qq|>$tax</select></td>|;
1058
1059         if ($form->{selectprojectnumber}) {
1060           $form->{"projectnumber_$i"} = ""
1061             if $form->{selectprojectnumber} !~ /$form->{"projectnumber_$i"}/;
1062
1063           $project = $form->{"projectnumber_$i"};
1064           $project =~ s/--.*//;
1065           $project = qq|<td>$project</td>|;
1066         }
1067
1068         if ($form->{transfer}) {
1069           $checked = ($form->{"fx_transaction_$i"}) ? "1" : "";
1070           $x = ($checked) ? "x" : "";
1071           $fx_transaction = qq|
1072       <td><input type=hidden name="fx_transaction_$i" value="$checked">$x</td>
1073     |;
1074         }
1075         $checked = ($form->{"korrektur_$i"}) ? "checked" : "";
1076         $korrektur =
1077           qq|<td><input type="checkbox" name="korrektur_$i" value="1" $checked tabindex=|
1078           . ($i + 9 + (($i - 1) * 8))
1079           . qq|></td>|;
1080         $form->hide_form("accno_$i", "projectnumber_$i");
1081
1082       } else {
1083
1084         $accno = qq|
1085       <td><select name="accno_$i" onChange="setTaxkey(this, $i)" style="width:300px" tabindex=|
1086           . ($i + 5 + (($i - 1) * 8)) . qq|>$chart</select></td>|;
1087         $tax = qq|
1088       <td><select id="taxchart_$i" name="taxchart_$i" tabindex=|
1089           . ($i + 10 + (($i - 1) * 8)) . qq|>$taxchart</select></td>|;
1090         if ($form->{selectprojectnumber}) {
1091           $project = qq|
1092       <td><select name="projectnumber_$i">$form->{selectprojectnumber}</select></td>|;
1093         }
1094         $korrektur =
1095           qq|<td><input type="checkbox" name="korrektur_$i" value="1" tabindex=|
1096           . ($i + 9 + (($i - 1) * 8))
1097           . qq|></td>|;
1098         if ($form->{transfer}) {
1099           $fx_transaction = qq|
1100       <td><input name="fx_transaction_$i" class=checkbox type=checkbox value=1></td>
1101     |;
1102         }
1103       }
1104     }
1105
1106     print qq|<tr valign=top>
1107     $accno
1108     $fx_transaction
1109     <td><input name="debit_$i" size=10 value="$form->{"debit_$i"}" accesskey=$i tabindex=|
1110       . ($i + 6 + (($i - 1) * 8)) . qq|></td>
1111     <td><input name="credit_$i" size=10 value="$form->{"credit_$i"}" tabindex=|
1112       . ($i + 7 + (($i - 1) * 8)) . qq|></td>
1113     <td><input name="tax_$i" size=8 value="$form->{"tax_$i"}" tabindex=|
1114       . ($i + 8 + (($i - 1) * 8)) . qq|></td>
1115     $korrektur
1116     $tax
1117     $source
1118     $memo
1119     $project
1120   </tr>
1121
1122   |;
1123   }
1124
1125   $form->hide_form(qw(rowcount selectaccno));
1126   print qq|
1127 <input type=hidden name=selectprojectnumber value="|
1128     . $form->escape($form->{selectprojectnumber}, 1) . qq|">|;
1129   $lxdebug->leave_sub();
1130
1131 }
1132
1133 sub form_header {
1134   my ($init) = @_;
1135   $lxdebug->enter_sub();
1136   $title         = $form->{title};
1137   $form->{title} = $locale->text("$title General Ledger Transaction");
1138   $readonly      = ($form->{id}) ? "readonly" : "";
1139
1140   # $locale->text('Add General Ledger Transaction')
1141   # $locale->text('Edit General Ledger Transaction')
1142
1143   map { $form->{$_} =~ s/\"/&quot;/g }
1144     qw(reference description chart taxchart);
1145   $form->{javascript} = qq|<script type="text/javascript">
1146   <!--
1147   function setTaxkey(accno, row) {
1148     var taxkey = accno.options[accno.selectedIndex].value;
1149     var reg = /--([0-9])*/;
1150     var found = reg.exec(taxkey);
1151     var index = found[1];
1152     index = parseInt(index);
1153     var tax = 'taxchart_' + row;
1154     for (var i = 0; i < document.getElementById(tax).options.length; ++i) {
1155       var reg2 = new RegExp("^"+ index, "");
1156       if (reg2.exec(document.getElementById(tax).options[i].value)) {
1157         document.getElementById(tax).options[i].selected = true;
1158         break;
1159       }
1160     }
1161   };
1162   //-->
1163   </script>|;
1164
1165   $form->{selectdepartment} =~ s/ selected//;
1166   $form->{selectdepartment} =~
1167     s/option>\Q$form->{department}\E/option selected>$form->{department}/;
1168
1169   if (($rows = $form->numtextrows($form->{description}, 50)) > 1) {
1170     $description =
1171       qq|<textarea name=description rows=$rows cols=50 wrap=soft $readonly >$form->{description}</textarea>|;
1172   } else {
1173     $description =
1174       qq|<input name=description size=50 value="$form->{description}" tabindex="3" $readonly>|;
1175   }
1176
1177   $taxincluded = ($form->{taxincluded}) ? "checked" : "";
1178
1179   if ($init) {
1180     $taxincluded = "checked";
1181   }
1182
1183   $department = qq|
1184         <tr>
1185           <th align=right nowrap>| . $locale->text('Department') . qq|</th>
1186           <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
1187           <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
1188         </tr>
1189 | if $form->{selectdepartment};
1190   if ($init) {
1191     $form->{fokus} = "gl.reference";
1192   } else {
1193     $form->{fokus} = qq|gl.accno_$form->{rowcount}|;
1194   }
1195
1196   # use JavaScript Calendar or not
1197   $form->{jsscript} = $jscalendar;
1198   $jsscript = "";
1199   if ($form->{jsscript}) {
1200
1201     # with JavaScript Calendar
1202     $button1 = qq|
1203        <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate} tabindex="2" $readonly>
1204        <input type=button name=transdate id="trigger1" value=|
1205       . $locale->text('button') . qq|></td>  
1206        |;
1207
1208     #write Trigger
1209     $jsscript =
1210       Form->write_trigger(\%myconfig, "1", "transdate", "BL", "trigger1", "",
1211                           "", "");
1212   } else {
1213
1214     # without JavaScript Calendar
1215     $button1 =
1216       qq|<td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate} tabindex="2" $readonly></td>|;
1217   }
1218
1219   $form->header;
1220
1221   print qq|
1222 <body onLoad="fokus()">
1223
1224 <form method=post name="gl" action=$form->{script}>
1225
1226 <input name=id type=hidden value=$form->{id}>
1227
1228 <input type=hidden name=closedto value=$form->{closedto}>
1229 <input type=hidden name=locked value=$form->{locked}>
1230 <input type=hidden name=title value="$title">
1231 <input type=hidden name=taxchart value="$form->{taxchart}">
1232 <input type=hidden name=chart value="$form->{chart}">
1233
1234
1235 <table width=100%>
1236   <tr>
1237     <th class=listtop>$form->{title}</th>
1238   </tr>
1239   <tr height="5"></tr>
1240   <tr>
1241     <td>
1242       <table width=100%>
1243         <tr>
1244           <th align=right>| . $locale->text('Reference') . qq|</th>
1245           <td><input name=reference size=20 value="$form->{reference}" tabindex="1" $readonly></td>
1246           <td align=left>
1247             <table width=100%>
1248               <tr>
1249                 <th align=right nowrap>| . $locale->text('Date') . qq|</th>
1250                 $button1
1251               </tr>
1252             </table>
1253           </td>
1254         </tr>|;
1255   if ($form->{id}) {
1256     print qq|
1257         <tr>
1258           <th align=right>| . $locale->text('Belegnummer') . qq|</th>
1259           <td><input name=id size=20 value="$form->{id}" $readonly></td>
1260           <td align=left>
1261           <table width=100%>
1262               <tr>
1263                 <th align=right width=50%>| . $locale->text('Buchungsdatum') . qq|</th>
1264                 <td align=left><input name=gldate size=11 title="$myconfig{dateformat}" value=$form->{gldate} $readonly></td>
1265               </tr>
1266             </table>
1267           </td>
1268         </tr>|;
1269   }
1270   print qq|     
1271         $department|;
1272   if ($form->{id}) {
1273     print qq|
1274         <tr>
1275           <th align=right>| . $locale->text('Description') . qq|</th>
1276           <td>$description</td>
1277           <td>
1278             <table>
1279               <tr>
1280                 <th align=left>| . $locale->text('MwSt. inkl.') . qq|</th>
1281                 <td><input type=checkbox name=taxincluded value=1 tabindex="5" $taxincluded></td>
1282               </tr>
1283             </table>
1284          </td>
1285           <td align=left>
1286             <table width=100%>
1287               <tr>
1288                 <th align=right width=50%>| . $locale->text('Mitarbeiter') . qq|</th>
1289                 <td align=left><input name=employee size=11  value=$form->{employee} $readonly></td>
1290               </tr>
1291             </table>
1292           </td>
1293         </tr>|;
1294   } else {
1295     print qq|
1296         <tr>
1297           <th align=right>| . $locale->text('Description') . qq|</th>
1298           <td colspan=2>$description</td>
1299           <td>
1300             <table>
1301               <tr>
1302                 <th align=left>| . $locale->text('MwSt. inkl.') . qq|</th>
1303                 <td><input type=checkbox name=taxincluded value=1 tabindex="5" $taxincluded></td>
1304               </tr>
1305             </table>
1306          </td>
1307         </tr>|;
1308   }
1309   print qq|
1310       <tr>
1311           <table width=100%>
1312            <tr class=listheading>
1313           <th class=listheading style="width:15%">|
1314     . $locale->text('Account') . qq|</th>
1315           <th class=listheading style="width:10%">|
1316     . $locale->text('Debit') . qq|</th>
1317           <th class=listheading style="width:10%">|
1318     . $locale->text('Credit') . qq|</th>
1319           <th class=listheading style="width:10%">|
1320     . $locale->text('Tax') . qq|</th>
1321           <th class=listheading style="width:5%">|
1322     . $locale->text('Korrektur') . qq|</th>
1323           <th class=listheading style="width:10%">|
1324     . $locale->text('Taxkey') . qq|</th>
1325           <th class=listheading style="width:20%">|
1326     . $locale->text('Source') . qq|</th>
1327           <th class=listheading style="width:20%">| . $locale->text('Memo') . qq|</th>
1328           $project
1329         </tr>
1330
1331 $jsscript
1332 |;
1333   $lxdebug->leave_sub();
1334
1335 }
1336
1337 sub form_footer {
1338   $lxdebug->enter_sub();
1339   ($dec) = ($form->{totaldebit} =~ /\.(\d+)/);
1340   $dec = length $dec;
1341   $decimalplaces = ($dec > 2) ? $dec : 2;
1342   $radieren = ($form->current_date(\%myconfig) eq $form->{gldate}) ? 1 : 0;
1343
1344   map {
1345     $form->{$_} =
1346       $form->format_amount(\%myconfig, $form->{$_}, $decimalplaces, "&nbsp;")
1347   } qw(totaldebit totalcredit);
1348
1349   print qq|
1350   </table>
1351 </table>
1352
1353 <input type=hidden name=path value=$form->{path}>
1354 <input type=hidden name=login value=$form->{login}>
1355 <input type=hidden name=password value=$form->{password}>
1356
1357 <input name=callback type=hidden value="$form->{callback}">
1358
1359 <br>
1360 |;
1361
1362   $transdate = $form->datetonum($form->{transdate}, \%myconfig);
1363   $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
1364
1365   if ($form->{id}) {
1366
1367     print qq|<input class=submit type=submit name=action value="|
1368       . $locale->text('Storno') . qq|">|;
1369
1370     # Löschen und ändern von Buchungen nicht mehr möglich (GoB) nur am selben Tag möglich
1371
1372     if (!$form->{locked} && $radieren) {
1373       print qq|
1374                 <input class=submit type=submit name=action value="|
1375         . $locale->text('Post') . qq|" accesskey="b">
1376                 <input class=submit type=submit name=action value="|
1377         . $locale->text('Delete') . qq|">|;
1378     }
1379
1380     #   if ($transdate > $closedto) {
1381     #           print qq|
1382     #           <input class=submit type=submit name=action value="|.$locale->text('Post as new').qq|">|;
1383     #   }
1384   } else {
1385     if ($transdate > $closedto) {
1386       print qq|<input class=submit type=submit name=action value="|
1387         . $locale->text('Update') . qq|">
1388                  <input class=submit type=submit name=action value="|
1389         . $locale->text('Post') . qq|">|;
1390     }
1391   }
1392
1393   if ($form->{menubar}) {
1394     require "$form->{path}/menu.pl";
1395     &menubar;
1396   }
1397
1398   print "
1399   </form>
1400
1401 </body>
1402 </html>
1403 ";
1404   $lxdebug->leave_sub();
1405
1406 }
1407
1408 sub delete {
1409   $lxdebug->enter_sub();
1410
1411   $form->header;
1412
1413   print qq|
1414 <body>
1415
1416 <form method=post action=$form->{script}>
1417 |;
1418
1419   map { $form->{$_} =~ s/\"/&quot;/g } qw(reference description chart);
1420
1421   delete $form->{header};
1422
1423   foreach $key (keys %$form) {
1424     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
1425   }
1426
1427   print qq|
1428 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
1429
1430 <h4>|
1431     . $locale->text('Are you sure you want to delete Transaction')
1432     . qq| $form->{reference}</h4>
1433
1434 <input name=action class=submit type=submit value="|
1435     . $locale->text('Yes') . qq|">
1436 </form>
1437 |;
1438   $lxdebug->leave_sub();
1439
1440 }
1441
1442 sub yes {
1443   $lxdebug->enter_sub();
1444
1445   $form->redirect($locale->text('Transaction deleted!'))
1446     if (GL->delete_transaction(\%myconfig, \%$form));
1447   $form->error($locale->text('Cannot delete transaction!'));
1448   $lxdebug->leave_sub();
1449
1450 }
1451
1452 sub post {
1453   $lxdebug->enter_sub();
1454
1455   # check if there is something in reference and date
1456   $form->isblank("reference",   $locale->text('Reference missing!'));
1457   $form->isblank("transdate",   $locale->text('Transaction Date missing!'));
1458   $form->isblank("description", $locale->text('Description missing!'));
1459
1460   $transdate = $form->datetonum($form->{transdate}, \%myconfig);
1461   $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
1462
1463   # check project
1464   &check_project;
1465
1466   my @a         = ();
1467   my $count     = 0;
1468   my $debittax  = 0;
1469   my $credittax = 0;
1470   my @flds      =
1471     qw(accno debit credit projectnumber fx_transaction source memo tax taxchart);
1472
1473   for my $i (1 .. $form->{rowcount}) {
1474
1475     unless (($form->{"debit_$i"} eq "") && ($form->{"credit_$i"} eq "")) {
1476       for (qw(debit credit tax)) {
1477         $form->{"${_}_$i"} =
1478           $form->parse_amount(\%myconfig, $form->{"${_}_$i"});
1479       }
1480
1481       push @a, {};
1482       $debitcredit = ($form->{"debit_$i"} == 0) ? "0" : "1";
1483       $amount =
1484         ($form->{"debit_$i"} == 0)
1485         ? $form->{"credit_$i"}
1486         : $form->{"debit_$i"};
1487       $j = $#a;
1488       if (($debitcredit && $credittax) || (!$debitcredit && $debittax)) {
1489         $form->{"taxchart_$i"} = "0--";
1490         $form->{"tax_$i"}      = 0;
1491       }
1492       if (!$form->{"korrektur_$i"}) {
1493         ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
1494         if ($taxkey > 1) {
1495           if ($debitcredit) {
1496             $debittax = 1;
1497           } else {
1498             $credittax = 1;
1499           }
1500           if ($form->{taxincluded}) {
1501             $form->{"tax_$i"} = $amount / ($rate + 1) * $rate;
1502           } else {
1503             $form->{"tax_$i"} = $amount * $rate;
1504           }
1505         } else {
1506           $form->{"tax_$i"} = 0;
1507         }
1508       }
1509
1510       for (@flds) { $a[$j]->{$_} = $form->{"${_}_$i"} }
1511       $count++;
1512     }
1513   }
1514
1515   for $i (1 .. $count) {
1516     $j = $i - 1;
1517     for (@flds) { $form->{"${_}_$i"} = $a[$j]->{$_} }
1518   }
1519
1520   for $i ($count + 1 .. $form->{rowcount}) {
1521     for (@flds) { delete $form->{"${_}_$i"} }
1522   }
1523
1524   for $i (1 .. $form->{rowcount}) {
1525     $dr  = $form->{"debit_$i"};
1526     $cr  = $form->{"credit_$i"};
1527     $tax = $form->{"tax_$i"};
1528     if ($dr && $cr) {
1529       $form->error(
1530         $locale->text(
1531           'Cannot post transaction with a debit and credit entry for the same account!'
1532         ));
1533     }
1534     if ($form->{taxincluded}) {
1535       $debit    += $dr;
1536       $credit   += $cr;
1537       $taxtotal += $tax;
1538     } else {
1539       if ($dr) {
1540         $debit += $dr + $tax;
1541       }
1542       if ($cr) {
1543         $credit += $cr + $tax;
1544       }
1545     }
1546   }
1547   if (!$taxtotal) {
1548     $form->{taxincluded} = 0;
1549   }
1550
1551   # this is just for the wise guys
1552   $form->error($locale->text('Cannot post transaction for a closed period!'))
1553     if ($transdate <= $closedto);
1554   if ($form->round_amount($debit, 2) != $form->round_amount($credit, 2)) {
1555     $form->error($locale->text('Out of balance transaction!'));
1556   }
1557   if (($errno = GL->post_transaction(\%myconfig, \%$form)) <= -1) {
1558     $errno *= -1;
1559     $err[1] = $locale->text('Cannot have a value in both Debit and Credit!');
1560     $err[2] = $locale->text('Debit and credit out of balance!');
1561     $err[3] = $locale->text('Cannot post a transaction without a value!');
1562
1563     $form->error($err[$errno]);
1564   }
1565   undef($form->{callback});
1566   $form->redirect("Buchung gespeichert. Buchungsnummer = " . $form->{id});
1567   $lxdebug->leave_sub();
1568
1569 }
1570
1571 sub post_as_new {
1572   $lxdebug->enter_sub();
1573
1574   $form->{id} = 0;
1575   &add;
1576   $lxdebug->leave_sub();
1577
1578 }
1579
1580 sub storno {
1581   $lxdebug->enter_sub();
1582
1583   $form->{id}     = 0;
1584   $form->{storno} = 1;
1585   &post;
1586   $lxdebug->leave_sub();
1587
1588 }
1589