1 #=====================================================================
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (c) 1998-2002
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 # Inventory invoicing module
32 #======================================================================
40 use List::Util qw(max sum);
45 require "bin/mozilla/io.pl";
46 require "bin/mozilla/invoice_io.pl";
47 require "bin/mozilla/arap.pl";
48 require "bin/mozilla/drafts.pl";
57 $main::lxdebug->enter_sub();
59 my $form = $main::form;
60 my $locale = $main::locale;
62 $main::auth->assert('invoice_edit');
64 return $main::lxdebug->leave_sub() if (load_draft_maybe());
66 if ($form->{type} eq "credit_note") {
67 $form->{title} = $locale->text('Add Credit Note');
69 if ($form->{storno}) {
70 $form->{title} = $locale->text('Add Storno Credit Note');
73 $form->{title} = $locale->text('Add Sales Invoice');
78 $form->{callback} = "$form->{script}?action=add&type=$form->{type}" unless $form->{callback};
84 $main::lxdebug->leave_sub();
88 $main::lxdebug->enter_sub();
90 my $form = $main::form;
91 my $locale = $main::locale;
93 $main::auth->assert('invoice_edit');
95 $form->{taxincluded_changed_by_user} = 1;
98 $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
99 #/show hhistory button
101 my ($language_id, $printer_id);
102 if ($form->{print_and_post}) {
103 $form->{action} = "print";
104 $form->{resubmit} = 1;
105 $language_id = $form->{language_id};
106 $printer_id = $form->{printer_id};
110 if ($form->{type} eq "credit_note") {
111 $form->{title} = $locale->text('Edit Credit Note');
112 $form->{title} = $locale->text('Edit Storno Credit Note') if $form->{storno};
114 $form->{title} = $locale->text('Edit Sales Invoice');
115 $form->{title} = $locale->text('Edit Storno Invoice') if $form->{storno};
119 if ($form->{print_and_post}) {
120 $form->{language_id} = $language_id;
121 $form->{printer_id} = $printer_id;
126 $main::lxdebug->leave_sub();
130 $main::lxdebug->enter_sub();
132 my $form = $main::form;
133 my %myconfig = %main::myconfig;
135 $main::auth->assert('invoice_edit');
137 $form->{vc} = 'customer';
140 $form->{webdav} = $::instance_conf->get_webdav;
142 $form->create_links("AR", \%myconfig, "customer");
144 if ($form->{all_customer}) {
145 unless ($form->{customer_id}) {
146 $form->{customer_id} = $form->{all_customer}->[0]->{id};
147 $form->{salesman_id} = $form->{all_customer}->[0]->{salesman_id};
151 my $editing = $form->{id};
153 $form->backup_vars(qw(payment_id language_id taxzone_id salesman_id
154 taxincluded currency cp_id intnotes id shipto_id
157 $form->{shipto} = 1 if $editing || $form->{convert_from_oe_ids} || $form->{convert_from_do_ids};
158 IS->get_customer(\%myconfig, \%$form);
160 #quote all_customer Bug 133
161 foreach my $ref (@{ $form->{all_customer} }) {
162 $ref->{name} = $form->quote($ref->{name});
165 $form->restore_vars(qw(id));
167 IS->retrieve_invoice(\%myconfig, \%$form);
168 $form->restore_vars(qw(payment_id language_id taxzone_id currency intnotes
169 cp_id shipto_id delivery_term_id));
170 $form->restore_vars(qw(taxincluded)) if $form->{id};
171 $form->restore_vars(qw(salesman_id)) if $editing;
174 # build vendor/customer drop down comatibility... don't ask
175 if (@{ $form->{"all_customer"} }) {
176 $form->{"selectcustomer"} = 1;
177 $form->{customer} = qq|$form->{customer}--$form->{"customer_id"}|;
180 $form->{"oldcustomer"} = $form->{customer};
182 if ($form->{"oldcustomer"} !~ m/--\d+$/ && $form->{"customer_id"}) {
183 $form->{"oldcustomer"} .= qq|--$form->{"customer_id"}|
187 # $form->{oldcustomer} = "$form->{customer}--$form->{customer_id}";
188 # $form->{selectcustomer} = 1;
190 $form->{employee} = "$form->{employee}--$form->{employee_id}";
193 $form->{forex} = $form->{exchangerate};
194 my $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
196 foreach my $key (keys %{ $form->{AR_links} }) {
197 foreach my $ref (@{ $form->{AR_links}{$key} }) {
198 $form->{"select$key"} .= "<option>$ref->{accno}--$ref->{description}</option>\n";
201 if ($key eq "AR_paid") {
202 next unless $form->{acc_trans}{$key};
203 for my $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
204 $form->{"AR_paid_$i"} = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
206 $form->{"acc_trans_id_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{acc_trans_id};
208 $form->{"paid_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{amount} * -1;
209 $form->{"datepaid_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{transdate};
210 $form->{"gldate_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{gldate};
211 $form->{"exchangerate_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
212 $form->{"forex_$i"} = $form->{"exchangerate_$i"};
213 $form->{"source_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{source};
214 $form->{"memo_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{memo};
216 $form->{paidaccounts} = $i;
219 $form->{$key} = "$form->{acc_trans}{$key}->[0]->{accno}--$form->{acc_trans}{$key}->[0]->{description}";
223 $form->{paidaccounts} = 1 unless (exists $form->{paidaccounts});
225 $form->{AR} = $form->{AR_1} unless $form->{id};
227 $form->{locked} = ($form->datetonum($form->{invdate}, \%myconfig)
228 <= $form->datetonum($form->{closedto}, \%myconfig));
230 $main::lxdebug->leave_sub();
233 sub prepare_invoice {
234 $main::lxdebug->enter_sub();
236 my $form = $main::form;
237 my %myconfig = %main::myconfig;
239 $main::auth->assert('invoice_edit');
241 if ($form->{type} eq "credit_note") {
242 $form->{type} = "credit_note";
243 $form->{formname} = "credit_note";
245 $form->{type} = "invoice";
246 $form->{formname} = "invoice";
253 foreach my $ref (@{ $form->{invoice_details} }) {
256 map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
258 $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
259 my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
261 my $decimalplaces = ($dec > 2) ? $dec : 2;
263 $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
264 (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
265 $dec_qty = length $dec_qty;
267 $form->{"lastcost_$i"} = $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, $decimalplaces);
269 $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
271 $form->{"sellprice_pg_$i"} = join ('--', $form->{"sellprice_$i"}, $form->{"pricegroup_id_$i"});
273 $form->{rowcount} = $i;
277 # get pricegroups for parts
278 IS->get_pricegroups_for_parts(\%myconfig, \%$form);
280 # Problem: set_pricegroup resets the sellprice of old invoices to the price
281 # currently defined in the pricegroup, which is a problem if the price has
282 # changed, as the old invoice gets the new price
283 # set_pricegroup must never be called, when an old invoice is initially loaded
285 # set_pricegroup($_) for 1 .. $form->{rowcount};
287 $main::lxdebug->leave_sub();
291 $main::lxdebug->enter_sub();
293 my $form = $main::form;
294 my %myconfig = %main::myconfig;
295 my $locale = $main::locale;
296 my $cgi = $::request->{cgi};
298 $main::auth->assert('invoice_edit');
303 $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id};
304 $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id};
306 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
308 my @old_project_ids = ($form->{"globalproject_id"});
309 map { push @old_project_ids, $form->{"project_id_$_"} if $form->{"project_id_$_"}; } 1..$form->{"rowcount"};
311 $form->get_lists("projects" => { "key" => "ALL_PROJECTS",
313 "old_id" => \@old_project_ids },
314 "taxzones" => "ALL_TAXZONES",
315 "currencies" => "ALL_CURRENCIES",
316 "customers" => "ALL_CUSTOMERS",
317 "departments" => "all_departments",
318 "price_factors" => "ALL_PRICE_FACTORS");
320 $TMPL_VAR{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $::form->{employee_id}, deleted => 0 ] ]);
321 $TMPL_VAR{ALL_SALESMEN} = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $::form->{salesman_id}, deleted => 0 ] ]);
322 $TMPL_VAR{ALL_SHIPTO} = SL::DB::Manager::Shipto->get_all(query => [
323 or => [ trans_id => $::form->{"$::form->{vc}_id"} * 1, and => [ shipto_id => $::form->{shipto_id} * 1, trans_id => undef ] ]
325 $TMPL_VAR{ALL_CONTACTS} = SL::DB::Manager::Contact->get_all(query => [
327 cp_cv_id => $::form->{"$::form->{vc}_id"} * 1,
330 cp_id => $::form->{cp_id} * 1
334 $TMPL_VAR{department_labels} = sub { "$_[0]->{description}--$_[0]->{id}" };
337 $TMPL_VAR{vc_keys} = sub { "$_[0]->{name}--$_[0]->{id}" };
338 $TMPL_VAR{vclimit} = $myconfig{vclimit};
339 $TMPL_VAR{vc_select} = "customer_or_vendor_selection_window('customer', '', 0, 0)";
340 push @custom_hiddens, "customer_id";
341 push @custom_hiddens, "oldcustomer";
342 push @custom_hiddens, "selectcustomer";
344 # currencies and exchangerate
345 my @values = map { $_ } @{ $form->{ALL_CURRENCIES} };
346 my %labels = map { $_ => $_ } @{ $form->{ALL_CURRENCIES} };
347 $form->{currency} = $form->{defaultcurrency} unless $form->{currency};
348 $form->{show_exchangerate} = $form->{currency} ne $form->{defaultcurrency};
349 $TMPL_VAR{currencies} = NTI($::request->{cgi}->popup_menu('-name' => 'currency', '-default' => $form->{"currency"},
350 '-values' => \@values, '-labels' => \%labels,
351 '-onchange' => "document.getElementById('update_button').click();"
352 )) if scalar @values;
353 push @custom_hiddens, "forex";
354 push @custom_hiddens, "exchangerate" if $form->{forex};
356 $TMPL_VAR{creditwarning} = ($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update};
357 $TMPL_VAR{is_credit_remaining_negativ} = $form->{creditremaining} =~ /-/;
359 my $follow_up_vc = $form->{customer};
360 $follow_up_vc =~ s/--\d*\s*$//;
361 $TMPL_VAR{customer_name} = $follow_up_vc;
363 # set option selected
364 foreach my $item (qw(AR)) {
365 $form->{"select$item"} =~ s/ selected//;
366 $form->{"select$item"} =~ s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
369 $TMPL_VAR{is_type_credit_note} = $form->{type} eq "credit_note";
370 $TMPL_VAR{is_format_html} = $form->{format} eq 'html';
371 $TMPL_VAR{dateformat} = $myconfig{dateformat};
372 $TMPL_VAR{numberformat} = $myconfig{numberformat};
375 $TMPL_VAR{HIDDENS} = [qw(
376 id action type media format queued printed emailed title vc discount
377 title creditlimit creditremaining tradediscount business closedto locked shipped storno storno_id
378 max_dunning_level dunning_amount
379 shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptocontact shiptophone shiptofax
380 shiptoemail shiptodepartment_1 shiptodepartment_2 shiptocp_gender message email subject cc bcc taxaccounts cursor_fokus
381 convert_from_do_ids convert_from_oe_ids
384 map { $_.'_rate', $_.'_description', $_.'_taxnumber' } split / /, $form->{taxaccounts}];
386 $::request->{layout}->use_javascript(map { "${_}.js" } qw(kivi.SalesPurchase));
390 print $form->parse_html_template("is/form_header", \%TMPL_VAR);
392 $main::lxdebug->leave_sub();
396 $main::lxdebug->enter_sub();
398 my $form = $main::form;
399 my %myconfig = %main::myconfig;
400 my $locale = $main::locale;
402 $main::auth->assert('invoice_edit');
404 $form->{invtotal} = $form->{invsubtotal};
407 $form->{rows} = max 2,
408 $form->numtextrows($form->{notes}, 26, 8),
409 $form->numtextrows($form->{intnotes}, 35, 8);
412 # tax, total and subtotal calculations
413 my ($tax, $subtotal);
414 $form->{taxaccounts_array} = [ split(/ /, $form->{taxaccounts}) ];
416 if( $form->{customer_id} && !$form->{taxincluded_changed_by_user} ) {
417 my $customer = SL::DB::Customer->new(id => $form->{customer_id})->load();
418 $form->{taxincluded} = defined($customer->taxincluded_checked) ? $customer->taxincluded_checked : $myconfig{taxincluded_checked};
421 foreach my $item (@{ $form->{taxaccounts_array} }) {
422 if ($form->{"${item}_base"}) {
423 if ($form->{taxincluded}) {
424 $form->{"${item}_total"} = $form->round_amount( ($form->{"${item}_base"} * $form->{"${item}_rate"}
425 / (1 + $form->{"${item}_rate"})), 2);
426 $form->{"${item}_netto"} = $form->round_amount( ($form->{"${item}_base"} - $form->{"${item}_total"}), 2);
428 $form->{"${item}_total"} = $form->round_amount( $form->{"${item}_base"} * $form->{"${item}_rate"}, 2);
429 $form->{invtotal} += $form->{"${item}_total"};
436 $form->{follow_ups} = FU->follow_ups('trans_id' => $form->{id}) || [];
437 $form->{follow_ups_unfinished} = ( sum map { $_->{due} * 1 } @{ $form->{follow_ups} } ) || 0;
442 $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
443 $form->{paid_indices} = [ 1 .. $form->{paidaccounts} ];
445 # Standard Konto für Umlaufvermögen
446 my $accno_arap = IS->get_standard_accno_current_assets(\%myconfig, \%$form);
448 for my $i (1 .. $form->{paidaccounts}) {
449 $form->{"changeable_$i"} = 1;
450 if (SL::DB::Default->get->payments_changeable == 0) {
452 $form->{"changeable_$i"} = ($form->{"acc_trans_id_$i"})? 0 : 1;
453 } elsif (SL::DB::Default->get->payments_changeable == 2) {
455 $form->{"changeable_$i"} = (($form->{"gldate_$i"} eq '') ||
456 ($form->current_date(\%myconfig) eq $form->{"gldate_$i"}));
459 $form->{"selectAR_paid_$i"} = $form->{selectAR_paid};
460 if (!$form->{"AR_paid_$i"}) {
461 $form->{"selectAR_paid_$i"} =~ s/option>$accno_arap--(.*?)</option selected>$accno_arap--$1</;
463 $form->{"selectAR_paid_$i"} =~ s/option>\Q$form->{"AR_paid_$i"}\E/option selected>$form->{"AR_paid_$i"}/;
466 $totalpaid += $form->{"paid_$i"};
469 $form->{oldinvtotal} = $form->{invtotal};
471 $form->{ALL_DELIVERY_TERMS} = SL::DB::Manager::DeliveryTerm->get_all_sorted();
473 print $form->parse_html_template('is/form_footer', {
474 is_type_credit_note => ($form->{type} eq "credit_note"),
475 totalpaid => $totalpaid,
476 paid_missing => $form->{invtotal} - $totalpaid,
477 print_options => print_options(inline => 1),
478 show_storno => $form->{id} && !$form->{storno} && !IS->has_storno(\%myconfig, $form, "ar") && !$totalpaid,
479 show_delete => ($::instance_conf->get_is_changeable == 2)
480 ? ($form->current_date(\%myconfig) eq $form->{gldate})
481 : ($::instance_conf->get_is_changeable == 1),
483 ##print $form->parse_html_template('is/_payments'); # parser
484 ##print $form->parse_html_template('webdav/_list'); # parser
486 $main::lxdebug->leave_sub();
490 $main::lxdebug->enter_sub();
492 my $form = $main::form;
493 my %myconfig = %main::myconfig;
495 $main::auth->assert('invoice_edit');
497 &mark_as_paid_common(\%myconfig,"ar");
499 $main::lxdebug->leave_sub();
503 $main::lxdebug->enter_sub();
505 my $form = $main::form;
506 my %myconfig = %main::myconfig;
508 $main::auth->assert('invoice_edit');
510 my ($recursive_call) = @_;
512 $form->{print_and_post} = 0 if $form->{second_run};
513 my $taxincluded = $form->{taxincluded} ? "checked" : '';
516 &check_name("customer");
518 $form->{taxincluded} ||= $taxincluded;
520 if (!$form->{forex}) { # read exchangerate from input field (not hidden)
521 $form->{exchangerate} = $form->parse_amount(\%myconfig, $form->{exchangerate}) unless $recursive_call;
523 $form->{forex} = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, 'buy');
524 $form->{exchangerate} = $form->{forex} if $form->{forex};
526 for my $i (1 .. $form->{paidaccounts}) {
527 next unless $form->{"paid_$i"};
528 map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) } qw(paid exchangerate);
529 if (!$form->{"forex_$i"}) { #read exchangerate from input field (not hidden)
530 $form->{exchangerate} = $form->{"exchangerate_$i"};
532 $form->{"forex_$i"} = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
533 $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
536 my $i = $form->{rowcount};
537 my $exchangerate = $form->{exchangerate} || 1;
539 # if last row empty, check the form otherwise retrieve new item
540 if ( ($form->{"partnumber_$i"} eq "")
541 && ($form->{"description_$i"} eq "")
542 && ($form->{"partsgroup_$i"} eq "")) {
544 $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
549 IS->retrieve_item(\%myconfig, \%$form);
551 my $rows = scalar @{ $form->{item_list} };
553 # Falls kein Kundenrabatt vorhanden ist, den aktuellen Rabatt nicht mit 0% überschreiben,
554 # da hier der Anwender schon manual einen Wert eingetragen haben könnte (analog zu qty) Bugfix: 1412
555 if ($form->{customer_discount}){
556 $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{customer_discount} * 100);
560 $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
561 if( !$form->{"qty_$i"} ) {
562 $form->{"qty_$i"} = 1;
567 select_item(mode => 'IS');
572 my $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
574 map { $form->{item_list}[$i]{$_} =~ s/\"/"/g } qw(partnumber description unit);
575 map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
577 $form->{payment_id} = $form->{"part_payment_id_$i"} if $form->{"part_payment_id_$i"} ne "";
578 $form->{"discount_$i"} = 0 if $form->{"not_discountable_$i"};
580 $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
582 ($sellprice || $form->{"sellprice_$i"}) =~ /\.(\d+)/;
583 my $decimalplaces = max 2, length $1;
586 $form->{"sellprice_$i"} = $sellprice;
588 # if there is an exchange rate adjust sellprice
589 $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
590 $form->{"sellprice_$i"} /= $exchangerate;
593 $form->{"listprice_$i"} /= $exchangerate;
595 my $amount = $form->{"sellprice_$i"} * $form->{"qty_$i"} * (1 - $form->{"discount_$i"} / 100);
596 map { $form->{"${_}_base"} = 0 } split / /, $form->{taxaccounts};
597 map { $form->{"${_}_base"} += $amount } split / /, $form->{"taxaccounts_$i"};
598 map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /, $form->{"taxaccounts_$i"} if !$form->{taxincluded};
600 $form->{creditremaining} -= $amount;
602 map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces) } qw(sellprice lastcost);
604 $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"});
606 # get pricegroups for parts
607 IS->get_pricegroups_for_parts(\%myconfig, \%$form);
609 # build up html code for prices_$i
617 # ok, so this is a new part
618 # ask if it is a part or service item
620 if ( $form->{"partsgroup_$i"}
621 && ($form->{"partsnumber_$i"} eq "")
622 && ($form->{"description_$i"} eq "")) {
624 $form->{"discount_$i"} = "";
628 $form->{"id_$i"} = 0;
633 $main::lxdebug->leave_sub();
637 $main::lxdebug->enter_sub();
639 my $form = $main::form;
640 my %myconfig = %main::myconfig;
641 my $locale = $main::locale;
643 $main::auth->assert('invoice_edit');
645 my $invdate = $form->datetonum($form->{invdate}, \%myconfig);
647 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
648 for my $i (1 .. $form->{paidaccounts}) {
649 if ($form->{"paid_$i"}) {
650 my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
652 $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
655 if ($form->{currency} ne $form->{defaultcurrency}) {
656 $form->{"exchangerate_$i"} = $form->{exchangerate}
657 if ($invdate == $datepaid);
658 $form->isblank("exchangerate_$i",
659 $locale->text('Exchangerate for payment missing!'));
663 # Abgeschlossene Zeiträume nur für den letzten (aktuellen) Zahlungseingang prüfen
664 # Details s.a. Bug 1502
665 # Das Problem ist jetzt, dass man Zahlungseingänge nachträglich ändern kann
666 # Wobei dies für Installationen die sowieso nicht mit Bücherkontrolle arbeiten keinen
667 # keinen Unterschied macht.
668 # Optimal wäre, wenn gegen einen Zeitstempel des Zahlungsfelds geprüft würde ...
669 # Das Problem hierbei ist, dass in IS.pm post_invoice IMMER alle Zahlungseingänge aus $form
670 # erneut gespeichert werden. Prinzipiell wäre es besser NUR die Änderungen des Rechnungs-
671 # belegs (neue Zahlung aber nichts anderes) zu speichern ...
672 # Vielleicht könnte man ähnlich wie bei Rechnung löschen verfahren
673 $form->error($locale->text('Cannot post payment for a closed period!'))
674 if ($form->date_closed($form->{"datepaid_$form->{paidaccounts}"}, \%myconfig));
676 ($form->{AR}) = split /--/, $form->{AR};
677 ($form->{AR_paid}) = split /--/, $form->{AR_paid};
679 $form->redirect($locale->text('Payment posted!'))
680 if (IS->post_payment(\%myconfig, \%$form));
681 $form->error($locale->text('Cannot post payment!'));
684 $main::lxdebug->leave_sub();
688 $main::lxdebug->enter_sub();
690 my $form = $main::form;
691 my %myconfig = %main::myconfig;
692 my $locale = $main::locale;
694 $main::auth->assert('invoice_edit');
696 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
697 $form->isblank("invdate", $locale->text('Invoice Date missing!'));
698 $form->isblank("customer", $locale->text('Customer missing!'));
699 $form->error($locale->text('Cannot post invoice for a closed period!'))
700 if ($form->date_closed($form->{"invdate"}, \%myconfig));
702 $form->{invnumber} =~ s/^\s*//g;
703 $form->{invnumber} =~ s/\s*$//g;
705 # if oldcustomer ne customer redo form
706 if (&check_name('customer')) {
711 if ($myconfig{mandatory_departments} && !$form->{department_id}) {
712 $form->{saved_message} = $::locale->text('You have to specify a department.');
717 if ($form->{second_run}) {
718 $form->{print_and_post} = 0;
721 remove_emptied_rows();
724 my $closedto = $form->datetonum($form->{closedto}, \%myconfig);
725 my $invdate = $form->datetonum($form->{invdate}, \%myconfig);
727 $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
728 if ($form->date_max_future($invdate, \%myconfig));
729 $form->error($locale->text('Cannot post invoice for a closed period!'))
730 if ($invdate <= $closedto);
732 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
733 if ($form->{currency} ne $form->{defaultcurrency});
735 for my $i (1 .. $form->{paidaccounts}) {
736 if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
737 my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
739 $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
741 $form->error($locale->text('Cannot post payment for a closed period!'))
742 if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
744 if ($form->{currency} ne $form->{defaultcurrency}) {
745 $form->{"exchangerate_$i"} = $form->{exchangerate}
746 if ($invdate == $datepaid);
747 $form->isblank("exchangerate_$i",
748 $locale->text('Exchangerate for payment missing!'));
753 ($form->{AR}) = split /--/, $form->{AR};
754 ($form->{AR_paid}) = split /--/, $form->{AR_paid};
755 $form->{storno} ||= 0;
757 $form->{label} = $form->{type} eq 'credit_note' ? $locale->text('Credit Note') : $locale->text('Invoice');
759 $form->{id} = 0 if $form->{postasnew};
761 # get new invnumber in sequence if no invnumber is given or if posasnew was requested
762 if ($form->{postasnew}) {
763 if ($form->{type} eq "credit_note") {
764 undef($form->{cnnumber});
766 undef($form->{invnumber});
771 $form->error($locale->text('Cannot post invoice!'))
772 unless IS->post_invoice(\%myconfig, \%$form);
773 remove_draft() if $form->{remove_draft};
775 if(!exists $form->{addition}) {
776 $form->{snumbers} = 'invnumber' .'_'. $form->{invnumber}; # ($form->{type} eq 'credit_note' ? 'cnnumber' : 'invnumber') .'_'. $form->{invnumber};
777 $form->{addition} = $form->{print_and_post} ? "PRINTED AND POSTED" :
778 $form->{storno} ? "STORNO" :
783 if (!$form->{no_redirect_after_post}) {
784 $form->{action} = 'edit';
785 $form->{script} = 'is.pl';
786 $form->{saved_message} = $form->{label} . " $form->{invnumber} " . $locale->text('posted!');
787 $form->{callback} = build_std_url(qw(action edit id saved_message));
791 $main::lxdebug->leave_sub();
795 $main::lxdebug->enter_sub();
797 my $form = $main::form;
799 $main::auth->assert('invoice_edit');
801 my $old_form = new Form;
802 $form->{no_redirect_after_post} = 1;
803 $form->{print_and_post} = 1;
807 $main::lxdebug->leave_sub();
812 $main::lxdebug->enter_sub();
814 my $form = $main::form;
815 my %myconfig = %main::myconfig;
817 $main::auth->assert('invoice_edit');
819 delete @{ $form }{qw(printed emailed queued invnumber invdate deliverydate id datepaid_1 gldate_1 acc_trans_id_1 source_1 memo_1 paid_1 exchangerate_1 AP_paid_1 storno locked)};
820 $form->{paidaccounts} = 1;
822 $form->{invdate} = $form->current_date(\%myconfig);
823 $form->{duedate} = $form->get_duedate(\%myconfig, $form->{invdate}) || $form->{invdate};
824 $form->{employee_id} = SL::DB::Manager::Employee->current->id;
826 # remember pricegroups for "use as new"
827 IS->get_pricegroups_for_parts(\%myconfig, \%$form);
828 set_pricegroup($_) for 1 .. $form->{rowcount};
832 $main::lxdebug->leave_sub();
836 $main::lxdebug->enter_sub();
838 my $form = $main::form;
839 my %myconfig = %main::myconfig;
840 my $locale = $main::locale;
842 $main::auth->assert('invoice_edit');
844 if ($form->{storno}) {
845 $form->error($locale->text('Cannot storno storno invoice!'));
848 if (IS->has_storno(\%myconfig, $form, "ar")) {
849 $form->error($locale->text("Invoice has already been storno'd!"));
851 if ($form->datetonum($form->{invdate}, \%myconfig) <= $form->datetonum($form->{closedto}, \%myconfig)) {
852 $form->error($locale->text('Cannot storno invoice for a closed period!'));
855 map({ my $key = $_; delete($form->{$key}) unless (grep({ $key eq $_ } qw(id login password type))); } keys(%{ $form }));
861 # Payments must not be recorded for the new storno invoice.
862 $form->{paidaccounts} = 0;
863 map { my $key = $_; delete $form->{$key} if grep { $key =~ /^$_/ } qw(datepaid_ gldate_ acc_trans_id_ source_ memo_ paid_ exchangerate_ AR_paid_) } keys %{ $form };
865 $form->{storno_id} = $form->{id};
868 $form->{invnumber} = "Storno zu " . $form->{invnumber};
869 $form->{invdate} = DateTime->today->to_lxoffice;
873 $main::lxdebug->leave_sub();
877 $main::lxdebug->enter_sub();
879 my $form = $main::form;
881 $main::auth->assert('invoice_edit');
883 $form->{preview} = 1;
884 my $old_form = new Form;
885 for (keys %$form) { $old_form->{$_} = $form->{$_} }
887 &print_form($old_form);
888 $main::lxdebug->leave_sub();
893 $main::lxdebug->enter_sub();
895 my $form = $main::form;
896 my $locale = $main::locale;
898 $main::auth->assert('invoice_edit');
900 if ($form->{second_run}) {
901 $form->{print_and_post} = 0;
906 <form method="post" action="$form->{script}">
909 # delete action variable
910 map { delete $form->{$_} } qw(action header);
912 foreach my $key (keys %$form) {
913 next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
914 $form->{$key} =~ s/\"/"/g;
915 print qq|<input type="hidden" name="$key" value="$form->{$key}">\n|;
919 <h2 class="confirm">| . $locale->text('Confirm!') . qq|</h2>
922 . $locale->text('Are you sure you want to delete Invoice Number')
923 . qq| $form->{invnumber}
927 <input name="action" class="submit" type="submit" value="|
928 . $locale->text('Yes') . qq|">
932 $main::lxdebug->leave_sub();
936 $main::lxdebug->enter_sub();
938 my $form = $main::form;
939 my %myconfig = %main::myconfig;
940 my $locale = $main::locale;
942 $main::auth->assert('invoice_edit');
944 $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
946 $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
953 $form->{title} = $locale->text('Add Credit Note');
954 $form->{script} = 'is.pl';
956 # Bei Gutschriften bezug zur Rechnungsnummer
957 $form->{invnumber_for_credit_note} = $form->{invnumber};
958 # bo creates the id, reset it
959 map { delete $form->{$_} }
960 qw(id invnumber subject message cc bcc printed emailed queued);
961 $form->{ $form->{vc} } =~ s/--.*//g;
962 $form->{type} = "credit_note";
965 map { $form->{"select$_"} = "" } ($form->{vc}, 'currency');
967 # map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
968 # qw(creditlimit creditremaining);
970 for my $i (1 .. $form->{rowcount}) {
971 for (qw(listprice)) {
972 $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if $form->{"${_}_${i}"};
976 my $currency = $form->{currency};
979 $form->{currency} = $currency;
980 $form->{forex} = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{invdate}, 'buy');
981 $form->{exchangerate} = $form->{forex} || '';
983 $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
985 # bei Gutschriften werden Zahlungseingänge aus Rechnung nicht übernommen
986 for my $i (1 .. $form->{paidaccounts}) {
987 delete $form->{"paid_$i"};
988 delete $form->{"source_$i"};
989 delete $form->{"memo_$i"};
990 delete $form->{"datepaid_$i"};
991 delete $form->{"gldate_$i"};
992 delete $form->{"acc_trans_id_$i"};
993 delete $form->{"AR_paid_$i"};
995 $form->{paidaccounts} = 1;
1002 $main::lxdebug->leave_sub();
1006 $main::lxdebug->enter_sub();
1008 my $form = $main::form;
1009 my %myconfig = %main::myconfig;
1010 my $locale = $main::locale;
1012 $main::auth->assert('invoice_edit');
1014 if (IS->delete_invoice(\%myconfig, \%$form)) {
1015 # saving the history
1016 if(!exists $form->{addition}) {
1017 $form->{snumbers} = 'invnumber' .'_'. $form->{invnumber}; # ($form->{type} eq 'credit_note' ? 'cnnumber' : 'invnumber') .'_'. $form->{invnumber};
1018 $form->{addition} = "DELETED";
1019 $form->save_history;
1021 # /saving the history
1022 $form->redirect($locale->text('Invoice deleted!'));
1024 $form->error($locale->text('Cannot delete invoice!'));
1026 $main::lxdebug->leave_sub();
1029 sub post_and_e_mail {
1034 $main::lxdebug->enter_sub();
1036 my $form = $main::form;
1038 $main::auth->assert('invoice_edit');
1041 $form->{no_redirect_after_post} = 1;
1043 my $saved_form = save_form();
1047 restore_form($saved_form, 0, qw(id invnumber));
1052 $main::lxdebug->leave_sub();