Beim Wechsel des Kunden das Konto und den Steuerschlüssel richtig vorbelegen.
[kivitendo-erp.git] / bin / mozilla / ar.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) 2001
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 # Accounts Receivables
31 #
32 #======================================================================
33
34 use POSIX qw(strftime);
35 use List::Util qw(sum first);
36
37 use SL::AR;
38 use SL::FU;
39 use SL::IS;
40 use SL::PE;
41 use SL::ReportGenerator;
42
43 # use strict;
44 #use warnings;
45
46 # imports
47 our ($cgi, $form, $lxdebug, $locale, %myconfig);
48
49 require "bin/mozilla/arap.pl";
50 require "bin/mozilla/common.pl";
51 require "bin/mozilla/drafts.pl";
52 require "bin/mozilla/reportgenerator.pl";
53
54 1;
55
56 # end of main
57
58 # this is for our long dates
59 # $locale->text('January')
60 # $locale->text('February')
61 # $locale->text('March')
62 # $locale->text('April')
63 # $locale->text('May ')
64 # $locale->text('June')
65 # $locale->text('July')
66 # $locale->text('August')
67 # $locale->text('September')
68 # $locale->text('October')
69 # $locale->text('November')
70 # $locale->text('December')
71
72 # this is for our short month
73 # $locale->text('Jan')
74 # $locale->text('Feb')
75 # $locale->text('Mar')
76 # $locale->text('Apr')
77 # $locale->text('May')
78 # $locale->text('Jun')
79 # $locale->text('Jul')
80 # $locale->text('Aug')
81 # $locale->text('Sep')
82 # $locale->text('Oct')
83 # $locale->text('Nov')
84 # $locale->text('Dec')
85
86 sub add {
87   $lxdebug->enter_sub();
88
89   $auth->assert('general_ledger');
90
91   return $lxdebug->leave_sub() if (load_draft_maybe());
92
93   # saving the history
94   if(!exists $form->{addition} && ($form->{id} ne "")) {
95     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
96         $form->{addition} = "ADDED";
97         $form->save_history($form->dbconnect(\%myconfig));
98   }
99   # /saving the history 
100   
101   $form->{title}    = "Add";
102   $form->{callback} = "ar.pl?action=add" unless $form->{callback};
103
104   AR->get_transdate(\%myconfig, $form);
105   $form->{initial_transdate} = $form->{transdate};
106   &create_links;
107   $form->{transdate} = $form->{initial_transdate};
108   &display_form;
109   $lxdebug->leave_sub();
110 }
111
112 sub edit {
113   $lxdebug->enter_sub();
114
115   $auth->assert('general_ledger');
116
117   # show history button
118   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
119   #/show hhistory button
120   $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
121   $form->{title} = "Edit";
122
123   &create_links;
124   &display_form;
125
126   $lxdebug->leave_sub();
127 }
128
129 sub display_form {
130   $lxdebug->enter_sub();
131
132   $auth->assert('general_ledger');
133
134   &form_header;
135   &form_footer;
136
137   $lxdebug->leave_sub();
138 }
139
140 sub create_links {
141   $lxdebug->enter_sub();
142
143   $auth->assert('general_ledger');
144
145   my ($duedate, $taxincluded, @curr);
146
147   $form->create_links("AR", \%myconfig, "customer");
148   $duedate = $form->{duedate};
149
150   $taxincluded = $form->{taxincluded};
151   my $id = $form->{id};
152   IS->get_customer(\%myconfig, \%$form);
153   $form->{taxincluded} = $taxincluded;
154   $form->{id} = $id;
155
156   $form->{duedate}     = $duedate if $duedate;
157   $form->{oldcustomer} = "$form->{customer}--$form->{customer_id}";
158   $form->{rowcount}    = 1;
159
160   # notes
161   $form->{notes} = $form->{intnotes} unless $form->{notes};
162
163   # currencies
164   @curr = split(/:/, $form->{currencies});
165   chomp $curr[0];
166   $form->{defaultcurrency} = $curr[0];
167
168   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
169
170   # customers
171   if (@{ $form->{all_customer} }) {
172     $form->{customer} = "$form->{customer}--$form->{customer_id}";
173     map { $form->{selectcustomer} .= "<option>$_->{name}--$_->{id}\n" }
174       (@{ $form->{all_customer} });
175   }
176
177   # departments
178   if (@{ $form->{all_departments} }) {
179     $form->{selectdepartment} = "<option>\n";
180     $form->{department}       = "$form->{department}--$form->{department_id}";
181
182     map {
183       $form->{selectdepartment} .=
184         "<option>$_->{description}--$_->{id}\n"
185     } (@{ $form->{all_departments} });
186   }
187
188   $form->{employee} = "$form->{employee}--$form->{employee_id}";
189
190   # sales staff
191   if (@{ $form->{all_employees} }) {
192     $form->{selectemployee} = "";
193     map { $form->{selectemployee} .= "<option>$_->{name}--$_->{id}\n" }
194       (@{ $form->{all_employees} });
195   }
196
197   # build the popup menus
198   $form->{taxincluded} = ($form->{id}) ? $form->{taxincluded} : "checked";
199
200   AR->setup_form($form);
201
202   $form->{locked} =
203     ($form->datetonum($form->{transdate}, \%myconfig) <=
204      $form->datetonum($form->{closedto}, \%myconfig));
205
206   $lxdebug->leave_sub();
207 }
208
209 sub form_header {
210   $lxdebug->enter_sub();
211
212   $auth->assert('general_ledger');
213
214   my ($title, $readonly, $exchangerate, $rows);
215   my ($taxincluded, $notes, $department, $customer, $employee, $amount, $project);
216   my ($jsscript, $button1, $button2, $onload);
217   my ($selectAR_amount, $selectAR_paid, $ARselected, $tax);
218   my (@column_index, %column_data);
219
220
221   $title = $form->{title};
222   $form->{title} = $locale->text("$title Accounts Receivables Transaction");
223
224   $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
225
226   # $locale->text('Add Accounts Receivables Transaction')
227   # $locale->text('Edit Accounts Receivables Transaction')
228   $form->{javascript} = qq|<script type="text/javascript">
229   <!--
230   function setTaxkey(accno, row) {
231     var taxkey = accno.options[accno.selectedIndex].value;
232     var reg = /--([0-9]*)/;
233     var found = reg.exec(taxkey);
234     var index = found[1];
235     index = parseInt(index);
236     var tax = 'taxchart_' + row;
237     for (var i = 0; i < document.getElementById(tax).options.length; ++i) {
238       var reg2 = new RegExp("^"+ index, "");
239       if (reg2.exec(document.getElementById(tax).options[i].value)) {
240         document.getElementById(tax).options[i].selected = true;
241         break;
242       }
243     }
244   };
245   //-->
246   </script>|;
247   # show history button js
248   $form->{javascript} .= qq|<script type="text/javascript" src="js/show_history.js"></script>|;
249   #/show history button js
250   $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
251   $readonly = ($form->{id}) ? "readonly" : "";
252
253   $form->{radier} =
254     ($form->current_date(\%myconfig) eq $form->{gldate}) ? 1 : 0;
255   $readonly = ($form->{radier}) ? "" : $readonly;
256
257   # set option selected
258   foreach my $item (qw(customer currency department employee)) {
259     $form->{"select$item"} =~ s/ selected//;
260     $form->{"select$item"} =~
261       s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
262   }
263
264   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'buy');
265   $form->{exchangerate} = $form->{forex} if $form->{forex};
266
267   # format amounts
268   $form->{exchangerate} =
269     $form->format_amount(\%myconfig, $form->{exchangerate});
270
271   if ($form->{exchangerate} == 0) {
272     $form->{exchangerate} = "";
273   }
274
275   $form->{creditlimit} =
276     $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
277   $form->{creditremaining} =
278     $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
279
280   $exchangerate = qq|
281 <input type=hidden name=forex value=$form->{forex}>
282 |;
283   if ($form->{currency} ne $form->{defaultcurrency}) {
284     if ($form->{forex}) {
285       $exchangerate .= qq|
286         <th align=right>| . $locale->text('Exchangerate') . qq|</th>
287         <td><input type=hidden name=exchangerate value=$form->{exchangerate}>$form->{exchangerate}</td>
288 |;
289     } else {
290       $exchangerate .= qq|
291         <th align=right>| . $locale->text('Exchangerate') . qq|</th>
292         <td><input name=exchangerate size=10 value=$form->{exchangerate}></td>
293 |;
294     }
295   }
296
297   $taxincluded = qq|
298               <tr>
299                 <td align=right><input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}></td>
300                 <th align=left nowrap>| . $locale->text('Tax Included') . qq|</th>
301               </tr>
302 |;
303
304   if (($rows = $form->numtextrows($form->{notes}, 50)) < 2) {
305     $rows = 2;
306   }
307   $notes =
308     qq|<textarea name=notes rows=$rows cols=50 wrap=soft>$form->{notes}</textarea>|;
309
310   $department = qq|
311               <tr>
312                 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
313                 <td colspan=3><select name=department>$form->{selectdepartment}</select>
314                 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
315                 </td>
316               </tr>
317 | if $form->{selectdepartment};
318
319   my $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
320
321   $customer = ($form->{selectcustomer}) 
322     ? qq|<select name="customer" onchange="document.getElementById('update_button').click();">$form->{selectcustomer}</select>| 
323     : qq|<input name=customer value="$form->{customer}" size=35>|;
324
325   $employee = qq|
326                 <input type=hidden name=employee value="$form->{employee}">
327 |;
328
329   if ($form->{selectemployee}) {
330     $employee = qq|
331               <tr>
332                 <th align=right nowrap>| . $locale->text('Salesperson') . qq|</th>
333                 <td  colspan=2><select name=employee>$form->{selectemployee}</select></td>
334                 <input type=hidden name=selectemployee value="$form->{selectemployee}">
335               </tr>
336 |;
337   }
338
339   my @old_project_ids = ();
340   map({ push(@old_project_ids, $form->{"project_id_$_"})
341           if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
342
343   $form->get_lists("projects"  => { "key"       => "ALL_PROJECTS",
344                                     "all"       => 0,
345                                     "old_id"    => \@old_project_ids },
346                    "charts"    => { "key"       => "ALL_CHARTS",
347                                     "transdate" => $form->{transdate} },
348                    "taxcharts" => { "key"       => "ALL_TAXCHARTS",
349                                     "module"    => "AR" },);
350
351   map({ $_->{link_split} = [ split(/:/, $_->{link}) ]; }
352       @{ $form->{ALL_CHARTS} });
353
354   my %project_labels = ();
355   my @project_values = ("");
356   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
357     push(@project_values, $item->{"id"});
358     $project_labels{$item->{"id"}} = $item->{"projectnumber"};
359   }
360
361   my (%AR_amount_labels, @AR_amount_values);
362   my (%AR_labels, @AR_values);
363   my (%AR_paid_labels, @AR_paid_values);
364   my %charts;
365   my $taxchart_init;
366
367   foreach my $item (@{ $form->{ALL_CHARTS} }) {
368     if (grep({ $_ eq "AR_amount" } @{ $item->{link_split} })) {
369       $taxchart_init = $item->{tax_id} if ($taxchart_init eq "");
370       my $key = "$item->{accno}--$item->{tax_id}";
371       push(@AR_amount_values, $key);
372       $AR_amount_labels{$key} =
373         "$item->{accno}--$item->{description}";
374
375     } elsif (grep({ $_ eq "AR" } @{ $item->{link_split} })) {
376       push(@AR_values, $item->{accno});
377       $AR_labels{$item->{accno}} = "$item->{accno}--$item->{description}";
378
379     } elsif (grep({ $_ eq "AR_paid" } @{ $item->{link_split} })) {
380       push(@AR_paid_values, $item->{accno});
381       $AR_paid_labels{$item->{accno}} =
382         "$item->{accno}--$item->{description}";
383     }
384
385     $charts{$item->{accno}} = $item;
386   }
387
388   my %taxchart_labels = ();
389   my @taxchart_values = ();
390   my %taxcharts = ();
391   foreach my $item (@{ $form->{ALL_TAXCHARTS} }) {
392     my $key = "$item->{id}--$item->{rate}";
393     $taxchart_init = $key if ($taxchart_init eq $item->{id});
394     push(@taxchart_values, $key);
395     $taxchart_labels{$key} =
396       "$item->{taxdescription} " . ($item->{rate} * 100) . ' %';
397     $taxcharts{$item->{id}} = $item;
398   }
399
400   $form->{fokus} = "arledger.customer";
401
402   # use JavaScript Calendar or not
403   $form->{jsscript} = 1;
404   $jsscript = "";
405   if ($form->{jsscript}) {
406
407     # with JavaScript Calendar
408     $button1 = qq|
409        <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\"></td>
410        <td><input type=button name=transdate id="trigger1" value=|
411       . $locale->text('button') . qq|></td>
412        |;
413     $button2 = qq|
414        <td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\"></td>
415        <td><input type=button name=duedate id="trigger2" value=|
416       . $locale->text('button') . qq|></td></td>
417      |;
418
419     #write Trigger
420     $jsscript =
421       Form->write_trigger(\%myconfig, "2", "transdate", "BL", "trigger1",
422                           "duedate", "BL", "trigger2");
423   } else {
424
425     # without JavaScript Calendar
426     $button1 =
427       qq|<td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\"></td>|;
428     $button2 =
429       qq|<td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\"></td>|;
430   }
431
432   my $follow_up_vc         =  $form->{customer};
433   $follow_up_vc            =~ s/--.*?//;
434   my $follow_up_trans_info =  "$form->{invnumber} ($follow_up_vc)";
435
436   $form->{javascript} .=
437     qq|<script type="text/javascript" src="js/common.js"></script>| .
438     qq|<script type="text/javascript" src="js/show_vc_details.js"></script>| .
439     qq|<script type="text/javascript" src="js/follow_up.js"></script>|;
440
441   $form->header;
442   $onload = qq|focus()|;
443   $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
444   $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
445   print qq|
446 <body onLoad="$onload">
447
448 <form method=post name="arledger" action=$form->{script}>
449
450 <input type=hidden name=id value=$form->{id}>
451 <input type=hidden name=sort value=$form->{sort}>
452 <input type=hidden name=closedto value=$form->{closedto}>
453 <input type=hidden name=locked value=$form->{locked}>
454 <input type=hidden name=title value="$title">
455 <input type="hidden" name="follow_up_trans_id_1" value="| . H($form->{id}) . qq|">
456 <input type="hidden" name="follow_up_trans_type_1" value="ar_transaction">
457 <input type="hidden" name="follow_up_trans_info_1" value="| . H($follow_up_trans_info) . qq|">
458 <input type="hidden" name="follow_up_rowcount" value="1">
459
460 | . ($form->{saved_message} ? qq|<p>$form->{saved_message}</p>| : "") . qq|
461
462 <table width=100%>
463   <tr class=listtop>
464     <th class=listtop>$form->{title}</th>
465   </tr>
466   <tr height="5"></tr>
467   <tr valign=top>
468     <td>
469       <table width=100%>
470         <tr valign=top>
471           <td>
472             <table>
473               <tr>
474                 <th align="right" nowrap>| . $locale->text('Customer') . qq|</th>
475                 <td colspan=3>$customer <input type="button" value="?" onclick="show_vc_details('customer')"></td>
476                 <input type=hidden name=selectcustomer value="$form->{selectcustomer}">
477                 <input type=hidden name=oldcustomer value="$form->{oldcustomer}">
478                 <input type=hidden name=customer_id value="$form->{customer_id}">
479                 <input type=hidden name=terms value=$form->{terms}>
480               </tr>
481               <tr>
482                 <td></td>
483                 <td colspan=3>
484                   <table width=100%>
485                     <tr>
486                       <th align=left nowrap>| . $locale->text('Credit Limit') . qq|</th>
487                       <td>$form->{creditlimit}</td>
488                       <th align=left nowrap>| . $locale->text('Remaining') . qq|</th>
489                       <td class="plus$n">$form->{creditremaining}</td>
490                       <input type=hidden name=creditlimit value=$form->{creditlimit}>
491                       <input type=hidden name=creditremaining value=$form->{creditremaining}>
492                     </tr>
493                   </table>
494                 </td>
495               </tr>
496               <tr>
497                 <th align=right>| . $locale->text('Currency') . qq|</th>
498                 <td><select name=currency>$form->{selectcurrency}</select></td>
499                 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
500                 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
501                 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
502                 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
503                 $exchangerate
504               </tr>
505               $department
506               $taxincluded
507             </table>
508           </td>
509           <td align=right>
510             <table>
511               $employee
512               <tr>
513                 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
514                 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
515               </tr>
516               <tr>
517                 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
518                 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
519               </tr>
520               <tr>
521                 <th align=right nowrap>| . $locale->text('Invoice Date') . qq|</th>
522                 $button1
523               </tr>
524               <tr>
525                 <th align=right nowrap>| . $locale->text('Due Date') . qq|</th>
526                 $button2
527               </tr>
528      </table>
529           </td>
530         </tr>
531       </table>
532     </td>
533   </tr>
534
535 $jsscript
536   <input type=hidden name=rowcount value=$form->{rowcount}>
537   <tr>
538       <td>
539           <table width=100%>
540            <tr class=listheading>
541           <th class=listheading style="width:15%">|
542     . $locale->text('Account') . qq|</th>
543           <th class=listheading style="width:10%">|
544     . $locale->text('Amount') . qq|</th>
545           <th class=listheading style="width:10%">|
546     . $locale->text('Tax') . qq|</th>
547           <th class=listheading style="width:5%">|
548     . $locale->text('Taxkey') . qq|</th>
549           <th class=listheading style="width:10%">|
550     . $locale->text('Project') . qq|</th>
551         </tr>
552 |;
553
554   $amount  = $locale->text('Amount');
555   $project = $locale->text('Project');
556
557   for my $i (1 .. $form->{rowcount}) {
558
559     # format amounts
560     $form->{"amount_$i"} =
561       $form->format_amount(\%myconfig, $form->{"amount_$i"}, 2);
562     $form->{"tax_$i"} = $form->format_amount(\%myconfig, $form->{"tax_$i"}, 2);
563
564     my $selected_accno_full;
565     my ($accno_row) = split(/--/, $form->{"AR_amount_$i"});
566     my $item = $charts{$accno_row};
567     $selected_accno_full = "$item->{accno}--$item->{tax_id}";
568
569     my $selected_taxchart = $form->{"taxchart_$i"};
570     my ($selected_accno, $selected_tax_id) = split(/--/, $selected_accno_full);
571     my ($previous_accno, $previous_tax_id) = split(/--/, $form->{"previous_AR_amount_$i"});
572
573     if ($previous_accno &&
574         ($previous_accno eq $selected_accno) &&
575         ($previous_tax_id ne $selected_tax_id)) {
576       my $item = $taxcharts{$selected_tax_id};
577       $selected_taxchart = "$item->{id}--$item->{rate}";
578     }
579
580     if (!$form->{"taxchart_$i"}) {
581       if ($form->{"AR_amount_$i"} =~ m/.--./) {
582         $selected_taxchart = join '--', map { ($_->{id}, $_->{rate}) } first { $_->{id} == $item->{tax_id} } @{ $form->{ALL_TAXCHARTS} };
583       } else {
584         $selected_taxchart = $taxchart_init;
585       }
586     }
587
588     $selectAR_amount =
589       NTI($cgi->popup_menu('-name' => "AR_amount_$i",
590                            '-id' => "AR_amount_$i",
591                            '-style' => 'width:400px',
592                            '-onChange' => "setTaxkey(this, $i)",
593                            '-values' => \@AR_amount_values,
594                            '-labels' => \%AR_amount_labels,
595                            '-default' => $selected_accno_full))
596       . $cgi->hidden('-name' => "previous_AR_amount_$i",
597                      '-default' => $selected_accno_full);
598
599     $tax = qq|<td>| .
600       NTI($cgi->popup_menu('-name' => "taxchart_$i",
601                            '-id' => "taxchart_$i",
602                            '-style' => 'width:200px',
603                            '-values' => \@taxchart_values,
604                            '-labels' => \%taxchart_labels,
605                            '-default' => $selected_taxchart))
606       . qq|</td>|;
607
608     my $projectnumber =
609       NTI($cgi->popup_menu('-name' => "project_id_$i",
610                            '-values' => \@project_values,
611                            '-labels' => \%project_labels,
612                            '-default' => $form->{"project_id_$i"} ));
613
614     print qq|
615         <tr>
616           <td>$selectAR_amount</td>
617           <td><input name="amount_$i" size=10 value=$form->{"amount_$i"}></td>
618           <td><input type="hidden" name="tax_$i" value="$form->{"tax_$i"}">$form->{"tax_$i"}</td>
619           $tax
620           <td>$projectnumber</td>
621         </tr>
622 |;
623     $amount  = "";
624     $project = "";
625   }
626
627   $form->{invtotal_unformatted} = $form->{invtotal};
628   $form->{invtotal} = $form->format_amount(\%myconfig, $form->{invtotal}, 2);
629
630   $ARselected =
631     NTI($cgi->popup_menu('-name' => "ARselected", '-id' => "ARselected",
632                          '-style' => 'width:400px',
633                          '-values' => \@AR_values, '-labels' => \%AR_labels,
634                          '-default' => $form->{ARselected}));
635
636   print qq|
637         <tr>
638           <td colspan=6>
639             <hr noshade>
640           </td>
641         </tr>
642         <tr>
643           <td>${ARselected}</td>
644           <th align=left>$form->{invtotal}</th>
645
646           <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
647           <input type=hidden name=oldtotalpaid value=$form->{oldtotalpaid}>
648
649           <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
650
651           <td colspan=4></td>
652
653
654         </tr>
655         </table>
656         </td>
657     </tr>
658     <tr>
659       <td>
660         <table width=100%>
661         <tr>
662           <th align=left width=1%>| . $locale->text('Notes') . qq|</th>
663           <td align=left>$notes</td>
664         </tr>
665       </table>
666     </td>
667   </tr>
668   <tr>
669     <td>
670       <table width=100%>
671         <tr class=listheading>
672           <th colspan=7 class=listheading>|
673     . $locale->text('Incoming Payments') . qq|</th>
674         </tr>
675 |;
676
677   if ($form->{currency} eq $form->{defaultcurrency}) {
678     @column_index = qw(datepaid source memo paid AR_paid paid_project_id);
679   } else {
680     @column_index = qw(datepaid source memo paid exchangerate AR_paid paid_project_id);
681   }
682
683   $column_data{datepaid}     = "<th>" . $locale->text('Date') . "</th>";
684   $column_data{paid}         = "<th>" . $locale->text('Amount') . "</th>";
685   $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
686   $column_data{AR_paid}      = "<th>" . $locale->text('Account') . "</th>";
687   $column_data{source}       = "<th>" . $locale->text('Source') . "</th>";
688   $column_data{memo}         = "<th>" . $locale->text('Memo') . "</th>"; 
689   $column_data{paid_project_id} = "<th>" . $locale->text('Project Number') . "</th>"; 
690
691   print "
692         <tr>
693 ";
694   map { print "$column_data{$_}\n" } @column_index;
695   print "
696         </tr>
697 ";
698
699   my @triggers  = ();
700   my $totalpaid = 0;
701
702   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
703   for my $i (1 .. $form->{paidaccounts}) {
704     print "
705         <tr>
706 ";
707
708     $selectAR_paid =
709       NTI($cgi->popup_menu('-name' => "AR_paid_$i",
710                            '-id' => "AR_paid_$i",
711                            '-values' => \@AR_paid_values,
712                            '-labels' => \%AR_paid_labels,
713                            '-default' => $form->{"AR_paid_$i"}));
714
715     $totalpaid += $form->{"paid_$i"};
716
717     # format amounts
718     if ($form->{"paid_$i"}) {
719       $form->{"paid_$i"} =
720         $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
721     }
722     $form->{"exchangerate_$i"} =
723       $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
724
725     if ($form->{"exchangerate_$i"} == 0) {
726       $form->{"exchangerate_$i"} = "";
727     }
728
729     $exchangerate = qq|&nbsp;|;
730     if ($form->{currency} ne $form->{defaultcurrency}) {
731       if ($form->{"forex_$i"}) {
732         $exchangerate =
733           qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
734       } else {
735         $exchangerate =
736           qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
737       }
738     }
739
740     $exchangerate .= qq|
741 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
742 |;
743
744     $column_data{paid} =
745       qq|<td align=center><input name="paid_$i" size=11 value="$form->{"paid_$i"}" onBlur=\"check_right_number_format(this)\"></td>|;
746     $column_data{AR_paid} =
747       qq|<td align=center>${selectAR_paid}</td>|;
748     $column_data{exchangerate} = qq|<td align=center>$exchangerate</td>|;
749     $column_data{datepaid}     =
750       qq|<td align=center><input name="datepaid_$i" id="datepaid_$i" size=11 value="$form->{"datepaid_$i"}" onBlur=\"check_right_date_format(this)\">
751          <input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="?"></td>|;
752     $column_data{source} =
753       qq|<td align=center><input name="source_$i" size=11 value="$form->{"source_$i"}"></td>|;
754     $column_data{memo} =
755       qq|<td align=center><input name="memo_$i" size=11 value="$form->{"memo_$i"}"></td>|;
756
757     $column_data{paid_project_id} =
758       qq|<td>|
759       . NTI($cgi->popup_menu('-name' => "paid_project_id_$i",
760                              '-values' => \@project_values,
761                              '-labels' => \%project_labels,
762                              '-default' => $form->{"paid_project_id_$i"} ))
763       . qq|</td>|;
764
765     map { print qq|$column_data{$_}\n| } @column_index;
766
767     print "
768         </tr>
769 ";
770     push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i");
771   }
772
773   my $paid_missing = $form->{invtotal_unformatted} - $totalpaid;
774
775   print qq|
776         <tr>
777           <td></td>
778           <td></td>
779           <td align="center">| . $locale->text('Total') . qq|</td>
780           <td align="center">| . H($form->format_amount(\%myconfig, $totalpaid, 2)) . qq|</td>
781         </tr>
782         <tr>
783           <td></td>
784           <td></td>
785           <td align="center">| . $locale->text('Missing amount') . qq|</td>
786           <td align="center">| . H($form->format_amount(\%myconfig, $paid_missing, 2)) . qq|</td>
787         </tr>
788 | . $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) .
789     qq|
790 <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
791
792       </table>
793     </td>
794   </tr>
795   <tr>
796     <td><hr size=3 noshade></td>
797   </tr>
798 </table>
799 |;
800
801   $lxdebug->leave_sub();
802 }
803
804 sub form_footer {
805   $lxdebug->enter_sub();
806
807   $auth->assert('general_ledger');
808
809   my ($transdate, $closedto);
810
811   my $follow_ups_block;
812   if ($form->{id}) {
813     my $follow_ups = FU->follow_ups('trans_id' => $form->{id});
814
815     if (@{ $follow_ups} ) {
816       my $num_due       = sum map { $_->{due} * 1 } @{ $follow_ups };
817       $follow_ups_block = qq|<p>| . $locale->text("There are #1 unfinished follow-ups of which #2 are due.", scalar @{ $follow_ups }, $num_due) . qq|</p>|;
818     }
819   }
820
821   print qq|
822
823 $follow_ups_block
824
825 <input name=gldate type=hidden value="| . Q($form->{gldate}) . qq|">
826
827 <input name=callback type=hidden value="$form->{callback}">
828 |
829 . $cgi->hidden('-name' => 'draft_id', '-default' => [$form->{draft_id}])
830 . $cgi->hidden('-name' => 'draft_description', '-default' => [$form->{draft_description}])
831 . qq|
832
833 <br>
834 |;
835
836   if (!$form->{id} && $form->{draft_id}) {
837     print(NTI($cgi->checkbox('-name' => 'remove_draft', '-id' => 'remove_draft',
838                              '-value' => 1, '-checked' => $form->{remove_draft},
839                              '-label' => '')) .
840           qq|&nbsp;<label for="remove_draft">| .
841           $locale->text("Remove draft when posting") .
842           qq|</label><br>|);
843   }
844
845   $transdate = $form->datetonum($form->{transdate}, \%myconfig);
846   $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
847
848   print qq|<input class="submit" type="submit" name="action" id="update_button" value="| . $locale->text('Update') . qq|">\n|;
849
850   # ToDO: - insert a global check for stornos, so that a storno is only possible a limited time after saving it
851   print qq| <input class=submit type=submit name=action value="| . $locale->text('Storno') . qq|"> |
852     if ($form->{id} && !IS->has_storno(\%myconfig, $form, 'ar') && !IS->is_storno(\%myconfig, $form, 'ar') && (($total_paid == 0) || ($total_paid eq "")));
853
854   if ($form->{id}) {
855     if ($form->{radier}) {
856       print qq|
857         <input class=submit type=submit name=action value="| . $locale->text('Post') .            qq|">
858         <input class=submit type=submit name=action value="| . $locale->text('Delete') .          qq|"> |;
859     }
860     if ($transdate > $closedto) {
861       print qq|
862         <input class=submit type=submit name=action value="| . $locale->text('Use As Template') . qq|"> |;
863     }
864     print qq|
865         <input class=submit type=submit name=action value="| . $locale->text('Post Payment') .    qq|">
866         <input type="button" class="submit" onclick="follow_up_window()" value="|
867       . $locale->text('Follow-Up')
868       . qq|"> |;
869
870   } else {
871     if ($transdate > $closedto) {
872       print qq| <input class=submit type=submit name=action value="| . $locale->text('Post') .     qq|"> | .
873         NTI($cgi->submit('-name' => 'action', '-value' => $locale->text('Save draft'), '-class' => 'submit'));
874     }
875   }
876
877   if ($form->{menubar}) {
878     require "bin/mozilla/menu.pl";
879     &menubar;
880   }
881   # button for saving history
882   if($form->{id} ne "") {
883     print qq| <input type=button class=submit onclick=set_history_window($form->{id}); name=history id=history value=| . $locale->text('history') . qq|> |;
884   }
885   # /button for saving history
886   # mark_as_paid button 
887   if($form->{id} ne "") {  
888     print qq|<input type="submit" class="submit" name="action" value="| 
889           . $locale->text('mark as paid') . qq|">|;
890   }
891   # /mark_as_paid button
892
893   print "
894 </form>
895
896 </body>
897 </html>
898 ";
899
900   $lxdebug->leave_sub();
901 }
902
903 sub mark_as_paid {
904   $lxdebug->enter_sub();
905
906   $auth->assert('general_ledger');
907
908   &mark_as_paid_common(\%myconfig,"ar");  
909
910   $lxdebug->leave_sub();
911 }
912
913 sub update {
914   $lxdebug->enter_sub();
915
916   $auth->assert('general_ledger');
917
918   my $display = shift;
919
920   my ($totaltax, $exchangerate, $totalpaid);
921
922   $form->{invtotal} = 0;
923
924   delete @{ $form }{ grep { m/^tax_\d+$/ } keys %{ $form } };
925
926   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
927     qw(exchangerate creditlimit creditremaining);
928
929   my @flds  = qw(amount AR_amount projectnumber oldprojectnumber project_id);
930   my $count = 0;
931   my @a     = ();
932
933   for my $i (1 .. $form->{rowcount}) {
934     $form->{"amount_$i"} = $form->parse_amount(\%myconfig, $form->{"amount_$i"});
935     $form->{"tax_$i"} = $form->parse_amount(\%myconfig, $form->{"tax_$i"});
936     if ($form->{"amount_$i"}) {
937       push @a, {};
938       my $j = $#a;
939       my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
940       if ($taxkey > 1) {
941         if ($form->{taxincluded}) {
942           $form->{"tax_$i"} = $form->{"amount_$i"} / ($rate + 1) * $rate;
943         } else {
944           $form->{"tax_$i"} = $form->{"amount_$i"} * $rate;
945         }
946       } else {
947         $form->{"tax_$i"} = 0;
948       }
949       $form->{"tax_$i"} = $form->round_amount($form->{"tax_$i"}, 2);
950
951       $totaltax += $form->{"tax_$i"};
952       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
953       $count++;
954     }
955   }
956
957   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
958   $form->{rowcount} = $count + 1;
959   map { $form->{invtotal} += $form->{"amount_$_"} } (1 .. $form->{rowcount});
960
961   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'buy');
962   $form->{exchangerate} = $form->{forex} if $form->{forex};
963
964   $form->{invdate} = $form->{transdate};
965
966   $form->{invdate} = $form->{transdate};
967
968   my %saved_variables = map +( $_ => $form->{$_} ), qw(AR AR_amount_1 taxchart_1);
969
970   &check_name("customer");
971
972   $form->{AR} = $saved_variables{AR};
973   if ($saved_variables{AR_amount_1} =~ m/.--./) {
974     map { $form->{$_} = $saved_variables{$_} } qw(AR_amount_1 taxchart_1);
975   } else {
976     delete $form->{taxchart_1};
977   }
978
979   $form->{invtotal} =
980     ($form->{taxincluded}) ? $form->{invtotal} : $form->{invtotal} + $totaltax;
981
982   for my $i (1 .. $form->{paidaccounts}) {
983     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
984       map {
985         $form->{"${_}_$i"} =
986           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
987       } qw(paid exchangerate);
988
989       $totalpaid += $form->{"paid_$i"};
990
991       $form->{"forex_$i"}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
992       $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
993     }
994   }
995
996   $form->{creditremaining} -=
997     ($form->{invtotal} - $totalpaid + $form->{oldtotalpaid} -
998      $form->{oldinvtotal});
999   $form->{oldinvtotal}  = $form->{invtotal};
1000   $form->{oldtotalpaid} = $totalpaid;
1001
1002   &display_form;
1003
1004   $lxdebug->leave_sub();
1005 }
1006
1007 #
1008 # ToDO: fix $closedto and $invdate
1009 #
1010 sub post_payment {
1011   $lxdebug->enter_sub();
1012
1013   $auth->assert('general_ledger');
1014
1015   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
1016
1017   for my $i (1 .. $form->{paidaccounts}) {
1018
1019     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
1020       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1021
1022       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1023
1024       $form->error($locale->text('Cannot post payment for a closed period!')) if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
1025
1026       if ($form->{currency} ne $form->{defaultcurrency}) {
1027 #        $form->{"exchangerate_$i"} = $form->{exchangerate} if ($invdate == $datepaid);
1028         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
1029       }
1030     }
1031   }
1032
1033   ($form->{AR})      = split /--/, $form->{AR};
1034   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
1035   $form->redirect($locale->text('Payment posted!')) if (AR->post_payment(\%myconfig, \%$form));
1036   $form->error($locale->text('Cannot post payment!'));
1037
1038   $lxdebug->leave_sub();
1039 }
1040
1041 sub _post {
1042
1043   $auth->assert('general_ledger');
1044
1045   # inline post
1046   post(1);
1047 }
1048
1049 sub post {
1050   $lxdebug->enter_sub();
1051
1052   $auth->assert('general_ledger');
1053
1054   my ($inline) = @_;
1055
1056   my ($datepaid);
1057
1058   # check if there is an invoice number, invoice and due date
1059   $form->isblank("transdate", $locale->text('Invoice Date missing!'));
1060   $form->isblank("duedate",   $locale->text('Due Date missing!'));
1061   $form->isblank("customer",  $locale->text('Customer missing!'));
1062
1063   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
1064   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
1065   $form->error($locale->text('Cannot post transaction for a closed period!')) if ($form->date_closed($form->{"transdate"}, \%myconfig));
1066
1067   $form->error($locale->text('Zero amount posting!')) 
1068     unless grep $_*1, map $form->parse_amount(\%myconfig, $form->{"amount_$_"}), 1..$form->{rowcount};
1069
1070   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1071     if ($form->{currency} ne $form->{defaultcurrency});
1072
1073   delete($form->{AR});
1074
1075   for my $i (1 .. $form->{paidaccounts}) {
1076     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
1077       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1078
1079       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1080
1081       $form->error($locale->text('Cannot post payment for a closed period!'))
1082         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
1083
1084       if ($form->{currency} ne $form->{defaultcurrency}) {
1085         $form->{"exchangerate_$i"} = $form->{exchangerate} if ($transdate == $datepaid);
1086         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
1087       }
1088     }
1089   }
1090
1091   # if oldcustomer ne customer redo form
1092   my ($customer) = split /--/, $form->{customer};
1093   if ($form->{oldcustomer} ne "$customer--$form->{customer_id}") {
1094     update();
1095     exit;
1096   }
1097
1098   $form->{AR}{receivables} = $form->{ARselected};
1099   $form->{storno}          = 0;
1100
1101   $lxdebug->message(0, $form->{amount});
1102   $form->{id} = 0 if $form->{postasnew};
1103   $form->error($locale->text('Cannot post transaction!')) unless AR->post_transaction(\%myconfig, \%$form);
1104
1105   # saving the history
1106   if(!exists $form->{addition} && $form->{id} ne "") {
1107     $form->{snumbers} = "invnumber_$form->{invnumber}";
1108     $form->{addition} = "POSTED";
1109     $form->save_history($form->dbconnect(\%myconfig));
1110   }
1111   # /saving the history 
1112   remove_draft() if $form->{remove_draft};
1113
1114   $form->redirect($locale->text('Transaction posted!')) unless $inline;
1115
1116   $lxdebug->leave_sub();
1117 }
1118
1119 sub post_as_new {
1120   $lxdebug->enter_sub();
1121
1122   $auth->assert('general_ledger');
1123
1124   $form->{postasnew} = 1;
1125   # saving the history
1126   if(!exists $form->{addition} && $form->{id} ne "") {
1127     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1128         $form->{addition} = "POSTED AS NEW";
1129         $form->save_history($form->dbconnect(\%myconfig));
1130   }
1131   # /saving the history 
1132   &post;
1133
1134   $lxdebug->leave_sub();
1135 }
1136
1137 sub use_as_template {
1138   $lxdebug->enter_sub();
1139
1140   $auth->assert('general_ledger');
1141
1142   map { delete $form->{$_} } qw(printed emailed queued invnumber invdate deliverydate id datepaid_1 source_1 memo_1 paid_1 exchangerate_1 AP_paid_1 storno);
1143   $form->{paidaccounts} = 1;
1144   $form->{rowcount}--;
1145   $form->{invdate} = $form->current_date(\%myconfig);
1146   &update;
1147
1148   $lxdebug->leave_sub();
1149 }
1150
1151 sub delete {
1152   $lxdebug->enter_sub();
1153
1154   $auth->assert('general_ledger');
1155
1156   $form->{title} = $locale->text('Confirm!');
1157
1158   $form->header;
1159
1160   delete $form->{header};
1161
1162   print qq|
1163 <body>
1164
1165 <form method=post action=$form->{script}>
1166 |;
1167
1168   foreach my $key (keys %$form) {
1169     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
1170     $form->{$key} =~ s/\"/&quot;/g;
1171     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
1172   }
1173
1174   print qq|
1175 <h2 class=confirm>$form->{title}</h2>
1176
1177 <h4>|
1178     . $locale->text('Are you sure you want to delete Transaction')
1179     . qq| $form->{invnumber}</h4>
1180
1181 <input name=action class=submit type=submit value="|
1182     . $locale->text('Yes') . qq|">
1183 </form>
1184
1185 </body>
1186 </html>
1187 |;
1188
1189   $lxdebug->leave_sub();
1190 }
1191
1192 sub yes {
1193   $lxdebug->enter_sub();
1194
1195   $auth->assert('general_ledger');
1196
1197   if (AR->delete_transaction(\%myconfig, \%$form)) {
1198     # saving the history
1199     if(!exists $form->{addition}) {
1200       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1201           $form->{addition} = "DELETED";
1202           $form->save_history($form->dbconnect(\%myconfig));
1203     }
1204     # /saving the history 
1205     $form->redirect($locale->text('Transaction deleted!'));
1206   }
1207   $form->error($locale->text('Cannot delete transaction!'));
1208
1209   $lxdebug->leave_sub();
1210 }
1211
1212 sub search {
1213   $lxdebug->enter_sub();
1214
1215   $auth->assert('general_ledger | invoice_edit');
1216
1217   my ($customer, $department);
1218   my ($jsscript, $button1, $button2, $onload);
1219
1220   # setup customer selection
1221   $form->all_vc(\%myconfig, "customer", "AR");
1222
1223   if (@{ $form->{all_customer} }) {
1224     map { $customer .= "<option>$_->{name}--$_->{id}\n" }
1225       @{ $form->{all_customer} };
1226     $customer = qq|<select name=customer><option>\n$customer</select>|;
1227   } else {
1228     $customer = qq|<input name=customer size=35>|;
1229   }
1230
1231   # departments
1232   if (@{ $form->{all_departments} }) {
1233     $form->{selectdepartment} = "<option>\n";
1234
1235     map {
1236       $form->{selectdepartment} .=
1237         "<option>$_->{description}--$_->{id}\n"
1238     } (@{ $form->{all_departments} });
1239   }
1240
1241   $department = qq|
1242         <tr>
1243           <th align=right nowrap>| . $locale->text('Department') . qq|</th>
1244           <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
1245         </tr>
1246 | if $form->{selectdepartment};
1247
1248   $form->{title} = $locale->text('AR Transactions');
1249   
1250   $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
1251   
1252   # use JavaScript Calendar or not
1253   $form->{jsscript} = 1;
1254   $jsscript = "";
1255   if ($form->{jsscript}) {
1256
1257     # with JavaScript Calendar
1258     $button1 = qq|
1259        <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">
1260        <input type=button name=transdatefrom id="trigger1" value=|
1261       . $locale->text('button') . qq|></td>
1262       |;
1263     $button2 = qq|
1264        <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">
1265        <input type=button name=transdateto name=transdateto id="trigger2" value=|
1266       . $locale->text('button') . qq|></td>
1267      |;
1268
1269     #write Trigger
1270     $jsscript =
1271       Form->write_trigger(\%myconfig, "2", "transdatefrom", "BR", "trigger1",
1272                           "transdateto", "BL", "trigger2");
1273   } else {
1274
1275     # without JavaScript Calendar
1276     $button1 = qq|
1277                               <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\"></td>|;
1278     $button2 = qq|
1279                               <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\"></td>|;
1280   }
1281
1282   $form->get_lists("projects" => { "key" => "ALL_PROJECTS",
1283                                    "all" => 1 });
1284
1285   my %labels = ();
1286   my @values = ("");
1287   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
1288     push(@values, $item->{"id"});
1289     $labels{$item->{"id"}} = $item->{"projectnumber"};
1290   }
1291   my $projectnumber =
1292     NTI($cgi->popup_menu('-name' => 'project_id', '-values' => \@values,
1293                          '-labels' => \%labels));
1294
1295   $form->{fokus} = "search.customer";
1296   $form->header;
1297   $onload = qq|focus()|;
1298   $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
1299   $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
1300   print qq|
1301 <body onLoad="$onload">
1302
1303 <form method=post name="search" action=$form->{script}>
1304
1305 <table width=100%>
1306   <tr><th class=listtop>$form->{title}</th></tr>
1307   <tr height="5"></tr>
1308   <tr>
1309     <td>
1310       <table>
1311         <tr>
1312           <th align=right>| . $locale->text('Customer') . qq|</th>
1313           <td colspan=3>$customer</td>
1314         </tr>
1315         $department
1316         <tr>
1317           <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
1318           <td colspan=3><input name=invnumber size=20></td>
1319         </tr>
1320         <tr>
1321           <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
1322           <td colspan=3><input name=ordnumber size=20></td>
1323         </tr>
1324        <tr>
1325          <th align=right nowrap>| . $locale->text('Transaction description') . qq|</th>
1326          <td colspan=3><input name=transaction_description size=40></td>
1327        </tr>
1328         <tr>
1329           <th align=right nowrap>| . $locale->text('Notes') . qq|</th>
1330           <td colspan=3><input name=notes size=40></td>
1331         </tr>
1332         <tr>
1333           <th align="right">| . $locale->text("Project Number") . qq|</th>
1334           <td colspan="3">$projectnumber</td>
1335         </tr>
1336         <tr>
1337           <th align=right nowrap>| . $locale->text('From') . qq|</th>
1338           $button1
1339           <th align=right>| . $locale->text('Bis') . qq|</th>
1340           $button2
1341         </tr>
1342         <input type=hidden name=sort value=transdate>
1343       </table>
1344     </td>
1345   </tr>
1346   <tr>
1347     <td>
1348       <table>
1349         <tr>
1350           <th align=right nowrap>| . $locale->text('Include in Report') . qq|</th>
1351           <td>
1352             <table width=100%>
1353               <tr>
1354                 <td align=right><input name=open class=checkbox type=checkbox value=Y checked></td>
1355                 <td nowrap>| . $locale->text('Open') . qq|</td>
1356                 <td align=right><input name=closed class=checkbox type=checkbox value=Y></td>
1357                 <td nowrap>| . $locale->text('Closed') . qq|</td>
1358               </tr>
1359               <tr>
1360                 <td align=right><input name="l_id" class=checkbox type=checkbox value=Y></td>
1361                 <td nowrap>| . $locale->text('ID') . qq|</td>
1362                 <td align=right><input name="l_invnumber" class=checkbox type=checkbox value=Y checked></td>
1363                 <td nowrap>| . $locale->text('Invoice Number') . qq|</td>
1364                 <td align=right><input name="l_ordnumber" class=checkbox type=checkbox value=Y></td>
1365                 <td nowrap>| . $locale->text('Order Number') . qq|</td>
1366                 <td align=right><input name="l_transdate" class=checkbox type=checkbox value=Y checked></td>
1367                 <td nowrap>| . $locale->text('Invoice Date') . qq|</td>
1368               </tr>
1369               <tr>
1370                 <td align=right><input name="l_name" class=checkbox type=checkbox value=Y checked></td>
1371                 <td nowrap>| . $locale->text('Customer') . qq|</td>
1372                 <td align=right><input name="l_netamount" class=checkbox type=checkbox value=Y></td>
1373                 <td nowrap>| . $locale->text('Amount') . qq|</td>
1374                 <td align=right><input name="l_tax" class=checkbox type=checkbox value=Y></td>
1375                 <td nowrap>| . $locale->text('Tax') . qq|</td>
1376                 <td align=right><input name="l_amount" class=checkbox type=checkbox value=Y checked></td>
1377                 <td nowrap>| . $locale->text('Total') . qq|</td>
1378               </tr>
1379               <tr>
1380                 <td align=right><input name="l_datepaid" class=checkbox type=checkbox value=Y></td>
1381                 <td nowrap>| . $locale->text('Date Paid') . qq|</td>
1382                 <td align=right><input name="l_paid" class=checkbox type=checkbox value=Y checked></td>
1383                 <td nowrap>| . $locale->text('Paid') . qq|</td>
1384                 <td align=right><input name="l_duedate" class=checkbox type=checkbox value=Y></td>
1385                 <td nowrap>| . $locale->text('Due Date') . qq|</td>
1386                 <td align=right><input name="l_due" class=checkbox type=checkbox value=Y></td>
1387                 <td nowrap>| . $locale->text('Amount Due') . qq|</td>
1388               </tr>
1389               <tr>
1390                 <td align=right><input name="l_notes" class=checkbox type=checkbox value=Y></td>
1391                 <td nowrap>| . $locale->text('Notes') . qq|</td>
1392                 <td align=right><input name="l_salesman" class=checkbox type=checkbox value=Y></td>
1393                 <td nowrap>| . $locale->text('Salesperson') . qq|</td>
1394                 <td align=right><input name="l_shippingpoint" class=checkbox type=checkbox value=Y></td>
1395                 <td nowrap>| . $locale->text('Shipping Point') . qq|</td>
1396                 <td align=right><input name="l_shipvia" class=checkbox type=checkbox value=Y></td>
1397                 <td nowrap>| . $locale->text('Ship via') . qq|</td>
1398               </tr>
1399               <tr>
1400                 <td align=right><input name="l_marge_total" class=checkbox type=checkbox value=Y></td>
1401                 <td nowrap> | . $locale->text('Ertrag') . qq|</td>
1402                 <td align=right><input name="l_marge_percent" class=checkbox type=checkbox value=Y></td>
1403                 <td nowrap> | . $locale->text('Ertrag prozentual') . qq|</td>
1404                 <td align=right><input name="l_employee" class=checkbox type=checkbox value=Y></td>
1405                 <td nowrap>| . $locale->text('Employee') . qq|</td>
1406               </tr>
1407               <tr>
1408                 <td align=right><input name="l_subtotal" class=checkbox type=checkbox value=Y></td>
1409                 <td nowrap>| . $locale->text('Subtotal') . qq|</td>
1410                 <td align=right><input name="l_globalprojectnumber" class=checkbox type=checkbox value=Y></td>
1411                 <td nowrap>| . $locale->text('Project Number') . qq|</td>
1412                 <td align=right><input name="l_transaction_description" class=checkbox type=checkbox value=Y></td>
1413                 <td nowrap>| . $locale->text('Transaction description') . qq|</td>
1414               </tr>
1415             </table>
1416           </td>
1417         </tr>
1418       </table>
1419     </td>
1420   </tr>
1421   <tr>
1422     <td><hr size=3 noshade></td>
1423   </tr>
1424 </table>
1425
1426 <input type=hidden name=nextsub value=$form->{nextsub}>
1427
1428 <br>
1429 <input class=submit type=submit name=action value="|
1430     . $locale->text('Continue') . qq|">
1431
1432 </form>
1433
1434 </body>
1435
1436 $jsscript
1437
1438 </html>
1439 |;
1440
1441   $lxdebug->leave_sub();
1442 }
1443
1444 sub create_subtotal_row {
1445   $lxdebug->enter_sub();
1446
1447   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
1448
1449   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
1450
1451   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
1452
1453   $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
1454
1455   map { $totals->{$_} = 0 } @{ $subtotal_columns };
1456
1457   $lxdebug->leave_sub();
1458
1459   return $row;
1460 }
1461
1462 sub ar_transactions {
1463   $lxdebug->enter_sub();
1464
1465   $auth->assert('general_ledger | invoice_edit');
1466
1467   my ($callback, $href, @columns);
1468
1469   $form->{customer} = $form->unescape($form->{customer});
1470   ($form->{customer}, $form->{customer_id}) = split(/--/, $form->{customer});
1471
1472   report_generator_set_default_sort('transdate', 1);
1473
1474   AR->ar_transactions(\%myconfig, \%$form);
1475
1476   $form->{title} = $locale->text('AR Transactions');
1477
1478   my $report = SL::ReportGenerator->new(\%myconfig, $form);
1479
1480   @columns =
1481     qw(transdate id type invnumber ordnumber name netamount tax amount paid
1482        datepaid due duedate transaction_description notes salesman employee shippingpoint shipvia
1483        marge_total marge_percent globalprojectnumber);
1484
1485   my @hidden_variables = map { "l_${_}" } @columns;
1486   push @hidden_variables, "l_subtotal", qw(open closed customer invnumber ordnumber transaction_description notes project_id transdatefrom transdateto);
1487
1488   $href = build_std_url('action=ar_transactions', grep { $form->{$_} } @hidden_variables);
1489
1490   my %column_defs = (
1491     'transdate'               => { 'text' => $locale->text('Date'), },
1492     'id'                      => { 'text' => $locale->text('ID'), },
1493     'type'                    => { 'text' => $locale->text('Type'), },
1494     'invnumber'               => { 'text' => $locale->text('Invoice'), },
1495     'ordnumber'               => { 'text' => $locale->text('Order'), },
1496     'name'                    => { 'text' => $locale->text('Customer'), },
1497     'netamount'               => { 'text' => $locale->text('Amount'), },
1498     'tax'                     => { 'text' => $locale->text('Tax'), },
1499     'amount'                  => { 'text' => $locale->text('Total'), },
1500     'paid'                    => { 'text' => $locale->text('Paid'), },
1501     'datepaid'                => { 'text' => $locale->text('Date Paid'), },
1502     'due'                     => { 'text' => $locale->text('Amount Due'), },
1503     'duedate'                 => { 'text' => $locale->text('Due Date'), },
1504     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
1505     'notes'                   => { 'text' => $locale->text('Notes'), },
1506     'salesman'                => { 'text' => $locale->text('Salesperson'), },
1507     'employee'                => { 'text' => $locale->text('Employee'), },
1508     'shippingpoint'           => { 'text' => $locale->text('Shipping Point'), },
1509     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
1510     'globalprojectnumber'     => { 'text' => $locale->text('Project Number'), },
1511     'marge_total'             => { 'text' => $locale->text('Ertrag'), },
1512     'marge_percent'           => { 'text' => $locale->text('Ertrag prozentual'), },
1513   );
1514
1515   foreach my $name (qw(id transdate duedate invnumber ordnumber name datepaid employee shippingpoint shipvia transaction_description)) {
1516     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
1517     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
1518   }
1519
1520   my %column_alignment = map { $_ => 'right' } qw(netamount tax amount paid due);
1521
1522   $form->{"l_type"} = "Y";
1523   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
1524
1525   $report->set_columns(%column_defs);
1526   $report->set_column_order(@columns);
1527
1528   $report->set_export_options('ar_transactions', @hidden_variables, qw(sort sortdir));
1529
1530   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
1531
1532   my @options;
1533   if ($form->{customer}) {
1534     push @options, $locale->text('Customer') . " : $form->{customer}";
1535   }
1536   if ($form->{department}) {
1537     my ($department) = split /--/, $form->{department};
1538     push @options, $locale->text('Department') . " : $department";
1539   }
1540   if ($form->{invnumber}) {
1541     push @options, $locale->text('Invoice Number') . " : $form->{invnumber}";
1542   }
1543   if ($form->{ordnumber}) {
1544     push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
1545   }
1546   if ($form->{notes}) {
1547     push @options, $locale->text('Notes') . " : $form->{notes}";
1548   }
1549   if ($form->{transaction_description}) {
1550     push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
1551   }
1552   if ($form->{transdatefrom}) {
1553     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
1554   }
1555   if ($form->{transdateto}) {
1556     push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
1557   }
1558   if ($form->{open}) {
1559     push @options, $locale->text('Open');
1560   }
1561   if ($form->{closed}) {
1562     push @options, $locale->text('Closed');
1563   }
1564
1565   $report->set_options('top_info_text'        => join("\n", @options),
1566                        'raw_bottom_info_text' => $form->parse_html_template('ar/ar_transactions_bottom'),
1567                        'output_format'        => 'HTML',
1568                        'title'                => $form->{title},
1569                        'attachment_basename'  => $locale->text('invoice_list') . strftime('_%Y%m%d', localtime time),
1570     );
1571   $report->set_options_from_form();
1572
1573   # add sort and escape callback, this one we use for the add sub
1574   $form->{callback} = $href .= "&sort=$form->{sort}";
1575
1576   # escape callback for href
1577   $callback = $form->escape($href);
1578
1579   my @subtotal_columns = qw(netamount amount paid due marge_total marge_percent);
1580
1581   my %totals    = map { $_ => 0 } @subtotal_columns;
1582   my %subtotals = map { $_ => 0 } @subtotal_columns;
1583
1584   my $idx = 0;
1585
1586   foreach my $ar (@{ $form->{AR} }) {
1587     $ar->{tax} = $ar->{amount} - $ar->{netamount};
1588     $ar->{due} = $ar->{amount} - $ar->{paid};
1589
1590     map { $subtotals{$_} += $ar->{$_};
1591           $totals{$_}    += $ar->{$_} } @subtotal_columns;
1592
1593     $subtotals{marge_percent} = $subtotals{netamount} ? ($subtotals{marge_total} * 100 / $subtotals{netamount}) : 0;
1594     $totals{marge_percent}    = $totals{netamount}    ? ($totals{marge_total}    * 100 / $totals{netamount}   ) : 0;
1595
1596     map { $ar->{$_} = $form->format_amount(\%myconfig, $ar->{$_}, 2) } qw(netamount tax amount paid due marge_total marge_percent);
1597
1598     my $is_storno  = $ar->{storno} &&  $ar->{storno_id};
1599     my $has_storno = $ar->{storno} && !$ar->{storno_id};
1600
1601     $ar->{type} =
1602       $has_storno       ? $locale->text("Invoice with Storno (abbreviation)") :
1603       $is_storno        ? $locale->text("Storno (one letter abbreviation)") :
1604       $ar->{amount} < 0 ? $locale->text("Credit note (one letter abbreviation)") :
1605       $ar->{invoice}    ? $locale->text("Invoice (one letter abbreviation)") :
1606                           $locale->text("AR Transaction (abbreviation)");
1607
1608     my $row = { };
1609
1610     foreach my $column (@columns) {
1611       $row->{$column} = {
1612         'data'  => $ar->{$column},
1613         'align' => $column_alignment{$column},
1614       };
1615     }
1616
1617     $row->{invnumber}->{link} = build_std_url("script=" . ($ar->{invoice} ? 'is.pl' : 'ar.pl'), 'action=edit')
1618       . "&id=" . E($ar->{id}) . "&callback=${callback}";
1619
1620     my $row_set = [ $row ];
1621
1622     if (($form->{l_subtotal} eq 'Y')
1623         && (($idx == (scalar @{ $form->{AR} } - 1))
1624             || ($ar->{ $form->{sort} } ne $form->{AR}->[$idx + 1]->{ $form->{sort} }))) {
1625       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
1626     }
1627
1628     $report->add_data($row_set);
1629
1630     $idx++;
1631   }
1632
1633   $report->add_separator();
1634   $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
1635
1636   $report->generate_with_headers();
1637
1638   $lxdebug->leave_sub();
1639 }
1640
1641 sub storno {
1642   $lxdebug->enter_sub();
1643
1644   $auth->assert('general_ledger');
1645
1646   # don't cancel cancelled transactions
1647   if (IS->has_storno(\%myconfig, $form, 'ar')) {
1648     $form->{title} = $locale->text("Cancel Accounts Receivables Transaction");
1649     $form->error($locale->text("Transaction has already been cancelled!"));
1650   }
1651
1652   AR->storno($form, \%myconfig, $form->{id});
1653
1654   # saving the history
1655   if(!exists $form->{addition} && $form->{id} ne "") {
1656     $form->{snumbers} = "ordnumber_$form->{ordnumber}";
1657     $form->{addition} = "STORNO";
1658     $form->save_history($form->dbconnect(\%myconfig));
1659   }
1660   # /saving the history 
1661
1662   $form->redirect(sprintf $locale->text("Transaction %d cancelled."), $form->{storno_id}); 
1663
1664   $lxdebug->leave_sub();
1665 }