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., 51 Franklin Street, Fifth Floor, Boston,
29 #======================================================================
33 #======================================================================
35 use POSIX qw(strftime);
36 use List::Util qw(first max sum);
37 use List::UtilsBy qw(sort_by);
42 use SL::Helper::Flash qw(flash);
45 use SL::ReportGenerator;
46 use SL::DB::BankTransactionAccTrans;
51 use SL::DB::PurchaseInvoice;
52 use SL::DB::RecordTemplate;
55 use SL::Locale::String qw(t8);
57 require "bin/mozilla/common.pl";
58 require "bin/mozilla/reportgenerator.pl";
66 # this is for our long dates
67 # $locale->text('January')
68 # $locale->text('February')
69 # $locale->text('March')
70 # $locale->text('April')
71 # $locale->text('May ')
72 # $locale->text('June')
73 # $locale->text('July')
74 # $locale->text('August')
75 # $locale->text('September')
76 # $locale->text('October')
77 # $locale->text('November')
78 # $locale->text('December')
80 # this is for our short month
81 # $locale->text('Jan')
82 # $locale->text('Feb')
83 # $locale->text('Mar')
84 # $locale->text('Apr')
85 # $locale->text('May')
86 # $locale->text('Jun')
87 # $locale->text('Jul')
88 # $locale->text('Aug')
89 # $locale->text('Sep')
90 # $locale->text('Oct')
91 # $locale->text('Nov')
92 # $locale->text('Dec')
94 sub _may_view_or_edit_this_invoice {
95 return 1 if $::auth->assert('ap_transactions', 1); # may edit all invoices
96 return 0 if !$::form->{id}; # creating new invoices isn't allowed without invoice_edit
97 return 0 if !$::form->{globalproject_id}; # existing records without a project ID are not allowed
98 return SL::DB::Project->new(id => $::form->{globalproject_id})->load->may_employee_view_project_invoices(SL::DB::Manager::Employee->current);
102 my $cache = $::request->cache('ap.pl::_assert_access');
104 $cache->{_may_view_or_edit_this_invoice} = _may_view_or_edit_this_invoice() if !exists $cache->{_may_view_or_edit_this_invoice};
105 $::form->show_generic_error($::locale->text("You do not have the permissions to access this function.")) if ! $cache->{_may_view_or_edit_this_invoice};
108 sub load_record_template {
109 $::auth->assert('ap_transactions');
111 # Load existing template and verify that its one for this module.
112 my $template = SL::DB::RecordTemplate
113 ->new(id => $::form->{id})
115 with_object => [ qw(customer payment currency record_items record_items.chart) ],
118 die "invalid template type" unless $template->template_type eq 'ap_transaction';
120 $template->substitute_variables;
122 # Clean the current $::form before rebuilding it from the template.
123 my $form_defaults = delete $::form->{form_defaults};
124 delete @{ $::form }{ grep { !m{^(?:script|login)$}i } keys %{ $::form } };
126 # Fill $::form from the template.
127 my $today = DateTime->today_local;
128 $::form->{title} = "Add";
129 $::form->{currency} = $template->currency->name;
130 $::form->{direct_debit} = $template->direct_debit;
131 $::form->{globalproject_id} = $template->project_id;
132 $::form->{AP_chart_id} = $template->ar_ap_chart_id;
133 $::form->{transdate} = $today->to_kivitendo;
134 $::form->{duedate} = $today->to_kivitendo;
135 $::form->{rowcount} = @{ $template->items };
136 $::form->{paidaccounts} = 1;
137 $::form->{$_} = $template->$_ for qw(department_id ordnumber taxincluded notes);
139 if ($template->vendor) {
140 $::form->{vendor_id} = $template->vendor_id;
141 $::form->{vendor} = $template->vendor->name;
142 $::form->{duedate} = $template->vendor->payment->calc_date(reference_date => $today)->to_kivitendo if $template->vendor->payment;
146 foreach my $item (@{ $template->items }) {
149 my $active_taxkey = $item->chart->get_active_taxkey;
150 my $taxes = SL::DB::Manager::Tax->get_all(
151 where => [ chart_categories => { like => '%' . $item->chart->category . '%' }],
152 sort_by => 'taxkey, rate',
155 my $tax = first { $item->tax_id == $_->id } @{ $taxes };
156 $tax //= first { $active_taxkey->tax_id == $_->id } @{ $taxes };
157 $tax //= $taxes->[0];
164 $::form->{"AP_amount_chart_id_${row}"} = $item->chart_id;
165 $::form->{"previous_AP_amount_chart_id_${row}"} = $item->chart_id;
166 $::form->{"amount_${row}"} = $::form->format_amount(\%::myconfig, $item->amount1, 2);
167 $::form->{"taxchart_${row}"} = $item->tax_id . '--' . $tax->rate;
168 $::form->{"project_id_${row}"} = $item->project_id;
171 $::form->{$_} = $form_defaults->{$_} for keys %{ $form_defaults // {} };
173 flash('info', $::locale->text("The record template '#1' has been loaded.", $template->template_name));
174 flash('info', $::locale->text("Payment bookings disallowed. After the booking this record may be " .
175 "suggested with the amount of '#1' or otherwise has to be choosen manually." .
176 " No automatic payment booking will be done to chart '#2'.",
177 $form_defaults->{paid_1_suggestion},
178 $form_defaults->{AP_paid_1_suggestion},
179 )) if $::form->{no_payment_bookings};
182 keep_rows_without_amount => 1,
183 dont_add_new_row => 1,
187 sub save_record_template {
188 $::auth->assert('ap_transactions');
190 my $template = $::form->{record_template_id} ? SL::DB::RecordTemplate->new(id => $::form->{record_template_id})->load : SL::DB::RecordTemplate->new;
191 my $js = SL::ClientJS->new(controller => SL::Controller::Base->new);
192 my $new_name = $template->template_name_to_use($::form->{record_template_new_template_name});
194 $js->dialog->close('#record_template_dialog');
197 $_->{chart_id} && (($_->{tax_id} // '') ne '')
199 +{ chart_id => $::form->{"AP_amount_chart_id_${_}"},
200 amount1 => $::form->parse_amount(\%::myconfig, $::form->{"amount_${_}"}),
201 tax_id => (split m{--}, $::form->{"taxchart_${_}"})[0],
202 project_id => $::form->{"project_id_${_}"} || undef,
204 } (1..($::form->{rowcount} || 1));
206 $template->assign_attributes(
207 template_type => 'ap_transaction',
208 template_name => $new_name,
210 currency_id => SL::DB::Manager::Currency->find_by(name => $::form->{currency})->id,
211 ar_ap_chart_id => $::form->{AP_chart_id} || undef,
212 vendor_id => $::form->{vendor_id} || undef,
213 department_id => $::form->{department_id} || undef,
214 project_id => $::form->{globalproject_id} || undef,
215 taxincluded => $::form->{taxincluded} ? 1 : 0,
216 direct_debit => $::form->{direct_debit} ? 1 : 0,
217 ordnumber => $::form->{ordnumber},
218 notes => $::form->{notes},
228 ->flash('error', $::locale->text("Saving the record template '#1' failed.", $new_name))
233 ->flash('info', $::locale->text("The record template '#1' has been saved.", $new_name))
238 $main::lxdebug->enter_sub();
240 my $form = $main::form;
241 my %myconfig = %main::myconfig;
243 $main::auth->assert('ap_transactions');
245 $form->{title} = "Add";
247 $form->{callback} = "ap.pl?action=add" unless $form->{callback};
249 AP->get_transdate(\%myconfig, $form);
250 $form->{initial_transdate} = $form->{transdate};
251 create_links(dont_save => 1);
252 $form->{transdate} = $form->{initial_transdate};
254 if ($form->{vendor_id}) {
255 my $last_used_ap_chart = SL::DB::Vendor->load_cached($form->{vendor_id})->last_used_ap_chart;
256 $form->{"AP_amount_chart_id_1"} = $last_used_ap_chart->id if $last_used_ap_chart;
261 $main::lxdebug->leave_sub();
265 $main::lxdebug->enter_sub();
267 # Delay access check to after the invoice's been loaded in
268 # "create_links" so that project-specific invoice rights can be
271 my $form = $main::form;
273 $form->{title} = "Edit";
278 $main::lxdebug->leave_sub();
282 $main::lxdebug->enter_sub();
286 my $form = $main::form;
288 # get all files stored in the webdav folder
289 if ($form->{invnumber} && $::instance_conf->get_webdav) {
290 my $webdav = SL::Webdav->new(
291 type => 'accounts_payable',
292 number => $form->{invnumber},
294 my @all_objects = $webdav->get_all_objects;
295 @{ $form->{WEBDAV} } = map { { name => $_->filename,
297 link => File::Spec->catfile($_->full_filedescriptor),
303 $main::lxdebug->leave_sub();
307 $main::lxdebug->enter_sub();
309 # Delay access check to after the invoice's been loaded so that
310 # project-specific invoice rights can be evaluated.
314 my $form = $main::form;
315 my %myconfig = %main::myconfig;
317 $form->create_links("AP", \%myconfig, "vendor");
322 if (!$params{dont_save}) {
323 %saved = map { ($_ => $form->{$_}) } qw(direct_debit taxincluded);
324 $saved{duedate} = $form->{duedate} if $form->{duedate};
325 $saved{currency} = $form->{currency} if $form->{currency};
326 $saved{taxincluded} = $form->{taxincluded} if $form->{taxincluded};
329 IR->get_vendor(\%myconfig, \%$form);
331 $form->{$_} = $saved{$_} for keys %saved;
332 $form->{rowcount} = 1;
333 $form->{AP_chart_id} = $form->{acc_trans} && $form->{acc_trans}->{AP} ? $form->{acc_trans}->{AP}->[0]->{chart_id} : $::instance_conf->get_ap_chart_id || $form->{AP_links}->{AP}->[0]->{chart_id};
335 # build the popup menus
336 $form->{taxincluded} = ($form->{id}) ? $form->{taxincluded} : "checked";
339 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
341 $::form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted;
343 $form->{employee} = "$form->{employee}--$form->{employee_id}";
345 AP->setup_form($form);
347 $main::lxdebug->leave_sub();
351 my @fields = qw(acc_trans_id gldate datepaid source memo paid AP_paid paid_project_id);
353 grep { $_->{paid} != 0 }
356 +{ map { ($_ => delete($::form->{"${_}_${idx}"})) } @fields }
357 } (1..$::form->{paidaccounts});
359 @payments = sort_by { DateTime->from_kivitendo($_->{datepaid}) } @payments;
361 $::form->{paidaccounts} = max scalar(@payments), 1;
363 foreach my $idx (1 .. scalar(@payments)) {
364 my $payment = $payments[$idx - 1];
365 $::form->{"${_}_${idx}"} = $payment->{$_} for @fields;
370 $main::lxdebug->enter_sub();
374 my $form = $main::form;
375 my %myconfig = %main::myconfig;
376 my $locale = $main::locale;
377 my $cgi = $::request->{cgi};
379 $::form->{invoice_obj} = SL::DB::PurchaseInvoice->new(id => $::form->{id})->load if $::form->{id};
381 $form->{initial_focus} = !($form->{amount_1} * 1) ? 'vendor_id' : 'row_' . $form->{rowcount};
383 $form->{title_} = $form->{title};
384 $form->{title} = $form->{title} eq 'Add' ? $locale->text('Add Accounts Payables Transaction') : $locale->text('Edit Accounts Payables Transaction');
386 # type=submit $locale->text('Add Accounts Payables Transaction')
387 # type=submit $locale->text('Edit Accounts Payables Transaction')
389 my $readonly = $form->{id} ? "readonly" : "";
391 $form->{radier} = ($::instance_conf->get_ap_changeable == 2)
392 ? ($form->current_date(\%myconfig) eq $form->{gldate})
393 : ($::instance_conf->get_ap_changeable == 1);
394 $readonly = $form->{radier} ? "" : $readonly;
396 $form->{readonly} = $readonly;
398 $form->{forex} = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'sell');
399 if ( $form->{forex} ) {
400 $form->{exchangerate} = $form->{forex};
404 $form->{exchangerate} = $form->{exchangerate} ? $form->format_amount(\%myconfig, $form->{exchangerate}) : '';
405 $form->{creditlimit} = $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
406 $form->{creditremaining} = $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
409 if (($rows = $form->numtextrows($form->{notes}, 50)) < 2) {
412 $form->{textarea_rows} = $rows;
414 $form->{creditremaining_plus} = ($form->{creditremaining} =~ /-/) ? "0" : "1";
416 my @old_project_ids = ();
419 if ($form->{"project_id_$_"}) {
420 push(@old_project_ids, $form->{"project_id_$_"});
423 (1..$form->{"rowcount"})
426 $form->get_lists("projects" => { "key" => "ALL_PROJECTS",
428 "old_id" => \@old_project_ids },
429 "charts" => { "key" => "ALL_CHARTS",
430 "transdate" => $form->{transdate} },
431 "taxcharts" => { "key" => "ALL_TAXCHARTS",
432 "module" => "AP" },);
435 { $_->{link_split} = [ split(/:/, $_->{link}) ]; }
436 @{ $form->{ALL_CHARTS} }
439 $form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted;
441 my %project_labels = ();
442 foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
443 $project_labels{$item->{id}} = $item->{projectnumber};
447 my $default_ap_amount_chart_id;
449 foreach my $item (@{ $form->{ALL_CHARTS} }) {
450 if ( grep({ $_ eq 'AP_amount' } @{ $item->{link_split} }) ) {
451 $default_ap_amount_chart_id //= $item->{id};
453 } elsif ( grep({ $_ eq 'AP_paid' } @{ $item->{link_split} }) ) {
454 push(@{ $form->{ALL_CHARTS_AP_paid} }, $item);
457 $charts{$item->{accno}} = $item;
460 my $follow_up_vc = $form->{vendor_id} ? SL::DB::Vendor->load_cached($form->{vendor_id})->name : '';
461 my $follow_up_trans_info = "$form->{invnumber} ($follow_up_vc)";
463 $::request->layout->add_javascripts("autocomplete_chart.js", "show_vc_details.js", "show_history.js", "follow_up.js", "kivi.Draft.js", "kivi.GL.js", "kivi.RecordTemplate.js", "kivi.File.js", "kivi.AP.js", "kivi.CustomerVendor.js", "kivi.Validator.js");
464 my $transdate = $::form->{transdate} ? DateTime->from_kivitendo($::form->{transdate}) : DateTime->today_local;
467 # $form->{totalpaid} is used by the action bar setup to determine
468 # whether or not canceling is allowed. Therefore it must be
469 # calculated prior to the action bar setup.
470 $form->{totalpaid} = sum map { $form->{"paid_${_}"} } (1..$form->{paidaccounts});
472 setup_ap_display_form_action_bar();
476 for my $i (1 .. $form->{rowcount}) {
479 $form->{"amount_$i"} = $form->format_amount(\%myconfig, $form->{"amount_$i"}, 2);
480 $form->{"tax_$i"} = $form->format_amount(\%myconfig, $form->{"tax_$i"}, 2);
482 my ($default_taxchart, $taxchart_to_use);
483 my $amount_chart_id = $form->{"AP_amount_chart_id_$i"} || $default_ap_amount_chart_id;
484 my @taxcharts = GL->get_active_taxes_for_chart($amount_chart_id, $transdate);
486 foreach my $item (@taxcharts) {
487 my $key = $item->id . "--" . $item->rate;
488 $first_taxchart //= $item;
489 $default_taxchart = $item if $item->{is_default};
490 $taxchart_to_use = $item if $key eq $form->{"taxchart_$i"};
493 $taxchart_to_use //= $default_taxchart // $first_taxchart;
494 my $selected_taxchart = $taxchart_to_use->id . '--' . $taxchart_to_use->rate;
495 $form->{"selected_taxchart_$i"} = $selected_taxchart;
496 $form->{"AP_amount_chart_id_$i"} = $amount_chart_id;
497 $form->{"taxcharts_$i"} = \@taxcharts;
500 $form->{taxchart_value_title_sub} = sub {
503 $item->{id} .'--'. $item->{rate},
504 $item->{taxdescription} .' '. ($item->{rate} * 100) .' %',
508 $form->{AP_paid_value_title_sub} = sub {
512 $item->{accno} .'--'. $item->{description}
516 $form->{invtotal_unformatted} = $form->{invtotal};
517 $form->{invtotal} = $form->format_amount(\%myconfig, $form->{invtotal}, 2);
521 if ( $form->{'paid_'. $form->{paidaccounts}} ) {
522 $form->{paidaccounts}++;
525 # default account for current assets (i.e. 1801 - SKR04)
526 $form->{accno_arap} = IS->get_standard_accno_current_assets(\%myconfig, \%$form);
528 for my $i (1 .. $form->{paidaccounts}) {
530 if ($form->{"paid_$i"}) {
531 $form->{"paid_$i"} = $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
533 if ($form->{"exchangerate_$i"} == 0) {
534 $form->{"exchangerate_$i"} = "";
536 $form->{"exchangerate_$i"} =
537 $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
541 if (SL::DB::Default->get->payments_changeable == 0) {
543 $changeable = ($form->{"acc_trans_id_$i"})? 0 : 1;
545 if (SL::DB::Default->get->payments_changeable == 2) {
547 $changeable = (($form->{"gldate_$i"} eq '') || $form->current_date(\%myconfig) eq $form->{"gldate_$i"});
550 #deaktivieren von gebuchten Zahlungen ausserhalb der Bücherkontrolle, vorher prüfen ob heute eingegeben
551 if ($form->date_closed($form->{"gldate_$i"})) {
555 $form->{'paidaccount_changeable_'. $i} = $changeable;
557 $form->{'labelpaid_project_id_'. $i} = $project_labels{$form->{'paid_project_id_'. $i}};
558 # accno and description as info text
559 $form->{'AP_paid_readonly_desc_' . $i} = $form->{'AP_paid_' . $i} ?
560 $form->{'AP_paid_' . $i} . " " . SL::DB::Manager::Chart->find_by(accno => $form->{'AP_paid_' . $i})->description
564 $form->{paid_missing} = $form->{invtotal_unformatted} - $form->{totalpaid};
566 print $form->parse_html_template('ap/form_header', {
567 today => DateTime->today,
568 currencies => SL::DB::Manager::Currency->get_all_sorted,
571 $main::lxdebug->leave_sub();
575 $::lxdebug->enter_sub;
582 my $follow_ups = FU->follow_ups('trans_id' => $::form->{id}, 'not_done' => 1);
584 if (@{ $follow_ups }) {
585 $num_due = sum map { $_->{due} * 1 } @{ $follow_ups };
586 $num_follow_ups = scalar @{ $follow_ups }
590 my $transdate = $::form->datetonum($::form->{transdate}, \%::myconfig);
591 my $closedto = $::form->datetonum($::form->{closedto}, \%::myconfig);
593 my $storno = $::form->{id}
594 && !IS->has_storno(\%::myconfig, $::form, 'ap')
595 && !IS->is_storno( \%::myconfig, $::form, 'ap', $::form->{id})
596 && ($::form->{totalpaid} == 0 || $::form->{totalpaid} eq '');
599 print $::form->parse_html_template('ap/form_footer', {
601 num_follow_ups => $num_follow_ups,
604 $::lxdebug->leave_sub;
608 $::auth->assert('ap_transactions');
610 SL::DB::PurchaseInvoice->new(id => $::form->{id})->load->mark_as_paid;
612 $::form->redirect($::locale->text("Marked as paid"));
616 $::form->{transdate} = DateTime->today_local->to_kivitendo if !$::form->{transdate};
617 $::form->{gldate} = $::form->{transdate} if !$::form->{gldate};
624 $main::lxdebug->enter_sub();
626 my $form = $main::form;
627 my %myconfig = %main::myconfig;
629 $main::auth->assert('ap_transactions');
633 $form->{invtotal} = 0;
635 delete @{ $form }{ grep { m/^tax_\d+$/ } keys %{ $form } };
637 map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
638 qw(exchangerate creditlimit creditremaining);
640 my @flds = qw(amount AP_amount projectnumber oldprojectnumber project_id taxchart);
642 my (@a, $j, $totaltax);
643 for my $i (1 .. $form->{rowcount}) {
644 $form->{"amount_$i"} = $form->parse_amount(\%myconfig, $form->{"amount_$i"});
645 if ($form->{"amount_$i"} || $params{keep_rows_without_amount}) {
648 my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
650 # calculate tax exactly the same way as AP in post_transaction via form->calculate_tax
652 ($tmpnetamount,$form->{"tax_$i"}) = $form->calculate_tax($form->{"amount_$i"},$rate,$form->{taxincluded},2);
653 $totaltax += $form->{"tax_$i"};
654 map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
658 $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
660 map { $form->{invtotal} += $form->{"amount_$_"} } (1 .. $form->{rowcount});
662 $form->{forex} = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'sell');
663 $form->{exchangerate} = $form->{forex} if $form->{forex};
665 $form->{invdate} = $form->{transdate};
667 if (($form->{previous_vendor_id} || $form->{vendor_id}) != $form->{vendor_id}) {
668 IR->get_vendor(\%::myconfig, $form);
669 if (($form->{rowcount} == 1) && ($form->{amount_1} == 0)) {
670 my $last_used_ap_chart = SL::DB::Vendor->load_cached($form->{vendor_id})->last_used_ap_chart;
671 $form->{"AP_amount_chart_id_1"} = $last_used_ap_chart->id if $last_used_ap_chart;
675 $form->{rowcount} = $count + ($params{dont_add_new_row} ? 0 : 1);
678 ($form->{taxincluded}) ? $form->{invtotal} : $form->{invtotal} + $totaltax;
681 for my $i (1 .. $form->{paidaccounts}) {
682 if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
685 $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
686 } qw(paid exchangerate);
688 $totalpaid += $form->{"paid_$i"};
690 $form->{"forex_$i"} = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'sell');
691 $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
695 $form->{creditremaining} -=
696 ($form->{invtotal} - $totalpaid + $form->{oldtotalpaid} -
697 $form->{oldinvtotal});
698 $form->{oldinvtotal} = $form->{invtotal};
699 $form->{oldtotalpaid} = $totalpaid;
703 $main::lxdebug->leave_sub();
708 $main::lxdebug->enter_sub();
710 my $form = $main::form;
711 my %myconfig = %main::myconfig;
712 my $locale = $main::locale;
714 $main::auth->assert('ap_transactions');
715 $form->mtime_ischanged('ap');
717 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
719 my $invdate = $form->datetonum($form->{transdate}, \%myconfig);
721 for my $i (1 .. $form->{paidaccounts}) {
722 if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
723 my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
725 $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
727 $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
728 if ($form->date_max_future($form->{"datepaid_$i"}, \%myconfig));
730 #Zusätzlich noch das Buchungsdatum in die Bücherkontrolle einbeziehen
731 # (Dient zur Prüfung ob ZE oder ZA geprüft werden soll)
732 $form->error($locale->text('Cannot post payment for a closed period!'))
733 if ($form->date_closed($form->{"datepaid_$i"}) && !$form->date_closed($form->{"gldate_$i"}, \%myconfig));
735 if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
736 $form->{"exchangerate_$i"} = $form->{exchangerate}
737 if ($invdate == $datepaid);
738 $form->isblank("exchangerate_$i",
739 $locale->text('Exchangerate for payment missing!'));
744 ($form->{AP}) = split /--/, $form->{AP};
745 ($form->{AP_paid}) = split /--/, $form->{AP_paid};
746 if (AP->post_payment(\%myconfig, \%$form)) {
747 $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
748 $form->{what_done} = 'invoice';
749 $form->{addition} = "PAYMENT POSTED";
751 $form->redirect($locale->text('Payment posted!'))
753 $form->error($locale->text('Cannot post payment!'));
757 $main::lxdebug->leave_sub();
762 $main::lxdebug->enter_sub();
764 my $form = $main::form;
765 my %myconfig = %main::myconfig;
766 my $locale = $main::locale;
768 $main::auth->assert('ap_transactions');
769 $form->mtime_ischanged('ap');
773 # check if there is a vendor, invoice, due date and invnumber
774 $form->isblank("transdate", $locale->text("Invoice Date missing!"));
775 $form->isblank("duedate", $locale->text("Due Date missing!"));
776 $form->isblank("vendor_id", $locale->text('Vendor missing!'));
777 $form->isblank("invnumber", $locale->text('Invoice Number missing!'));
778 $form->isblank("AP_chart_id", $locale->text('No contra account selected!'));
780 if ($myconfig{mandatory_departments} && !$form->{department_id}) {
781 $form->{saved_message} = $::locale->text('You have to specify a department.');
786 my $closedto = $form->datetonum($form->{closedto}, \%myconfig);
787 my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
789 $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
790 if ($form->date_max_future($form->{"transdate"}, \%myconfig));
791 $form->error($locale->text('Cannot post transaction for a closed period!')) if ($form->date_closed($form->{"transdate"}, \%myconfig));
793 my $zero_amount_posting = 1;
794 for my $i (1 .. $form->{rowcount}) {
795 if ($form->parse_amount(\%myconfig, $form->{"amount_$i"})) {
796 $zero_amount_posting = 0;
801 $form->error($locale->text('Zero amount posting!')) if $zero_amount_posting;
803 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
804 if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency}));
807 for my $i (1 .. $form->{paidaccounts}) {
808 if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
809 my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
811 $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
813 $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
814 if ($form->date_max_future($form->{"datepaid_$i"}, \%myconfig));
816 #Zusätzlich noch das Buchungsdatum in die Bücherkontrolle einbeziehen
817 # (Dient zur Prüfung ob ZE oder ZA geprüft werden soll)
818 $form->error($locale->text('Cannot post payment for a closed period!'))
819 if ($form->date_closed($form->{"datepaid_$i"}) && !$form->date_closed($form->{"gldate_$i"}, \%myconfig));
821 if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
822 $form->{"exchangerate_$i"} = $form->{exchangerate}
823 if ($transdate == $datepaid);
824 $form->isblank("exchangerate_$i",
825 $locale->text('Exchangerate for payment missing!'));
831 # if old vendor ne vendor redo form
832 if (($form->{previous_customer_id} || $form->{customer_id}) != $form->{customer_id}) {
834 $::dispatcher->end_request;
838 $form->{id} = 0 if $form->{postasnew};
840 if (AP->post_transaction(\%myconfig, \%$form)) {
841 # create webdav folder
842 if ($::instance_conf->get_webdav) {
843 SL::Webdav->new(type => 'accounts_payable',
844 number => $form->{invnumber},
848 if(!exists $form->{addition} && $form->{id} ne "") {
849 $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
850 $form->{addition} = "POSTED";
851 $form->{what_done} = "invoice";
854 # no restore_from_session_id needed. we like to have a newly generated
855 # list of invoices for bank transactions
856 print $form->redirect_header($form->{callback}) if ($form->{callback} =~ /BankTransaction/);
857 $form->redirect($locale->text('AP transaction posted.') . ' ' . $locale->text('ID') . ': ' . $form->{id}) unless $inline;
858 # TODO Add callback/return flag in myconfig
859 # With version 3.5 we can add documents, but only after posting. there should be a flag in myconfig for the user
860 # $form->{callback} ||= 'ap.pl?action=edit&id=' . $form->{id} if $myconfig{no_reset_arap};
863 $form->error($locale->text('Cannot post transaction!'));
866 $main::lxdebug->leave_sub();
870 $main::lxdebug->enter_sub();
872 my $form = $main::form;
873 my %myconfig = %main::myconfig;
875 $main::auth->assert('ap_transactions');
877 $form->{postasnew} = 1;
879 if(!exists $form->{addition} && $form->{id} ne "") {
880 # does this work? post_as_new for ap doesn't immediately save the
881 # invoice, because the invnumber has to be entered by hand.
882 # And the value of $form->{postasnew} isn't checked when calling post
883 $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
884 $form->{addition} = "POSTED AS NEW";
885 $form->{what_done} = "invoice";
888 # /saving the history
891 $main::lxdebug->leave_sub();
895 $main::lxdebug->enter_sub();
897 my $form = $main::form;
898 my %myconfig = %main::myconfig;
900 $main::auth->assert('ap_transactions');
902 map { delete $form->{$_} } qw(printed emailed queued invnumber deliverydate id datepaid_1 gldate_1 acc_trans_id_1 source_1 memo_1 paid_1 exchangerate_1 AP_paid_1 storno convert_from_oe_id);
903 $form->{paidaccounts} = 1;
906 my $today = DateTime->today_local;
907 $form->{transdate} = $today->to_kivitendo;
908 $form->{duedate} = $form->{transdate};
910 if ($form->{vendor_id}) {
911 my $payment_terms = SL::DB::Vendor->load_cached($form->{vendor_id})->payment;
912 $form->{duedate} = $payment_terms->calc_date(reference_date => $today)->to_kivitendo if $payment_terms;
917 $main::lxdebug->leave_sub();
921 my $form = $main::form;
922 my %myconfig = %main::myconfig;
923 my $locale = $main::locale;
925 $main::auth->assert('ap_transactions');
927 if (AP->delete_transaction(\%myconfig, \%$form)) {
929 if(!exists $form->{addition}) {
930 $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
931 $form->{addition} = "DELETED";
932 $form->{what_done} = "invoice";
935 # /saving the history
936 $form->redirect($locale->text('Transaction deleted!'));
938 $form->error($locale->text('Cannot delete transaction!'));
942 $main::lxdebug->enter_sub();
944 my $form = $main::form;
945 my %myconfig = %main::myconfig;
946 my $locale = $main::locale;
948 $form->{title} = $locale->text('Vendor Invoices & AP Transactions');
950 $form->get_lists(projects => { "key" => "ALL_PROJECTS", "all" => 1 });
952 $::form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted;
953 # constants and subs for template
954 $form->{vc_keys} = sub { "$_[0]->{name}--$_[0]->{id}" };
956 $::request->layout->add_javascripts("autocomplete_project.js");
958 setup_ap_search_action_bar();
961 print $form->parse_html_template('ap/search', { %myconfig });
963 $main::lxdebug->leave_sub();
966 sub create_subtotal_row {
967 $main::lxdebug->enter_sub();
969 my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
971 my $form = $main::form;
972 my %myconfig = %main::myconfig;
974 my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
976 map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
978 $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
980 map { $totals->{$_} = 0 } @{ $subtotal_columns };
982 $main::lxdebug->leave_sub();
987 sub ap_transactions {
988 $main::lxdebug->enter_sub();
990 my $form = $main::form;
991 my %myconfig = %main::myconfig;
992 my $locale = $main::locale;
994 report_generator_set_default_sort('transdate', 1);
996 AP->ap_transactions(\%myconfig, \%$form);
998 $form->{title} = $locale->text('Vendor Invoices & AP Transactions');
1000 my $report = SL::ReportGenerator->new(\%myconfig, $form);
1003 qw(transdate id type invnumber ordnumber name netamount tax amount paid datepaid
1004 due duedate transaction_description notes employee globalprojectnumber department
1005 vendornumber country ustid taxzone payment_terms charts direct_debit);
1007 my @hidden_variables = map { "l_${_}" } @columns;
1008 push @hidden_variables, "l_subtotal", qw(open closed vendor invnumber ordnumber transaction_description notes project_id transdatefrom transdateto
1009 parts_partnumber parts_description department_id);
1011 my $href = build_std_url('action=ap_transactions', grep { $form->{$_} } @hidden_variables);
1014 'transdate' => { 'text' => $locale->text('Date'), },
1015 'id' => { 'text' => $locale->text('ID'), },
1016 'type' => { 'text' => $locale->text('Type'), },
1017 'invnumber' => { 'text' => $locale->text('Invoice'), },
1018 'ordnumber' => { 'text' => $locale->text('Order'), },
1019 'name' => { 'text' => $locale->text('Vendor'), },
1020 'netamount' => { 'text' => $locale->text('Amount'), },
1021 'tax' => { 'text' => $locale->text('Tax'), },
1022 'amount' => { 'text' => $locale->text('Total'), },
1023 'paid' => { 'text' => $locale->text('Paid'), },
1024 'datepaid' => { 'text' => $locale->text('Date Paid'), },
1025 'due' => { 'text' => $locale->text('Amount Due'), },
1026 'duedate' => { 'text' => $locale->text('Due Date'), },
1027 'transaction_description' => { 'text' => $locale->text('Transaction description'), },
1028 'notes' => { 'text' => $locale->text('Notes'), },
1029 'employee' => { 'text' => $locale->text('Employee'), },
1030 'globalprojectnumber' => { 'text' => $locale->text('Document Project Number'), },
1031 'department' => { 'text' => $locale->text('Department'), },
1032 'vendornumber' => { 'text' => $locale->text('Vendor Number'), },
1033 'country' => { 'text' => $locale->text('Country'), },
1034 'ustid' => { 'text' => $locale->text('USt-IdNr.'), },
1035 'taxzone' => { 'text' => $locale->text('Tax rate'), },
1036 'payment_terms' => { 'text' => $locale->text('Payment Terms'), },
1037 'charts' => { 'text' => $locale->text('Chart'), },
1038 'direct_debit' => { 'text' => $locale->text('direct debit'), },
1041 foreach my $name (qw(id transdate duedate invnumber ordnumber name datepaid employee shippingpoint shipvia transaction_description direct_debit department)) {
1042 my $sortdir = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
1043 $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
1046 my %column_alignment = map { $_ => 'right' } qw(netamount tax amount paid due);
1048 $form->{"l_type"} = "Y";
1049 map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
1051 $report->set_columns(%column_defs);
1052 $report->set_column_order(@columns);
1054 $report->set_export_options('ap_transactions', @hidden_variables, qw(sort sortdir));
1056 $report->set_sort_indicator($form->{sort}, $form->{sortdir});
1058 my $department_description;
1059 $department_description = SL::DB::Manager::Department->find_by(id => $form->{department_id})->description if $form->{department_id};
1062 push @options, $locale->text('Vendor') . " : $form->{vendor}" if ($form->{vendor});
1063 push @options, $locale->text('Contact Person') . " : $form->{cp_name}" if ($form->{cp_name});
1064 push @options, $locale->text('Department') . " : $department_description" if ($form->{department_id});
1065 push @options, $locale->text('Invoice Number') . " : $form->{invnumber}" if ($form->{invnumber});
1066 push @options, $locale->text('Order Number') . " : $form->{ordnumber}" if ($form->{ordnumber});
1067 push @options, $locale->text('Notes') . " : $form->{notes}" if ($form->{notes});
1068 push @options, $locale->text('Transaction description') . " : $form->{transaction_description}" if ($form->{transaction_description});
1069 push @options, $locale->text('Part Description') . " : $form->{parts_description}" if $form->{parts_description};
1070 push @options, $locale->text('Part Number') . " : $form->{parts_partnumber}" if $form->{parts_partnumber};
1071 push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1) if ($form->{transdatefrom});
1072 push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1) if ($form->{transdateto});
1073 push @options, $locale->text('Open') if ($form->{open});
1074 push @options, $locale->text('Closed') if ($form->{closed});
1076 $report->set_options('top_info_text' => join("\n", @options),
1077 'output_format' => 'HTML',
1078 'title' => $form->{title},
1079 'attachment_basename' => $locale->text('vendor_invoice_list') . strftime('_%Y%m%d', localtime time),
1081 $report->set_options_from_form();
1082 $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
1084 # add sort and escape callback, this one we use for the add sub
1085 $form->{callback} = $href .= "&sort=$form->{sort}";
1087 # escape callback for href
1088 my $callback = $form->escape($href);
1090 my @subtotal_columns = qw(netamount amount paid due);
1092 my %totals = map { $_ => 0 } @subtotal_columns;
1093 my %subtotals = map { $_ => 0 } @subtotal_columns;
1097 foreach my $ap (@{ $form->{AP} }) {
1098 $ap->{tax} = $ap->{amount} - $ap->{netamount};
1099 $ap->{due} = $ap->{amount} - $ap->{paid};
1101 map { $subtotals{$_} += $ap->{$_};
1102 $totals{$_} += $ap->{$_} } @subtotal_columns;
1104 map { $ap->{$_} = $form->format_amount(\%myconfig, $ap->{$_}, 2) } qw(netamount tax amount paid due);
1106 my $is_storno = $ap->{storno} && $ap->{storno_id};
1107 my $has_storno = $ap->{storno} && !$ap->{storno_id};
1109 if ($ap->{invoice}) {
1111 $has_storno ? $locale->text("Invoice with Storno (abbreviation)")
1112 : $is_storno ? $locale->text("Storno (one letter abbreviation)")
1113 : $locale->text("Invoice (one letter abbreviation)");
1116 $has_storno ? $locale->text("AP Transaction with Storno (abbreviation)")
1117 : $is_storno ? $locale->text("AP Transaction Storno (one letter abbreviation)")
1118 : $locale->text("AP Transaction (abbreviation)");
1121 $ap->{direct_debit} = $ap->{direct_debit} ? $::locale->text('yes') : $::locale->text('no');
1125 foreach my $column (@columns) {
1127 'data' => $ap->{$column},
1128 'align' => $column_alignment{$column},
1132 $row->{invnumber}->{link} = build_std_url("script=" . ($ap->{invoice} ? 'ir.pl' : 'ap.pl'), 'action=edit')
1133 . "&id=" . E($ap->{id}) . "&callback=${callback}";
1135 my $row_set = [ $row ];
1137 if (($form->{l_subtotal} eq 'Y')
1138 && (($idx == (scalar @{ $form->{AP} } - 1))
1139 || ($ap->{ $form->{sort} } ne $form->{AP}->[$idx + 1]->{ $form->{sort} }))) {
1140 push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
1143 $report->add_data($row_set);
1148 $report->add_separator();
1149 $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
1151 setup_ap_transactions_action_bar();
1152 $report->generate_with_headers();
1154 $main::lxdebug->leave_sub();
1158 $main::lxdebug->enter_sub();
1160 my $form = $main::form;
1161 my %myconfig = %main::myconfig;
1162 my $locale = $main::locale;
1164 $main::auth->assert('ap_transactions');
1166 if (IS->has_storno(\%myconfig, $form, 'ap')) {
1167 $form->{title} = $locale->text("Cancel Accounts Payables Transaction");
1168 $form->error($locale->text("Transaction has already been cancelled!"));
1171 $form->error($locale->text('Cannot post storno for a closed period!'))
1172 if ( $form->date_closed($form->{transdate}, \%myconfig));
1174 AP->storno($form, \%myconfig, $form->{id});
1176 # saving the history
1177 if(!exists $form->{addition} && $form->{id} ne "") {
1178 $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1179 $form->{addition} = "STORNO";
1180 $form->{what_done} = "invoice";
1181 $form->save_history;
1183 # /saving the history
1185 $form->redirect(sprintf $locale->text("Transaction %d cancelled."), $form->{storno_id});
1187 $main::lxdebug->leave_sub();
1190 sub add_from_purchase_order {
1191 $main::auth->assert('ap_transactions');
1193 return if !$::form->{id};
1195 my $order_id = delete $::form->{id};
1196 my $order = SL::DB::Order->new(id => $order_id)->load(with => [ 'vendor', 'currency', 'payment_terms' ]);
1198 return if $order->type ne 'purchase_order';
1200 my $today = DateTime->today_local;
1201 $::form->{title} = "Add";
1202 $::form->{vc} = 'vendor';
1203 $::form->{vendor_id} = $order->customervendor->id;
1204 $::form->{vendor} = $order->vendor->name;
1205 $::form->{convert_from_oe_id} = $order->id;
1206 $::form->{globalproject_id} = $order->globalproject_id;
1207 $::form->{ordnumber} = $order->number;
1208 $::form->{department_id} = $order->department_id;
1209 $::form->{currency} = $order->currency->name;
1210 $::form->{taxincluded} = 1; # we use amount below, so tax is included
1211 $::form->{transdate} = $today->to_kivitendo;
1212 $::form->{duedate} = $today->to_kivitendo;
1213 $::form->{duedate} = $order->payment_terms->calc_date(reference_date => $today)->to_kivitendo if $order->payment_terms;
1216 my $config_po_ap_workflow_chart_id = $::instance_conf->get_workflow_po_ap_chart_id;
1218 my ($first_taxchart, $default_taxchart, $taxchart_to_use);
1220 @taxcharts = GL->get_active_taxes_for_chart($config_po_ap_workflow_chart_id, $::form->{transdate}) if (defined $config_po_ap_workflow_chart_id);
1221 foreach my $item (@taxcharts) {
1222 $first_taxchart //= $item;
1223 $default_taxchart = $item if $item->{is_default};
1225 $taxchart_to_use = $default_taxchart // $first_taxchart;
1227 my %pat = $order->calculate_prices_and_taxes;
1229 foreach my $amount_chart (keys %{$pat{amounts}}) {
1230 my $tax = SL::DB::Manager::Tax->find_by(id => $pat{amounts}->{$amount_chart}->{tax_id});
1231 # If tax chart from order for this amount is active, use it. Use default or first tax chart for selected chart else.
1232 if (defined $config_po_ap_workflow_chart_id) {
1233 $taxchart_to_use = (first {$_->{id} == $tax->id} @taxcharts) // $taxchart_to_use;
1235 $taxchart_to_use = $tax;
1238 $::form->{"AP_amount_chart_id_$row"} = $config_po_ap_workflow_chart_id // $amount_chart;
1239 $::form->{"previous_AP_amount_chart_id_$row"} = $::form->{"AP_amount_chart_id_$row"};
1240 $::form->{"amount_$row"} = $::form->format_amount(\%::myconfig, $pat{amounts}->{$amount_chart}->{amount} * (1 + $tax->rate), 2);
1241 $::form->{"taxchart_$row"} = $taxchart_to_use->id . '--' . $taxchart_to_use->rate;
1242 $::form->{"project_id_$row"} = $order->globalproject_id;
1247 my $last_used_ap_chart = SL::DB::Vendor->load_cached($::form->{vendor_id})->last_used_ap_chart;
1248 $::form->{"AP_amount_chart_id_$row"} = $last_used_ap_chart->id if $last_used_ap_chart;
1249 $::form->{rowcount} = $row;
1252 keep_rows_without_amount => 1,
1253 dont_add_new_row => 1,
1257 sub setup_ap_search_action_bar {
1260 for my $bar ($::request->layout->get('actionbar')) {
1263 $::locale->text('Search'),
1264 submit => [ '#form', { action => "ap_transactions" } ],
1265 checks => [ 'kivi.validate_form' ],
1266 accesskey => 'enter',
1270 $::request->layout->add_javascripts('kivi.Validator.js');
1273 sub setup_ap_transactions_action_bar {
1275 my $may_edit_create = $::auth->assert('ap_transactions', 1);
1277 for my $bar ($::request->layout->get('actionbar')) {
1280 action => [ t8('Add') ],
1282 t8('Purchase Invoice'),
1283 link => [ 'ir.pl?action=add' ],
1284 disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.') : undef,
1288 t8('AP Transaction'),
1289 link => [ 'ap.pl?action=add' ],
1290 disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.') : undef,
1292 ], # end of combobox "Add"
1297 sub setup_ap_display_form_action_bar {
1298 my $transdate = $::form->datetonum($::form->{transdate}, \%::myconfig);
1299 my $closedto = $::form->datetonum($::form->{closedto}, \%::myconfig);
1300 my $is_closed = $transdate <= $closedto;
1302 my $change_never = $::instance_conf->get_ap_changeable == 0;
1303 my $change_on_same_day_only = $::instance_conf->get_ap_changeable == 2 && ($::form->current_date(\%::myconfig) ne $::form->{gldate});
1305 my $is_storno = IS->is_storno(\%::myconfig, $::form, 'ap', $::form->{id});
1306 my $has_storno = IS->has_storno(\%::myconfig, $::form, 'ap');
1308 my $may_edit_create = $::auth->assert('ap_transactions', 1);
1310 my $has_sepa_exports;
1311 if ($::form->{id}) {
1312 my $invoice = SL::DB::Manager::PurchaseInvoice->find_by(id => $::form->{id});
1313 $has_sepa_exports = 1 if ($invoice->find_sepa_export_items()->[0]);
1316 my $is_linked_bank_transaction;
1318 && SL::DB::Default->get->payments_changeable != 0
1319 && SL::DB::Manager::BankTransactionAccTrans->find_by(ap_id => $::form->{id})) {
1321 $is_linked_bank_transaction = 1;
1324 for my $bar ($::request->layout->get('actionbar')) {
1328 submit => [ '#form', { action => "update" } ],
1329 id => 'update_button',
1330 checks => [ 'kivi.validate_form' ],
1331 accesskey => 'enter',
1332 disabled => !$may_edit_create ? t8('You must not change this AP transaction.') : undef,
1338 submit => [ '#form', { action => "post" } ],
1339 checks => [ 'kivi.validate_form', 'kivi.AP.check_fields_before_posting', 'kivi.AP.check_duplicate_invnumber' ],
1340 disabled => !$may_edit_create ? t8('You must not change this AP transaction.')
1341 : $is_closed ? t8('The billing period has already been locked.')
1342 : $is_storno ? t8('A canceled invoice cannot be posted.')
1343 : ($::form->{id} && $change_never) ? t8('Changing invoices has been disabled in the configuration.')
1344 : ($::form->{id} && $change_on_same_day_only) ? t8('Invoices can only be changed on the day they are posted.')
1345 : $is_linked_bank_transaction ? t8('This transaction is linked with a bank transaction. Please undo and redo the bank transaction booking if needed.')
1350 submit => [ '#form', { action => "post_payment" } ],
1351 checks => [ 'kivi.validate_form' ],
1352 disabled => !$may_edit_create ? t8('You must not change this AP transaction.')
1353 : !$::form->{id} ? t8('This invoice has not been posted yet.')
1354 : $is_linked_bank_transaction ? t8('This transaction is linked with a bank transaction. Please undo and redo the bank transaction booking if needed.')
1357 action => [ t8('Mark as paid'),
1358 submit => [ '#form', { action => "mark_as_paid" } ],
1359 confirm => t8('This will remove the invoice from showing as unpaid even if the unpaid amount does not match the amount. Proceed?'),
1360 disabled => !$may_edit_create ? t8('You must not change this AP transaction.')
1361 : !$::form->{id} ? t8('This invoice has not been posted yet.')
1363 only_if => $::instance_conf->get_is_show_mark_as_paid,
1365 ], # end of combobox "Post"
1368 action => [ t8('Storno'),
1369 submit => [ '#form', { action => "storno" } ],
1370 checks => [ 'kivi.validate_form', 'kivi.AP.check_fields_before_posting' ],
1371 confirm => t8('Do you really want to cancel this invoice?'),
1372 disabled => !$may_edit_create ? t8('You must not change this AP transaction.')
1373 : !$::form->{id} ? t8('This invoice has not been posted yet.')
1374 : $has_storno ? t8('This invoice has been canceled already.')
1375 : $is_storno ? t8('Reversal invoices cannot be canceled.')
1376 : $::form->{totalpaid} ? t8('Invoices with payments cannot be canceled.')
1377 : $has_sepa_exports ? t8('This invoice has been linked with a sepa export, undo this first.')
1380 action => [ t8('Delete'),
1381 submit => [ '#form', { action => "delete" } ],
1382 confirm => t8('Do you really want to delete this object?'),
1383 disabled => !$may_edit_create ? t8('You must not change this AP transaction.')
1384 : !$::form->{id} ? t8('This invoice has not been posted yet.')
1385 : $change_never ? t8('Changing invoices has been disabled in the configuration.')
1386 : $change_on_same_day_only ? t8('Invoices can only be changed on the day they are posted.')
1387 : $has_storno ? t8('This invoice has been canceled already.')
1388 : $is_closed ? t8('The billing period has already been locked.')
1389 : $has_sepa_exports ? t8('This invoice has been linked with a sepa export, undo this first.')
1390 : $is_linked_bank_transaction ? t8('This transaction is linked with a bank transaction. Please undo and redo the bank transaction booking if needed.')
1393 ], # end of combobox "Storno"
1398 action => [ t8('Workflow') ],
1401 submit => [ '#form', { action => "use_as_new" } ],
1402 checks => [ 'kivi.validate_form' ],
1403 disabled => !$may_edit_create ? t8('You must not change this AP transaction.')
1404 : !$::form->{id} ? t8('This invoice has not been posted yet.')
1407 ], # end of combobox "Workflow"
1410 action => [ t8('more') ],
1413 call => [ 'set_history_window', $::form->{id} * 1, 'glid' ],
1414 disabled => !$::form->{id} ? t8('This invoice has not been posted yet.') : undef,
1418 call => [ 'follow_up_window' ],
1419 disabled => !$::form->{id} ? t8('This invoice has not been posted yet.') : undef,
1422 t8('Record templates'),
1423 call => [ 'kivi.RecordTemplate.popup', 'ap_transaction' ],
1424 disabled => !$may_edit_create ? t8('You must not change this AP transaction.') : undef,
1428 call => [ 'kivi.Draft.popup', 'ap', 'invoice', $::form->{draft_id}, $::form->{draft_description} ],
1429 disabled => !$may_edit_create ? t8('You must not change this AP transaction.')
1430 : $::form->{id} ? t8('This invoice has already been posted.')
1431 : $is_closed ? t8('The billing period has already been locked.')
1434 ], # end of combobox "more"
1437 $::request->layout->add_javascripts('kivi.Validator.js');