1 #=====================================================================
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
7 #=====================================================================
8 # SQL-Ledger Accounting
11 # Author: Dieter Simader
12 # Email: dsimader@sql-ledger.org
13 # Web: http://www.sql-ledger.org
16 # This program is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by
18 # the Free Software Foundation; either version 2 of the License, or
19 # (at your option) any later version.
21 # This program is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 # GNU General Public License for more details.
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #======================================================================
30 # Accounts Receivables
32 #======================================================================
34 use POSIX qw(strftime);
35 use List::Util qw(sum first);
41 use SL::ReportGenerator;
43 require "bin/mozilla/arap.pl";
44 require "bin/mozilla/common.pl";
45 require "bin/mozilla/drafts.pl";
46 require "bin/mozilla/reportgenerator.pl";
51 # this is for our long dates
52 # $locale->text('January')
53 # $locale->text('February')
54 # $locale->text('March')
55 # $locale->text('April')
56 # $locale->text('May ')
57 # $locale->text('June')
58 # $locale->text('July')
59 # $locale->text('August')
60 # $locale->text('September')
61 # $locale->text('October')
62 # $locale->text('November')
63 # $locale->text('December')
65 # this is for our short month
66 # $locale->text('Jan')
67 # $locale->text('Feb')
68 # $locale->text('Mar')
69 # $locale->text('Apr')
70 # $locale->text('May')
71 # $locale->text('Jun')
72 # $locale->text('Jul')
73 # $locale->text('Aug')
74 # $locale->text('Sep')
75 # $locale->text('Oct')
76 # $locale->text('Nov')
77 # $locale->text('Dec')
80 $main::lxdebug->enter_sub();
82 $main::auth->assert('general_ledger');
84 my $form = $main::form;
85 my %myconfig = %main::myconfig;
87 return $main::lxdebug->leave_sub() if (load_draft_maybe());
90 if(!exists $form->{addition} && ($form->{id} ne "")) {
91 $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
92 $form->{addition} = "ADDED";
97 $form->{title} = "Add";
98 $form->{callback} = "ar.pl?action=add&DONT_LOAD_DRAFT=1" unless $form->{callback};
100 AR->get_transdate(\%myconfig, $form);
101 $form->{initial_transdate} = $form->{transdate};
103 $form->{transdate} = $form->{initial_transdate};
105 $main::lxdebug->leave_sub();
109 $main::lxdebug->enter_sub();
111 $main::auth->assert('general_ledger');
113 my $form = $main::form;
115 # show history button
116 $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
117 #/show hhistory button
118 $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
119 $form->{title} = "Edit";
124 $main::lxdebug->leave_sub();
128 $main::lxdebug->enter_sub();
130 $main::auth->assert('general_ledger');
132 my $form = $main::form;
137 $main::lxdebug->leave_sub();
141 $main::lxdebug->enter_sub();
143 $main::auth->assert('general_ledger');
145 my $form = $main::form;
146 my %myconfig = %main::myconfig;
148 my ($duedate, $taxincluded);
150 $form->create_links("AR", \%myconfig, "customer");
151 $duedate = $form->{duedate};
153 $taxincluded = $form->{taxincluded};
154 my $id = $form->{id};
155 IS->get_customer(\%myconfig, \%$form);
156 $form->{taxincluded} = $taxincluded;
159 $form->{duedate} = $duedate if $duedate;
160 $form->{oldcustomer} = "$form->{customer}--$form->{customer_id}";
161 $form->{rowcount} = 1;
164 $form->{notes} = $form->{intnotes} unless $form->{notes};
167 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
169 map { $form->{selectcurrency} .= "<option>$_\n" } $form->get_all_currencies(\%myconfig);
172 if (@{ $form->{all_customer} || [] }) {
173 $form->{customer} = "$form->{customer}--$form->{customer_id}";
174 map { $form->{selectcustomer} .= "<option>$_->{name}--$_->{id}\n" }
175 (@{ $form->{all_customer} });
179 if (@{ $form->{all_departments} || [] }) {
180 $form->{selectdepartment} = "<option>\n";
181 $form->{department} = "$form->{department}--$form->{department_id}";
184 $form->{selectdepartment} .=
185 "<option>$_->{description}--$_->{id}\n"
186 } (@{ $form->{all_departments} || [] });
189 $form->{employee} = "$form->{employee}--$form->{employee_id}";
192 if (@{ $form->{all_employees} || [] }) {
193 $form->{selectemployee} = "";
194 map { $form->{selectemployee} .= "<option>$_->{name}--$_->{id}\n" }
195 (@{ $form->{all_employees} || [] });
198 # build the popup menus
199 $form->{taxincluded} = ($form->{id}) ? $form->{taxincluded} : "checked";
201 AR->setup_form($form);
204 ($form->datetonum($form->{transdate}, \%myconfig) <=
205 $form->datetonum($form->{closedto}, \%myconfig));
207 $main::lxdebug->leave_sub();
211 $main::lxdebug->enter_sub();
213 $main::auth->assert('general_ledger');
215 my $form = $main::form;
216 my %myconfig = %main::myconfig;
217 my $locale = $main::locale;
218 my $cgi = $main::cgi;
220 my ($title, $readonly, $exchangerate, $rows);
221 my ($taxincluded, $notes, $department, $customer, $employee, $amount, $project);
222 my ($jsscript, $button1, $button2, $onload);
223 my ($selectAR_amount, $selectAR_paid, $ARselected, $tax);
224 my (@column_index, %column_data);
227 $title = $form->{title};
228 $form->{title} = $locale->text("$title Accounts Receivables Transaction");
230 $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
232 # $locale->text('Add Accounts Receivables Transaction')
233 # $locale->text('Edit Accounts Receivables Transaction')
234 $form->{javascript} = qq|<script type="text/javascript">
236 function setTaxkey(accno, row) {
237 var taxkey = accno.options[accno.selectedIndex].value;
238 var reg = /--([0-9]*)/;
239 var found = reg.exec(taxkey);
240 var index = found[1];
241 index = parseInt(index);
242 var tax = 'taxchart_' + row;
243 for (var i = 0; i < document.getElementById(tax).options.length; ++i) {
244 var reg2 = new RegExp("^"+ index, "");
245 if (reg2.exec(document.getElementById(tax).options[i].value)) {
246 document.getElementById(tax).options[i].selected = true;
253 # show history button js
254 $form->{javascript} .= qq|<script type="text/javascript" src="js/show_history.js"></script>|;
255 #/show history button js
256 $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
257 $readonly = ($form->{id}) ? "readonly" : "";
260 ($form->current_date(\%myconfig) eq $form->{gldate}) ? 1 : 0;
261 $readonly = ($form->{radier}) ? "" : $readonly;
263 # set option selected
264 foreach my $item (qw(customer currency department employee)) {
265 $form->{"select$item"} =~ s/ selected//;
266 $form->{"select$item"} =~
267 s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
270 $form->{forex} = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'buy');
271 $form->{exchangerate} = $form->{forex} if $form->{forex};
274 $form->{exchangerate} = $form->{exchangerate} ? $form->format_amount(\%myconfig, $form->{exchangerate}) : '';
275 $form->{creditlimit} = $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
276 $form->{creditremaining} = $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
279 <input type=hidden name=forex value=$form->{forex}>
281 if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
282 if ($form->{forex}) {
284 <th align=right>| . $locale->text('Exchangerate') . qq|</th>
285 <td><input type=hidden name=exchangerate value=$form->{exchangerate}>$form->{exchangerate}</td>
289 <th align=right>| . $locale->text('Exchangerate') . qq|</th>
290 <td><input name=exchangerate size=10 value=$form->{exchangerate}></td>
297 <td align=right><input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}></td>
298 <th align=left nowrap>| . $locale->text('Tax Included') . qq|</th>
302 if (($rows = $form->numtextrows($form->{notes}, 50)) < 2) {
306 qq|<textarea name=notes rows=$rows cols=50 wrap=soft>$form->{notes}</textarea>|;
310 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
311 <td colspan=3><select name=department>$form->{selectdepartment}</select>
312 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
315 | if $form->{selectdepartment};
317 my $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
319 $customer = ($form->{selectcustomer})
320 ? qq|<select name="customer" onchange="document.getElementById('update_button').click();">$form->{selectcustomer}</select>|
321 : qq|<input name=customer value="$form->{customer}" size=35>|;
324 <input type=hidden name=employee value="$form->{employee}">
327 if ($form->{selectemployee}) {
330 <th align=right nowrap>| . $locale->text('Salesperson') . qq|</th>
331 <td colspan=2><select name=employee>$form->{selectemployee}</select></td>
332 <input type=hidden name=selectemployee value="$form->{selectemployee}">
337 my @old_project_ids = ();
338 map({ push(@old_project_ids, $form->{"project_id_$_"})
339 if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
341 $form->get_lists("projects" => { "key" => "ALL_PROJECTS",
343 "old_id" => \@old_project_ids },
344 "charts" => { "key" => "ALL_CHARTS",
345 "transdate" => $form->{transdate} },
346 "taxcharts" => { "key" => "ALL_TAXCHARTS",
347 "module" => "AR" },);
349 map({ $_->{link_split} = [ split(/:/, $_->{link}) ]; }
350 @{ $form->{ALL_CHARTS} });
352 my %project_labels = ();
353 my @project_values = ("");
354 foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
355 push(@project_values, $item->{"id"});
356 $project_labels{$item->{"id"}} = $item->{"projectnumber"};
359 my (%AR_amount_labels, @AR_amount_values);
360 my (%AR_labels, @AR_values);
361 my (%AR_paid_labels, @AR_paid_values);
365 foreach my $item (@{ $form->{ALL_CHARTS} }) {
366 if (grep({ $_ eq "AR_amount" } @{ $item->{link_split} })) {
367 $taxchart_init = $item->{tax_id} if ($taxchart_init eq "");
368 my $key = "$item->{accno}--$item->{tax_id}";
369 push(@AR_amount_values, $key);
370 $AR_amount_labels{$key} =
371 "$item->{accno}--$item->{description}";
373 } elsif (grep({ $_ eq "AR" } @{ $item->{link_split} })) {
374 push(@AR_values, $item->{accno});
375 $AR_labels{$item->{accno}} = "$item->{accno}--$item->{description}";
377 } elsif (grep({ $_ eq "AR_paid" } @{ $item->{link_split} })) {
378 push(@AR_paid_values, $item->{accno});
379 $AR_paid_labels{$item->{accno}} =
380 "$item->{accno}--$item->{description}";
383 $charts{$item->{accno}} = $item;
386 my %taxchart_labels = ();
387 my @taxchart_values = ();
389 foreach my $item (@{ $form->{ALL_TAXCHARTS} }) {
390 my $key = "$item->{id}--$item->{rate}";
391 $taxchart_init = $key if ($taxchart_init eq $item->{id});
392 push(@taxchart_values, $key);
393 $taxchart_labels{$key} =
394 "$item->{taxdescription} " . ($item->{rate} * 100) . ' %';
395 $taxcharts{$item->{id}} = $item;
398 $form->{fokus} = "arledger.customer";
400 # use JavaScript Calendar or not
401 $form->{jsscript} = 1;
403 if ($form->{jsscript}) {
405 # with JavaScript Calendar
407 <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\"></td>
408 <td><input type=button name=transdate id="trigger1" value=|
409 . $locale->text('button') . qq|></td>
412 <td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\"></td>
413 <td><input type=button name=duedate id="trigger2" value=|
414 . $locale->text('button') . qq|></td></td>
419 Form->write_trigger(\%myconfig, "2", "transdate", "BL", "trigger1",
420 "duedate", "BL", "trigger2");
423 # without JavaScript Calendar
425 qq|<td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\"></td>|;
427 qq|<td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\"></td>|;
430 my $follow_up_vc = $form->{customer};
431 $follow_up_vc =~ s/--.*?//;
432 my $follow_up_trans_info = "$form->{invnumber} ($follow_up_vc)";
434 $form->{javascript} .=
435 qq|<script type="text/javascript" src="js/common.js"></script>| .
436 qq|<script type="text/javascript" src="js/show_vc_details.js"></script>| .
437 qq|<script type="text/javascript" src="js/follow_up.js"></script>|;
440 $onload = qq|focus()|;
441 $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
442 $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
444 <body onLoad="$onload">
446 <form method=post name="arledger" action=$form->{script}>
448 <input type=hidden name=id value=$form->{id}>
449 <input type=hidden name=sort value=$form->{sort}>
450 <input type=hidden name=closedto value=$form->{closedto}>
451 <input type=hidden name=locked value=$form->{locked}>
452 <input type=hidden name=title value="$title">
453 <input type="hidden" name="follow_up_trans_id_1" value="| . H($form->{id}) . qq|">
454 <input type="hidden" name="follow_up_trans_type_1" value="ar_transaction">
455 <input type="hidden" name="follow_up_trans_info_1" value="| . H($follow_up_trans_info) . qq|">
456 <input type="hidden" name="follow_up_rowcount" value="1">
458 | . ($form->{saved_message} ? qq|<p>$form->{saved_message}</p>| : "") . qq|
462 <th class=listtop>$form->{title}</th>
472 <th align="right" nowrap>| . $locale->text('Customer') . qq|</th>
473 <td colspan=3>$customer <input type="button" value="| . $locale->text('Details (one letter abbreviation)') . qq|" onclick="show_vc_details('customer')"></td>
474 <input type=hidden name=selectcustomer value="$form->{selectcustomer}">
475 <input type=hidden name=oldcustomer value="$form->{oldcustomer}">
476 <input type=hidden name=customer_id value="$form->{customer_id}">
477 <input type=hidden name=terms value=$form->{terms}>
484 <th align=left nowrap>| . $locale->text('Credit Limit') . qq|</th>
485 <td>$form->{creditlimit}</td>
486 <th align=left nowrap>| . $locale->text('Remaining') . qq|</th>
487 <td class="plus$n">$form->{creditremaining}</td>
488 <input type=hidden name=creditlimit value=$form->{creditlimit}>
489 <input type=hidden name=creditremaining value=$form->{creditremaining}>
495 <th align=right>| . $locale->text('Currency') . qq|</th>
496 <td><select name=currency>$form->{selectcurrency}</select></td>
497 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
498 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
499 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
500 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
511 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
512 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
515 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
516 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
519 <th align=right nowrap>| . $locale->text('Invoice Date') . qq|</th>
523 <th align=right nowrap>| . $locale->text('Due Date') . qq|</th>
534 <input type=hidden name=rowcount value=$form->{rowcount}>
538 <tr class=listheading>
539 <th class=listheading style="width:15%">|
540 . $locale->text('Account') . qq|</th>
541 <th class=listheading style="width:10%">|
542 . $locale->text('Amount') . qq|</th>
543 <th class=listheading style="width:10%">|
544 . $locale->text('Tax') . qq|</th>
545 <th class=listheading style="width:5%">|
546 . $locale->text('Taxkey') . qq|</th>
547 <th class=listheading style="width:10%">|
548 . $locale->text('Project') . qq|</th>
552 $amount = $locale->text('Amount');
553 $project = $locale->text('Project');
555 for my $i (1 .. $form->{rowcount}) {
558 $form->{"amount_$i"} =
559 $form->format_amount(\%myconfig, $form->{"amount_$i"}, 2);
560 $form->{"tax_$i"} = $form->format_amount(\%myconfig, $form->{"tax_$i"}, 2);
562 my $selected_accno_full;
563 my ($accno_row) = split(/--/, $form->{"AR_amount_$i"});
564 my $item = $charts{$accno_row};
565 $selected_accno_full = "$item->{accno}--$item->{tax_id}";
567 my $selected_taxchart = $form->{"taxchart_$i"};
568 my ($selected_accno, $selected_tax_id) = split(/--/, $selected_accno_full);
569 my ($previous_accno, $previous_tax_id) = split(/--/, $form->{"previous_AR_amount_$i"});
571 if ($previous_accno &&
572 ($previous_accno eq $selected_accno) &&
573 ($previous_tax_id ne $selected_tax_id)) {
574 my $item = $taxcharts{$selected_tax_id};
575 $selected_taxchart = "$item->{id}--$item->{rate}";
578 if (!$form->{"taxchart_$i"}) {
579 if ($form->{"AR_amount_$i"} =~ m/.--./) {
580 $selected_taxchart = join '--', map { ($_->{id}, $_->{rate}) } first { $_->{id} == $item->{tax_id} } @{ $form->{ALL_TAXCHARTS} };
582 $selected_taxchart = $taxchart_init;
587 NTI($cgi->popup_menu('-name' => "AR_amount_$i",
588 '-id' => "AR_amount_$i",
589 '-style' => 'width:400px',
590 '-onChange' => "setTaxkey(this, $i)",
591 '-values' => \@AR_amount_values,
592 '-labels' => \%AR_amount_labels,
593 '-default' => $selected_accno_full))
594 . $cgi->hidden('-name' => "previous_AR_amount_$i",
595 '-default' => $selected_accno_full);
598 NTI($cgi->popup_menu('-name' => "taxchart_$i",
599 '-id' => "taxchart_$i",
600 '-style' => 'width:200px',
601 '-values' => \@taxchart_values,
602 '-labels' => \%taxchart_labels,
603 '-default' => $selected_taxchart))
607 NTI($cgi->popup_menu('-name' => "project_id_$i",
608 '-values' => \@project_values,
609 '-labels' => \%project_labels,
610 '-default' => $form->{"project_id_$i"} ));
614 <td>$selectAR_amount</td>
615 <td><input name="amount_$i" size=10 value=$form->{"amount_$i"}></td>
616 <td><input type="hidden" name="tax_$i" value="$form->{"tax_$i"}">$form->{"tax_$i"}</td>
618 <td>$projectnumber</td>
625 $form->{invtotal_unformatted} = $form->{invtotal};
626 $form->{invtotal} = $form->format_amount(\%myconfig, $form->{invtotal}, 2);
629 NTI($cgi->popup_menu('-name' => "ARselected", '-id' => "ARselected",
630 '-style' => 'width:400px',
631 '-values' => \@AR_values, '-labels' => \%AR_labels,
632 '-default' => $form->{ARselected}));
641 <td>${ARselected}</td>
642 <th align=left>$form->{invtotal}</th>
644 <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
645 <input type=hidden name=oldtotalpaid value=$form->{oldtotalpaid}>
647 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
660 <th align=left width=1%>| . $locale->text('Notes') . qq|</th>
661 <td align=left>$notes</td>
669 <tr class=listheading>
670 <th colspan=7 class=listheading>|
671 . $locale->text('Incoming Payments') . qq|</th>
675 if ($form->{defaultcurrency} && ($form->{currency} eq $form->{defaultcurrency})) {
676 @column_index = qw(datepaid source memo paid AR_paid paid_project_id);
678 @column_index = qw(datepaid source memo paid exchangerate AR_paid paid_project_id);
681 $column_data{datepaid} = "<th>" . $locale->text('Date') . "</th>";
682 $column_data{paid} = "<th>" . $locale->text('Amount') . "</th>";
683 $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
684 $column_data{AR_paid} = "<th>" . $locale->text('Account') . "</th>";
685 $column_data{source} = "<th>" . $locale->text('Source') . "</th>";
686 $column_data{memo} = "<th>" . $locale->text('Memo') . "</th>";
687 $column_data{paid_project_id} = "<th>" . $locale->text('Project Number') . "</th>";
692 map { print "$column_data{$_}\n" } @column_index;
698 $form->{totalpaid} = 0;
700 $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
701 for my $i (1 .. $form->{paidaccounts}) {
707 NTI($cgi->popup_menu('-name' => "AR_paid_$i",
708 '-id' => "AR_paid_$i",
709 '-values' => \@AR_paid_values,
710 '-labels' => \%AR_paid_labels,
711 '-default' => $form->{"AR_paid_$i"}));
713 $form->{totalpaid} += $form->{"paid_$i"};
716 if ($form->{"paid_$i"}) {
718 $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
720 $form->{"exchangerate_$i"} =
721 $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
723 if ($form->{"exchangerate_$i"} == 0) {
724 $form->{"exchangerate_$i"} = "";
727 $exchangerate = qq| |;
728 if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
729 if ($form->{"forex_$i"}) {
731 qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
734 qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
739 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
743 qq|<td align=center><input name="paid_$i" size=11 value="$form->{"paid_$i"}" onBlur=\"check_right_number_format(this)\"></td>|;
744 $column_data{AR_paid} =
745 qq|<td align=center>${selectAR_paid}</td>|;
746 $column_data{exchangerate} = qq|<td align=center>$exchangerate</td>|;
747 $column_data{datepaid} =
748 qq|<td align=center><input name="datepaid_$i" id="datepaid_$i" size=11 value="$form->{"datepaid_$i"}" onBlur=\"check_right_date_format(this)\">
749 <input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="?"></td>|;
750 $column_data{source} =
751 qq|<td align=center><input name="source_$i" size=11 value="$form->{"source_$i"}"></td>|;
753 qq|<td align=center><input name="memo_$i" size=11 value="$form->{"memo_$i"}"></td>|;
755 $column_data{paid_project_id} =
757 . NTI($cgi->popup_menu('-name' => "paid_project_id_$i",
758 '-values' => \@project_values,
759 '-labels' => \%project_labels,
760 '-default' => $form->{"paid_project_id_$i"} ))
763 map { print qq|$column_data{$_}\n| } @column_index;
768 push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i");
771 my $paid_missing = $form->{invtotal_unformatted} - $form->{totalpaid};
777 <td align="center">| . $locale->text('Total') . qq|</td>
778 <td align="center">| . H($form->format_amount(\%myconfig, $form->{totalpaid}, 2)) . qq|</td>
783 <td align="center">| . $locale->text('Missing amount') . qq|</td>
784 <td align="center">| . H($form->format_amount(\%myconfig, $paid_missing, 2)) . qq|</td>
786 | . $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) .
788 <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
794 <td><hr size=3 noshade></td>
799 $main::lxdebug->leave_sub();
803 $main::lxdebug->enter_sub();
805 $main::auth->assert('general_ledger');
807 my $form = $main::form;
808 my %myconfig = %main::myconfig;
809 my $locale = $main::locale;
810 my $cgi = $main::cgi;
812 my ($transdate, $closedto);
814 my $follow_ups_block;
816 my $follow_ups = FU->follow_ups('trans_id' => $form->{id});
818 if (@{ $follow_ups} ) {
819 my $num_due = sum map { $_->{due} * 1 } @{ $follow_ups };
820 $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>|;
828 <input name=gldate type=hidden value="| . Q($form->{gldate}) . qq|">
830 <input name=callback type=hidden value="$form->{callback}">
832 . $cgi->hidden('-name' => 'draft_id', '-default' => [$form->{draft_id}])
833 . $cgi->hidden('-name' => 'draft_description', '-default' => [$form->{draft_description}])
839 if (!$form->{id} && $form->{draft_id}) {
840 print(NTI($cgi->checkbox('-name' => 'remove_draft', '-id' => 'remove_draft',
841 '-value' => 1, '-checked' => $form->{remove_draft},
843 qq| <label for="remove_draft">| .
844 $locale->text("Remove draft when posting") .
848 $transdate = $form->datetonum($form->{transdate}, \%myconfig);
849 $closedto = $form->datetonum($form->{closedto}, \%myconfig);
851 print qq|<input class="submit" type="submit" name="action" id="update_button" value="| . $locale->text('Update') . qq|">\n|;
853 # ToDO: - insert a global check for stornos, so that a storno is only possible a limited time after saving it
854 print qq| <input class=submit type=submit name=action value="| . $locale->text('Storno') . qq|"> |
855 if ($form->{id} && !IS->has_storno(\%myconfig, $form, 'ar') && !IS->is_storno(\%myconfig, $form, 'ar') && (($form->{totalpaid} == 0) || ($form->{totalpaid} eq "")));
858 if ($form->{radier}) {
860 <input class=submit type=submit name=action value="| . $locale->text('Post') . qq|">
861 <input class=submit type=submit name=action value="| . $locale->text('Delete') . qq|"> |;
863 if ($transdate > $closedto) {
865 <input class=submit type=submit name=action value="| . $locale->text('Use As Template') . qq|"> |;
868 <input class=submit type=submit name=action value="| . $locale->text('Post Payment') . qq|">
869 <input type="button" class="submit" onclick="follow_up_window()" value="|
870 . $locale->text('Follow-Up')
874 if ($transdate > $closedto) {
875 print qq| <input class=submit type=submit name=action value="| . $locale->text('Post') . qq|"> | .
876 NTI($cgi->submit('-name' => 'action', '-value' => $locale->text('Save draft'), '-class' => 'submit'));
880 if ($form->{menubar}) {
881 require "bin/mozilla/menu.pl";
884 # button for saving history
885 if($form->{id} ne "") {
886 print qq| <input type=button class=submit onclick=set_history_window($form->{id}); name=history id=history value=| . $locale->text('history') . qq|> |;
888 # /button for saving history
889 # mark_as_paid button
890 if($form->{id} ne "") {
891 print qq|<input type="submit" class="submit" name="action" value="|
892 . $locale->text('mark as paid') . qq|">|;
894 # /mark_as_paid button
903 $main::lxdebug->leave_sub();
907 $main::lxdebug->enter_sub();
909 $main::auth->assert('general_ledger');
911 my $form = $main::form;
912 my %myconfig = %main::myconfig;
914 &mark_as_paid_common(\%myconfig,"ar");
916 $main::lxdebug->leave_sub();
920 $main::lxdebug->enter_sub();
922 $main::auth->assert('general_ledger');
924 my $form = $main::form;
925 my %myconfig = %main::myconfig;
929 my ($totaltax, $exchangerate);
931 $form->{invtotal} = 0;
933 delete @{ $form }{ grep { m/^tax_\d+$/ } keys %{ $form } };
935 map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
936 qw(exchangerate creditlimit creditremaining);
938 my @flds = qw(amount AR_amount projectnumber oldprojectnumber project_id);
942 for my $i (1 .. $form->{rowcount}) {
943 $form->{"amount_$i"} = $form->parse_amount(\%myconfig, $form->{"amount_$i"});
944 $form->{"tax_$i"} = $form->parse_amount(\%myconfig, $form->{"tax_$i"});
945 if ($form->{"amount_$i"}) {
948 my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
950 if ($form->{taxincluded}) {
951 $form->{"tax_$i"} = $form->{"amount_$i"} / ($rate + 1) * $rate;
953 $form->{"tax_$i"} = $form->{"amount_$i"} * $rate;
956 $form->{"tax_$i"} = 0;
958 $form->{"tax_$i"} = $form->round_amount($form->{"tax_$i"}, 2);
960 $totaltax += $form->{"tax_$i"};
961 map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
966 $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
967 $form->{rowcount} = $count + 1;
968 map { $form->{invtotal} += $form->{"amount_$_"} } (1 .. $form->{rowcount});
970 $form->{forex} = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'buy');
971 $form->{exchangerate} = $form->{forex} if $form->{forex};
973 $form->{invdate} = $form->{transdate};
975 $form->{invdate} = $form->{transdate};
977 my %saved_variables = map +( $_ => $form->{$_} ), qw(AR AR_amount_1 taxchart_1 oldcustomer);
979 &check_name("customer");
981 # check_name ruft get_customer auf, oldcustomer wird überschrieben, daher wird dies vorher gemerkt
982 # get_customer holt Bemerkungen als intnotes, für Debitorenbuchungen gibt es aber nur das Feld notes
983 $form->{notes} = $form->{intnotes} if $saved_variables{oldcustomer} ne $form->{customer};
985 $form->{AR} = $saved_variables{AR};
986 if ($saved_variables{AR_amount_1} =~ m/.--./) {
987 map { $form->{$_} = $saved_variables{$_} } qw(AR_amount_1 taxchart_1);
989 delete $form->{taxchart_1};
993 ($form->{taxincluded}) ? $form->{invtotal} : $form->{invtotal} + $totaltax;
995 for my $i (1 .. $form->{paidaccounts}) {
996 if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
999 $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
1000 } qw(paid exchangerate);
1002 $form->{totalpaid} += $form->{"paid_$i"};
1004 $form->{"forex_$i"} = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
1005 $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
1009 $form->{creditremaining} -=
1010 ($form->{invtotal} - $form->{totalpaid} + $form->{oldtotalpaid} -
1011 $form->{oldinvtotal});
1012 $form->{oldinvtotal} = $form->{invtotal};
1013 $form->{oldtotalpaid} = $form->{totalpaid};
1017 $main::lxdebug->leave_sub();
1021 # ToDO: fix $closedto and $invdate
1024 $main::lxdebug->enter_sub();
1026 $main::auth->assert('general_ledger');
1028 my $form = $main::form;
1029 my %myconfig = %main::myconfig;
1030 my $locale = $main::locale;
1032 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
1034 my $invdate = $form->datetonum($form->{transdate}, \%myconfig);
1036 for my $i (1 .. $form->{paidaccounts}) {
1038 if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
1039 my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1041 $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1043 $form->error($locale->text('Cannot post payment for a closed period!')) if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
1045 if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
1046 # $form->{"exchangerate_$i"} = $form->{exchangerate} if ($invdate == $datepaid);
1047 $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
1052 ($form->{AR}) = split /--/, $form->{AR};
1053 ($form->{AR_paid}) = split /--/, $form->{AR_paid};
1054 $form->redirect($locale->text('Payment posted!')) if (AR->post_payment(\%myconfig, \%$form));
1055 $form->error($locale->text('Cannot post payment!'));
1057 $main::lxdebug->leave_sub();
1062 $main::auth->assert('general_ledger');
1064 my $form = $main::form;
1071 $main::lxdebug->enter_sub();
1073 $main::auth->assert('general_ledger');
1075 my $form = $main::form;
1076 my %myconfig = %main::myconfig;
1077 my $locale = $main::locale;
1083 # check if there is an invoice number, invoice and due date
1084 $form->isblank("transdate", $locale->text('Invoice Date missing!'));
1085 $form->isblank("duedate", $locale->text('Due Date missing!'));
1086 $form->isblank("customer", $locale->text('Customer missing!'));
1088 if ($myconfig{mandatory_departments} && !$form->{department}) {
1089 $form->{saved_message} = $::locale->text('You have to specify a department.');
1094 my $closedto = $form->datetonum($form->{closedto}, \%myconfig);
1095 my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
1096 $form->error($locale->text('Cannot post transaction for a closed period!')) if ($form->date_closed($form->{"transdate"}, \%myconfig));
1098 $form->error($locale->text('Zero amount posting!'))
1099 unless grep $_*1, map $form->parse_amount(\%myconfig, $form->{"amount_$_"}), 1..$form->{rowcount};
1101 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1102 if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency}));
1104 delete($form->{AR});
1106 for my $i (1 .. $form->{paidaccounts}) {
1107 if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
1108 $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1110 $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1112 $form->error($locale->text('Cannot post payment for a closed period!'))
1113 if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
1115 if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
1116 $form->{"exchangerate_$i"} = $form->{exchangerate} if ($transdate == $datepaid);
1117 $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
1122 # if oldcustomer ne customer redo form
1123 my ($customer) = split /--/, $form->{customer};
1124 if ($form->{oldcustomer} ne "$customer--$form->{customer_id}") {
1129 $form->{AR}{receivables} = $form->{ARselected};
1130 $form->{storno} = 0;
1132 $form->{id} = 0 if $form->{postasnew};
1133 $form->error($locale->text('Cannot post transaction!')) unless AR->post_transaction(\%myconfig, \%$form);
1135 # saving the history
1136 if(!exists $form->{addition} && $form->{id} ne "") {
1137 $form->{snumbers} = "invnumber_$form->{invnumber}";
1138 $form->{addition} = "POSTED";
1139 $form->save_history;
1141 # /saving the history
1142 remove_draft() if $form->{remove_draft};
1144 $form->redirect($locale->text('Transaction posted!')) unless $inline;
1146 $main::lxdebug->leave_sub();
1150 $main::lxdebug->enter_sub();
1152 $main::auth->assert('general_ledger');
1154 my $form = $main::form;
1155 my %myconfig = %main::myconfig;
1157 $form->{postasnew} = 1;
1158 # saving the history
1159 if(!exists $form->{addition} && $form->{id} ne "") {
1160 $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1161 $form->{addition} = "POSTED AS NEW";
1162 $form->save_history;
1164 # /saving the history
1167 $main::lxdebug->leave_sub();
1170 sub use_as_template {
1171 $main::lxdebug->enter_sub();
1173 $main::auth->assert('general_ledger');
1175 my $form = $main::form;
1176 my %myconfig = %main::myconfig;
1178 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);
1179 $form->{paidaccounts} = 1;
1180 $form->{rowcount}--;
1181 $form->{invdate} = $form->current_date(\%myconfig);
1184 $main::lxdebug->leave_sub();
1188 $main::lxdebug->enter_sub();
1190 $main::auth->assert('general_ledger');
1192 my $form = $main::form;
1193 my $locale = $main::locale;
1195 $form->{title} = $locale->text('Confirm!');
1199 delete $form->{header};
1204 <form method=post action=$form->{script}>
1207 foreach my $key (keys %$form) {
1208 next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
1209 $form->{$key} =~ s/\"/"/g;
1210 print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
1214 <h2 class=confirm>$form->{title}</h2>
1217 . $locale->text('Are you sure you want to delete Transaction')
1218 . qq| $form->{invnumber}</h4>
1220 <input name=action class=submit type=submit value="|
1221 . $locale->text('Yes') . qq|">
1228 $main::lxdebug->leave_sub();
1232 $main::lxdebug->enter_sub();
1234 $main::auth->assert('general_ledger');
1236 my $form = $main::form;
1237 my %myconfig = %main::myconfig;
1238 my $locale = $main::locale;
1240 if (AR->delete_transaction(\%myconfig, \%$form)) {
1241 # saving the history
1242 if(!exists $form->{addition}) {
1243 $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1244 $form->{addition} = "DELETED";
1245 $form->save_history;
1247 # /saving the history
1248 $form->redirect($locale->text('Transaction deleted!'));
1250 $form->error($locale->text('Cannot delete transaction!'));
1252 $main::lxdebug->leave_sub();
1256 $main::lxdebug->enter_sub();
1258 $main::auth->assert('general_ledger | invoice_edit');
1260 my $form = $main::form;
1261 my %myconfig = %main::myconfig;
1262 my $locale = $main::locale;
1263 my $cgi = $main::cgi;
1265 my ($customer, $department);
1266 my ($jsscript, $button1, $button2, $onload);
1268 # setup customer selection
1269 $form->all_vc(\%myconfig, "customer", "AR");
1271 $form->{title} = $locale->text('AR Transactions');
1272 $form->{jsscript} = 1;
1274 # Auch in Rechnungsübersicht nach Kundentyp filtern - jan
1275 $form->get_lists("projects" => { "key" => "ALL_PROJECTS", "all" => 1 },
1276 "departments" => "ALL_DEPARTMENTS",
1277 "customers" => "ALL_VC",
1278 "employees" => "ALL_EMPLOYEES",
1279 "salesmen" => "ALL_SALESMEN",
1280 "business_types" => "ALL_BUSINESS_TYPES");
1281 $form->{SHOW_BUSINESS_TYPES} = scalar @{ $form->{ALL_BUSINESS_TYPES} } > 0;
1283 # constants and subs for template
1284 $form->{jsscript} = 1;
1285 $form->{vc_keys} = sub { "$_[0]->{name}--$_[0]->{id}" };
1286 $form->{employee_labels} = sub { $_[0]->{"name"} || $_[0]->{"login"} };
1287 $form->{salesman_labels} = $form->{employee_labels};
1290 print $form->parse_html_template('ar/search', { %myconfig });
1292 $main::lxdebug->leave_sub();
1295 sub create_subtotal_row {
1296 $main::lxdebug->enter_sub();
1298 my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
1300 my $form = $main::form;
1301 my %myconfig = %main::myconfig;
1303 my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
1305 map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
1307 $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
1309 map { $totals->{$_} = 0 } @{ $subtotal_columns };
1311 $main::lxdebug->leave_sub();
1316 sub ar_transactions {
1317 $main::lxdebug->enter_sub();
1319 $main::auth->assert('general_ledger | invoice_edit');
1321 my $form = $main::form;
1322 my %myconfig = %main::myconfig;
1323 my $locale = $main::locale;
1325 my ($callback, $href, @columns);
1327 $form->{customer} = $form->unescape($form->{customer});
1328 ($form->{customer}, $form->{customer_id}) = split(/--/, $form->{customer});
1330 report_generator_set_default_sort('transdate', 1);
1332 AR->ar_transactions(\%myconfig, \%$form);
1334 $form->{title} = $locale->text('AR Transactions');
1336 my $report = SL::ReportGenerator->new(\%myconfig, $form);
1339 qw(transdate id type invnumber ordnumber name netamount tax amount paid
1340 datepaid due duedate transaction_description notes salesman employee shippingpoint shipvia
1341 marge_total marge_percent globalprojectnumber customernumber country ustid taxzone payment_terms charts customertype);
1343 my @hidden_variables = map { "l_${_}" } @columns;
1344 push @hidden_variables, "l_subtotal", qw(open closed customer invnumber ordnumber transaction_description notes project_id transdatefrom transdateto);
1346 $href = build_std_url('action=ar_transactions', grep { $form->{$_} } @hidden_variables);
1349 'transdate' => { 'text' => $locale->text('Date'), },
1350 'id' => { 'text' => $locale->text('ID'), },
1351 'type' => { 'text' => $locale->text('Type'), },
1352 'invnumber' => { 'text' => $locale->text('Invoice'), },
1353 'ordnumber' => { 'text' => $locale->text('Order'), },
1354 'name' => { 'text' => $locale->text('Customer'), },
1355 'netamount' => { 'text' => $locale->text('Amount'), },
1356 'tax' => { 'text' => $locale->text('Tax'), },
1357 'amount' => { 'text' => $locale->text('Total'), },
1358 'paid' => { 'text' => $locale->text('Paid'), },
1359 'datepaid' => { 'text' => $locale->text('Date Paid'), },
1360 'due' => { 'text' => $locale->text('Amount Due'), },
1361 'duedate' => { 'text' => $locale->text('Due Date'), },
1362 'transaction_description' => { 'text' => $locale->text('Transaction description'), },
1363 'notes' => { 'text' => $locale->text('Notes'), },
1364 'salesman' => { 'text' => $locale->text('Salesperson'), },
1365 'employee' => { 'text' => $locale->text('Employee'), },
1366 'shippingpoint' => { 'text' => $locale->text('Shipping Point'), },
1367 'shipvia' => { 'text' => $locale->text('Ship via'), },
1368 'globalprojectnumber' => { 'text' => $locale->text('Project Number'), },
1369 'marge_total' => { 'text' => $locale->text('Ertrag'), },
1370 'marge_percent' => { 'text' => $locale->text('Ertrag prozentual'), },
1371 'customernumber' => { 'text' => $locale->text('Customer Number'), },
1372 'country' => { 'text' => $locale->text('Country'), },
1373 'ustid' => { 'text' => $locale->text('USt-IdNr.'), },
1374 'taxzone' => { 'text' => $locale->text('Steuersatz'), },
1375 'payment_terms' => { 'text' => $locale->text('Payment Terms'), },
1376 'charts' => { 'text' => $locale->text('Buchungskonto'), },
1377 'customertype' => { 'text' => $locale->text('Customer type'), },
1380 foreach my $name (qw(id transdate duedate invnumber ordnumber name datepaid employee shippingpoint shipvia transaction_description)) {
1381 my $sortdir = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
1382 $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
1385 my %column_alignment = map { $_ => 'right' } qw(netamount tax amount paid due);
1387 $form->{"l_type"} = "Y";
1388 map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
1390 $report->set_columns(%column_defs);
1391 $report->set_column_order(@columns);
1393 $report->set_export_options('ar_transactions', @hidden_variables, qw(sort sortdir));
1395 $report->set_sort_indicator($form->{sort}, $form->{sortdir});
1398 if ($form->{customer}) {
1399 push @options, $locale->text('Customer') . " : $form->{customer}";
1401 if ($form->{department}) {
1402 my ($department) = split /--/, $form->{department};
1403 push @options, $locale->text('Department') . " : $department";
1405 if ($form->{department_id}) {
1406 push @options, $locale->text('Department Id') . " : $form->{department_id}";
1408 if ($form->{invnumber}) {
1409 push @options, $locale->text('Invoice Number') . " : $form->{invnumber}";
1411 if ($form->{ordnumber}) {
1412 push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
1414 if ($form->{notes}) {
1415 push @options, $locale->text('Notes') . " : $form->{notes}";
1417 if ($form->{transaction_description}) {
1418 push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
1420 if ($form->{transdatefrom}) {
1421 push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
1423 if ($form->{transdateto}) {
1424 push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
1426 if ($form->{open}) {
1427 push @options, $locale->text('Open');
1429 if ($form->{closed}) {
1430 push @options, $locale->text('Closed');
1433 $report->set_options('top_info_text' => join("\n", @options),
1434 'raw_bottom_info_text' => $form->parse_html_template('ar/ar_transactions_bottom'),
1435 'output_format' => 'HTML',
1436 'title' => $form->{title},
1437 'attachment_basename' => $locale->text('invoice_list') . strftime('_%Y%m%d', localtime time),
1439 $report->set_options_from_form();
1440 $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
1442 # add sort and escape callback, this one we use for the add sub
1443 $form->{callback} = $href .= "&sort=$form->{sort}";
1445 # escape callback for href
1446 $callback = $form->escape($href);
1448 my @subtotal_columns = qw(netamount amount paid due marge_total marge_percent);
1450 my %totals = map { $_ => 0 } @subtotal_columns;
1451 my %subtotals = map { $_ => 0 } @subtotal_columns;
1455 foreach my $ar (@{ $form->{AR} }) {
1456 $ar->{tax} = $ar->{amount} - $ar->{netamount};
1457 $ar->{due} = $ar->{amount} - $ar->{paid};
1459 map { $subtotals{$_} += $ar->{$_};
1460 $totals{$_} += $ar->{$_} } @subtotal_columns;
1462 $subtotals{marge_percent} = $subtotals{netamount} ? ($subtotals{marge_total} * 100 / $subtotals{netamount}) : 0;
1463 $totals{marge_percent} = $totals{netamount} ? ($totals{marge_total} * 100 / $totals{netamount} ) : 0;
1465 map { $ar->{$_} = $form->format_amount(\%myconfig, $ar->{$_}, 2) } qw(netamount tax amount paid due marge_total marge_percent);
1467 my $is_storno = $ar->{storno} && $ar->{storno_id};
1468 my $has_storno = $ar->{storno} && !$ar->{storno_id};
1471 $has_storno ? $locale->text("Invoice with Storno (abbreviation)") :
1472 $is_storno ? $locale->text("Storno (one letter abbreviation)") :
1473 $ar->{amount} < 0 ? $locale->text("Credit note (one letter abbreviation)") :
1474 $ar->{invoice} ? $locale->text("Invoice (one letter abbreviation)") :
1475 $locale->text("AR Transaction (abbreviation)");
1479 foreach my $column (@columns) {
1481 'data' => $ar->{$column},
1482 'align' => $column_alignment{$column},
1486 $row->{invnumber}->{link} = build_std_url("script=" . ($ar->{invoice} ? 'is.pl' : 'ar.pl'), 'action=edit')
1487 . "&id=" . E($ar->{id}) . "&callback=${callback}";
1489 my $row_set = [ $row ];
1491 if (($form->{l_subtotal} eq 'Y')
1492 && (($idx == (scalar @{ $form->{AR} } - 1))
1493 || ($ar->{ $form->{sort} } ne $form->{AR}->[$idx + 1]->{ $form->{sort} }))) {
1494 push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
1497 $report->add_data($row_set);
1502 $report->add_separator();
1503 $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
1505 $report->generate_with_headers();
1507 $main::lxdebug->leave_sub();
1511 $main::lxdebug->enter_sub();
1513 $main::auth->assert('general_ledger');
1515 my $form = $main::form;
1516 my %myconfig = %main::myconfig;
1517 my $locale = $main::locale;
1519 # don't cancel cancelled transactions
1520 if (IS->has_storno(\%myconfig, $form, 'ar')) {
1521 $form->{title} = $locale->text("Cancel Accounts Receivables Transaction");
1522 $form->error($locale->text("Transaction has already been cancelled!"));
1525 AR->storno($form, \%myconfig, $form->{id});
1527 # saving the history
1528 if(!exists $form->{addition} && $form->{id} ne "") {
1529 $form->{snumbers} = "ordnumber_$form->{ordnumber}";
1530 $form->{addition} = "STORNO";
1531 $form->save_history;
1533 # /saving the history
1535 $form->redirect(sprintf $locale->text("Transaction %d cancelled."), $form->{storno_id});
1537 $main::lxdebug->leave_sub();