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