Kontoauszug verbuchen -> Buchung erstellen -> Lieferanten-Filter verbessern
[kivitendo-erp.git] / SL / Controller / BankTransaction.pm
1 package SL::Controller::BankTransaction;
2
3 # idee- möglichkeit bankdaten zu übernehmen in stammdaten
4 # erst Kontenabgleich, um alle gl-Einträge wegzuhaben
5 use strict;
6
7 use parent qw(SL::Controller::Base);
8
9 use SL::Controller::Helper::GetModels;
10 use SL::Controller::Helper::ReportGenerator;
11 use SL::ReportGenerator;
12
13 use SL::DB::BankTransaction;
14 use SL::Helper::Flash;
15 use SL::Locale::String;
16 use SL::SEPA;
17 use SL::DB::Invoice;
18 use SL::DB::PurchaseInvoice;
19 use SL::DB::RecordLink;
20 use SL::JSON;
21 use SL::DB::Chart;
22 use SL::DB::AccTransaction;
23 use SL::DB::Tax;
24 use SL::DB::Draft;
25 use SL::DB::BankAccount;
26 use SL::DBUtils qw(like);
27 use SL::Presenter;
28 use List::Util qw(max);
29
30 use Rose::Object::MakeMethods::Generic
31 (
32  'scalar --get_set_init' => [ qw(models) ],
33 );
34
35 __PACKAGE__->run_before('check_auth');
36
37
38 #
39 # actions
40 #
41
42 sub action_search {
43   my ($self) = @_;
44
45   my $bank_accounts = SL::DB::Manager::BankAccount->get_all_sorted( query => [ obsolete => 0 ] );
46
47   $self->render('bank_transactions/search',
48                  BANK_ACCOUNTS => $bank_accounts);
49 }
50
51 sub action_list_all {
52   my ($self) = @_;
53
54   $self->make_filter_summary;
55   $self->prepare_report;
56
57   $self->report_generator_list_objects(report => $self->{report}, objects => $self->models->get);
58 }
59
60 sub action_list {
61   my ($self) = @_;
62
63   if (!$::form->{filter}{bank_account}) {
64     flash('error', t8('No bank account chosen!'));
65     $self->action_search;
66     return;
67   }
68
69   my $sort_by = $::form->{sort_by} || 'transdate';
70   $sort_by = 'transdate' if $sort_by eq 'proposal';
71   $sort_by .= $::form->{sort_dir} ? ' DESC' : ' ASC';
72
73   my $fromdate = $::locale->parse_date_to_object($::form->{filter}->{fromdate});
74   my $todate   = $::locale->parse_date_to_object($::form->{filter}->{todate});
75   $todate->add( days => 1 ) if $todate;
76
77   my @where = ();
78   push @where, (transdate => { ge => $fromdate }) if ($fromdate);
79   push @where, (transdate => { lt => $todate })   if ($todate);
80   my $bank_account = SL::DB::Manager::BankAccount->find_by( id => $::form->{filter}{bank_account} );
81   # bank_transactions no younger than starting date,
82   # including starting date (same search behaviour as fromdate)
83   # but OPEN invoices to be matched may be from before
84   if ( $bank_account->reconciliation_starting_date ) {
85     push @where, (transdate => { ge => $bank_account->reconciliation_starting_date });
86   };
87
88   my $bank_transactions = SL::DB::Manager::BankTransaction->get_all(where => [ amount => {ne => \'invoice_amount'},
89                                                                                local_bank_account_id => $::form->{filter}{bank_account},
90                                                                                @where ],
91                                                                     with_objects => [ 'local_bank_account', 'currency' ],
92                                                                     sort_by => $sort_by, limit => 10000);
93
94   my $all_open_ar_invoices = SL::DB::Manager::Invoice->get_all(where => [amount => { gt => \'paid' }], with_objects => 'customer');
95   my $all_open_ap_invoices = SL::DB::Manager::PurchaseInvoice->get_all(where => [amount => { gt => \'paid' }], with_objects => 'vendor');
96
97   my @all_open_invoices;
98   # filter out invoices with less than 1 cent outstanding
99   push @all_open_invoices, grep { abs($_->amount - $_->paid) >= 0.01 } @{ $all_open_ar_invoices };
100   push @all_open_invoices, grep { abs($_->amount - $_->paid) >= 0.01 } @{ $all_open_ap_invoices };
101
102   # try to match each bank_transaction with each of the possible open invoices
103   # by awarding points
104
105   foreach my $bt (@{ $bank_transactions }) {
106     next unless $bt->{remote_name};  # bank has no name, usually fees, use create invoice to assign
107
108     $bt->{remote_name} .= $bt->{remote_name_1} if $bt->{remote_name_1};
109
110     # try to match the current $bt to each of the open_invoices, saving the
111     # results of get_agreement_with_invoice in $open_invoice->{agreement} and
112     # $open_invoice->{rule_matches}.
113
114     # The values are overwritten each time a new bt is checked, so at the end
115     # of each bt the likely results are filtered and those values are stored in
116     # the arrays $bt->{proposals} and $bt->{rule_matches}, and the agreement
117     # score is stored in $bt->{agreement}
118
119     foreach my $open_invoice (@all_open_invoices){
120       ($open_invoice->{agreement}, $open_invoice->{rule_matches}) = $bt->get_agreement_with_invoice($open_invoice);
121     };
122
123     $bt->{proposals} = [];
124
125     my $agreement = 15;
126     my $min_agreement = 3; # suggestions must have at least this score
127
128     my $max_agreement = max map { $_->{agreement} } @all_open_invoices;
129
130     # add open_invoices with highest agreement into array $bt->{proposals}
131     if ( $max_agreement >= $min_agreement ) {
132       $bt->{proposals} = [ grep { $_->{agreement} == $max_agreement } @all_open_invoices ];
133       $bt->{agreement} = $max_agreement; #scalar @{ $bt->{proposals} } ? $agreement + 1 : '';
134
135       # store the rule_matches in a separate array, so they can be displayed in template
136       foreach ( @{ $bt->{proposals} } ) {
137         push(@{$bt->{rule_matches}}, $_->{rule_matches});
138       };
139     };
140   }  # finished one bt
141   # finished all bt
142
143   # separate filter for proposals (second tab, agreement >= 5 and exactly one match)
144   # to qualify as a proposal there has to be
145   # * agreement >= 5  TODO: make threshold configurable in configuration
146   # * there must be only one exact match
147   # * depending on whether sales or purchase the amount has to have the correct sign (so Gutschriften don't work?)
148   my $proposal_threshold = 5;
149   my @proposals = grep { $_->{agreement} >= $proposal_threshold
150                          and 1 == scalar @{ $_->{proposals} }
151                          and (@{ $_->{proposals} }[0]->is_sales ? abs(@{ $_->{proposals} }[0]->amount - $_->amount) < 0.01  : abs(@{ $_->{proposals} }[0]->amount + $_->amount) < 0.01) } @{ $bank_transactions };
152
153   # sort bank transaction proposals by quality (score) of proposal
154   $bank_transactions = [ sort { $a->{agreement} <=> $b->{agreement} } @{ $bank_transactions } ] if $::form->{sort_by} eq 'proposal' and $::form->{sort_dir} == 1;
155   $bank_transactions = [ sort { $b->{agreement} <=> $a->{agreement} } @{ $bank_transactions } ] if $::form->{sort_by} eq 'proposal' and $::form->{sort_dir} == 0;
156
157
158   $self->render('bank_transactions/list',
159                 title             => t8('Bank transactions MT940'),
160                 BANK_TRANSACTIONS => $bank_transactions,
161                 PROPOSALS         => \@proposals,
162                 bank_account      => $bank_account );
163 }
164
165 sub action_assign_invoice {
166   my ($self) = @_;
167
168   $self->{transaction} = SL::DB::Manager::BankTransaction->find_by(id => $::form->{bt_id});
169
170   $self->render('bank_transactions/assign_invoice', { layout  => 0 },
171                 title      => t8('Assign invoice'),);
172 }
173
174 sub action_create_invoice {
175   my ($self) = @_;
176   my %myconfig = %main::myconfig;
177
178   $self->{transaction} = SL::DB::Manager::BankTransaction->find_by(id => $::form->{bt_id});
179   my $vendor_of_transaction = SL::DB::Manager::Vendor->find_by(account_number => $self->{transaction}->{remote_account_number});
180
181   my $drafts = SL::DB::Manager::Draft->get_all(where => [ module => 'ap'] , with_objects => 'employee');
182
183   my @filtered_drafts;
184
185   foreach my $draft ( @{ $drafts } ) {
186     my $draft_as_object = YAML::Load($draft->form);
187     my $vendor = SL::DB::Manager::Vendor->find_by(id => $draft_as_object->{vendor_id});
188     $draft->{vendor} = $vendor->name;
189     $draft->{vendor_id} = $vendor->id;
190     push @filtered_drafts, $draft;
191   }
192
193   #Filter drafts
194   @filtered_drafts = grep { $_->{vendor_id} == $vendor_of_transaction->id } @filtered_drafts if $vendor_of_transaction;
195
196   my $all_vendors = SL::DB::Manager::Vendor->get_all();
197
198   $self->render('bank_transactions/create_invoice', { layout  => 0 },
199       title      => t8('Create invoice'),
200       DRAFTS     => \@filtered_drafts,
201       vendor_id  => $vendor_of_transaction ? $vendor_of_transaction->id : undef,
202       vendor_name => $vendor_of_transaction ? $vendor_of_transaction->name : undef,
203       ALL_VENDORS => $all_vendors,
204       limit      => $myconfig{vclimit},
205       callback   => $self->url_for(action                => 'list',
206                                    'filter.bank_account' => $::form->{filter}->{bank_account},
207                                    'filter.todate'       => $::form->{filter}->{todate},
208                                    'filter.fromdate'     => $::form->{filter}->{fromdate}),
209       );
210 }
211
212 sub action_ajax_payment_suggestion {
213   my ($self) = @_;
214
215   # based on a BankTransaction ID and a Invoice or PurchaseInvoice ID passed via $::form,
216   # create an HTML blob to be used by the js function add_invoices in templates/webpages/bank_transactions/list.html
217   # and return encoded as JSON
218
219   my $bt = SL::DB::Manager::BankTransaction->find_by( id => $::form->{bt_id} );
220   my $invoice = SL::DB::Manager::Invoice->find_by( id => $::form->{prop_id} );
221   $invoice = SL::DB::Manager::PurchaseInvoice->find_by( id => $::form->{prop_id} ) unless $invoice;
222
223   die unless $bt and $invoice;
224
225   my @select_options = $invoice->get_payment_select_options_for_bank_transaction($::form->{bt_id});
226
227   my $html;
228   $html .= SL::Presenter->input_tag('invoice_ids.' . $::form->{bt_id} . '[]', $::form->{prop_id} , type => 'hidden');
229   # better in template code - but how to ajax this
230   $html .= SL::Presenter->escape(t8('Invno.') . ': ' . $invoice->invnumber . ' ');
231   $html .= SL::Presenter->escape(t8('Amount') . ': ' . $::form->format_amount(\%::myconfig, $invoice->open_amount, 2) . ' ');
232   $html .= SL::Presenter->select_tag('invoice_skontos.' . $::form->{bt_id} . '[]', \@select_options,
233                                               value_key => 'payment_type',
234                                               title_key => 'display' ) if @select_options;
235   $html .= '<a href=# onclick="delete_invoice(' . $::form->{bt_id} . ',' . $::form->{prop_id} . ');">x</a>';
236   $html = SL::Presenter->html_tag('div', $html, id => $::form->{bt_id} . '.' . $::form->{prop_id});
237
238   $self->render(\ SL::JSON::to_json( { 'html' => $html } ), { layout => 0, type => 'json', process => 0 });
239 };
240
241 sub action_filter_drafts {
242   my ($self) = @_;
243
244   $self->{transaction} = SL::DB::Manager::BankTransaction->find_by(id => $::form->{bt_id});
245   my $vendor_of_transaction = SL::DB::Manager::Vendor->find_by(account_number => $self->{transaction}->{remote_account_number});
246
247   my $drafts = SL::DB::Manager::Draft->get_all(with_objects => 'employee');
248
249   my @filtered_drafts;
250
251   foreach my $draft ( @{ $drafts } ) {
252     my $draft_as_object = YAML::Load($draft->form);
253     next unless $draft_as_object->{vendor_id};  # we cannot filter for vendor name, if this is a gl draft
254     my $vendor = SL::DB::Manager::Vendor->find_by(id => $draft_as_object->{vendor_id});
255     $draft->{vendor} = $vendor->name;
256     $draft->{vendor_id} = $vendor->id;
257     push @filtered_drafts, $draft;
258   }
259
260   my $vendor_name = $::form->{vendor};
261   my $vendor_id = $::form->{vendor_id};
262
263   #Filter drafts
264   @filtered_drafts = grep { $_->{vendor_id} == $vendor_id } @filtered_drafts if $vendor_id;
265   @filtered_drafts = grep { $_->{vendor} =~ /$vendor_name/i } @filtered_drafts if $vendor_name;
266
267   my $output  = $self->render(
268       'bank_transactions/filter_drafts',
269       { output      => 0 },
270       DRAFTS => \@filtered_drafts,
271       );
272
273   my %result = ( count => 0, html => $output );
274
275   $self->render(\to_json(\%result), { type => 'json', process => 0 });
276 }
277
278 sub action_ajax_add_list {
279   my ($self) = @_;
280
281   my @where_sale     = (amount => { ne => \'paid' });
282   my @where_purchase = (amount => { ne => \'paid' });
283
284   if ($::form->{invnumber}) {
285     push @where_sale,     (invnumber => { ilike => like($::form->{invnumber})});
286     push @where_purchase, (invnumber => { ilike => like($::form->{invnumber})});
287   }
288
289   if ($::form->{amount}) {
290     push @where_sale,     (amount => $::form->parse_amount(\%::myconfig, $::form->{amount}));
291     push @where_purchase, (amount => $::form->parse_amount(\%::myconfig, $::form->{amount}));
292   }
293
294   if ($::form->{vcnumber}) {
295     push @where_sale,     ('customer.customernumber' => { ilike => like($::form->{vcnumber})});
296     push @where_purchase, ('vendor.vendornumber'     => { ilike => like($::form->{vcnumber})});
297   }
298
299   if ($::form->{vcname}) {
300     push @where_sale,     ('customer.name' => { ilike => like($::form->{vcname})});
301     push @where_purchase, ('vendor.name'   => { ilike => like($::form->{vcname})});
302   }
303
304   if ($::form->{transdatefrom}) {
305     my $fromdate = $::locale->parse_date_to_object($::form->{transdatefrom});
306     if ( ref($fromdate) eq 'DateTime' ) {
307       push @where_sale,     ('transdate' => { ge => $fromdate});
308       push @where_purchase, ('transdate' => { ge => $fromdate});
309     };
310   }
311
312   if ($::form->{transdateto}) {
313     my $todate = $::locale->parse_date_to_object($::form->{transdateto});
314     if ( ref($todate) eq 'DateTime' ) {
315       $todate->add(days => 1);
316       push @where_sale,     ('transdate' => { lt => $todate});
317       push @where_purchase, ('transdate' => { lt => $todate});
318     };
319   }
320
321   my $all_open_ar_invoices = SL::DB::Manager::Invoice->get_all(where => \@where_sale, with_objects => 'customer');
322   my $all_open_ap_invoices = SL::DB::Manager::PurchaseInvoice->get_all(where => \@where_purchase, with_objects => 'vendor');
323
324   my @all_open_invoices = @{ $all_open_ar_invoices };
325   # add ap invoices, filtering out subcent open amounts
326   push @all_open_invoices, grep { abs($_->amount - $_->paid) >= 0.01 } @{ $all_open_ap_invoices };
327
328   @all_open_invoices = sort { $a->id <=> $b->id } @all_open_invoices;
329
330   my $output  = $self->render(
331       'bank_transactions/add_list',
332       { output      => 0 },
333       INVOICES => \@all_open_invoices,
334       );
335
336   my %result = ( count => 0, html => $output );
337
338   $self->render(\to_json(\%result), { type => 'json', process => 0 });
339 }
340
341 sub action_ajax_accept_invoices {
342   my ($self) = @_;
343
344   my @selected_invoices;
345   foreach my $invoice_id (@{ $::form->{invoice_id} || [] }) {
346     my $invoice_object = SL::DB::Manager::Invoice->find_by(id => $invoice_id);
347     $invoice_object ||= SL::DB::Manager::PurchaseInvoice->find_by(id => $invoice_id);
348
349     push @selected_invoices, $invoice_object;
350   }
351
352   $self->render('bank_transactions/invoices', { layout => 0 },
353                 INVOICES => \@selected_invoices,
354                 bt_id    => $::form->{bt_id} );
355 }
356
357 sub action_save_invoices {
358   my ($self) = @_;
359
360   my $invoice_hash = delete $::form->{invoice_ids}; # each key (the bt line with a bt_id) contains an array of invoice_ids
361   my $skonto_hash  = delete $::form->{invoice_skontos} || {}; # array containing the payment type, could be empty
362
363   # a bank_transaction may be assigned to several invoices, i.e. a customer
364   # might pay several open invoices with one transaction
365
366   while ( my ($bt_id, $invoice_ids) = each(%$invoice_hash) ) {
367     my $bank_transaction = SL::DB::Manager::BankTransaction->find_by(id => $bt_id);
368     my $sign = $bank_transaction->amount < 0 ? -1 : 1;
369     my $amount_of_transaction = $sign * $bank_transaction->amount;
370
371     my @invoices;
372     foreach my $invoice_id (@{ $invoice_ids }) {
373       push @invoices, (SL::DB::Manager::Invoice->find_by(id => $invoice_id) || SL::DB::Manager::PurchaseInvoice->find_by(id => $invoice_id));
374     }
375     @invoices = sort { return 1 if ($a->is_sales and $a->amount > 0);
376                           return 1 if (!$a->is_sales and $a->amount < 0);
377                           return -1; } @invoices                if $bank_transaction->amount > 0;
378     @invoices = sort { return -1 if ($a->is_sales and $a->amount > 0);
379                        return -1 if (!$a->is_sales and $a->amount < 0);
380                        return 1; } @invoices                    if $bank_transaction->amount < 0;
381
382     foreach my $invoice (@invoices) {
383
384       # Check if bank_transaction already has a link to the invoice, may only be linked once per invoice
385       # This might be caused by the user reloading a page and resending the form
386       die t8("Bank transaction with id #1 has already been linked to #2.", $bank_transaction->id, $invoice->displayable_name)
387         if _existing_record_link($bank_transaction, $invoice);
388
389       my $payment_type;
390       if ( defined $skonto_hash->{"$bt_id"} ) {
391         $payment_type = shift(@{ $skonto_hash->{"$bt_id"} });
392       } else {
393         $payment_type = 'without_skonto';
394       };
395       if ($amount_of_transaction == 0) {
396         flash('warning',  $::locale->text('There are invoices which could not be paid by bank transaction #1 (Account number: #2, bank code: #3)!',
397                                             $bank_transaction->purpose,
398                                             $bank_transaction->remote_account_number,
399                                             $bank_transaction->remote_bank_code));
400         last;
401       }
402       # pay invoice or go to the next bank transaction if the amount is not sufficiently high
403       if ($invoice->open_amount <= $amount_of_transaction) {
404         # first calculate new bank transaction amount ...
405         if ($invoice->is_sales) {
406           $amount_of_transaction -= $sign * $invoice->open_amount;
407           $bank_transaction->invoice_amount($bank_transaction->invoice_amount + $invoice->open_amount);
408         } else {
409           $amount_of_transaction += $sign * $invoice->open_amount;
410           $bank_transaction->invoice_amount($bank_transaction->invoice_amount - $invoice->open_amount);
411         }
412         # ... and then pay the invoice
413         $invoice->pay_invoice(chart_id     => $bank_transaction->local_bank_account->chart_id,
414                               trans_id     => $invoice->id,
415                               amount       => $invoice->open_amount,
416                               payment_type => $payment_type,
417                               transdate    => $bank_transaction->transdate->to_kivitendo);
418       } else {
419         $invoice->pay_invoice(chart_id     => $bank_transaction->local_bank_account->chart_id,
420                               trans_id     => $invoice->id,
421                               amount       => $amount_of_transaction,
422                               payment_type => $payment_type,
423                               transdate    => $bank_transaction->transdate->to_kivitendo);
424         $bank_transaction->invoice_amount($bank_transaction->amount);
425         $amount_of_transaction = 0;
426       }
427
428       # Record a record link from the bank transaction to the invoice
429       my @props = (
430           from_table => 'bank_transactions',
431           from_id    => $bt_id,
432           to_table   => $invoice->is_sales ? 'ar' : 'ap',
433           to_id      => $invoice->id,
434           );
435
436       SL::DB::RecordLink->new(@props)->save;
437     }
438     $bank_transaction->save;
439   }
440
441   $self->action_list();
442 }
443
444 sub action_save_proposals {
445   my ($self) = @_;
446
447   foreach my $bt_id (@{ $::form->{proposal_ids} }) {
448     my $bt = SL::DB::Manager::BankTransaction->find_by(id => $bt_id);
449
450     my $arap = SL::DB::Manager::Invoice->find_by(id => $::form->{"proposed_invoice_$bt_id"});
451     $arap    = SL::DB::Manager::PurchaseInvoice->find_by(id => $::form->{"proposed_invoice_$bt_id"}) if not defined $arap;
452
453     # check for existing record_link for that $bt and $arap
454     # do this before any changes to $bt are made
455     die t8("Bank transaction with id #1 has already been linked to #2.", $bt->id, $arap->displayable_name)
456       if _existing_record_link($bt, $arap);
457
458     #mark bt as booked
459     $bt->invoice_amount($bt->amount);
460     $bt->save;
461
462     #pay invoice
463     $arap->pay_invoice(chart_id  => $bt->local_bank_account->chart_id,
464                        trans_id  => $arap->id,
465                        amount    => $arap->amount,
466                        transdate => $bt->transdate->to_kivitendo);
467     $arap->save;
468
469     #create record link
470     my @props = (
471         from_table => 'bank_transactions',
472         from_id    => $bt_id,
473         to_table   => $arap->is_sales ? 'ar' : 'ap',
474         to_id      => $arap->id,
475         );
476
477     SL::DB::RecordLink->new(@props)->save;
478   }
479
480   flash('ok', t8('#1 proposal(s) saved.', scalar @{ $::form->{proposal_ids} }));
481
482   $self->action_list();
483 }
484
485 #
486 # filters
487 #
488
489 sub check_auth {
490   $::auth->assert('bank_transaction');
491 }
492
493 #
494 # helpers
495 #
496
497 sub make_filter_summary {
498   my ($self) = @_;
499
500   my $filter = $::form->{filter} || {};
501   my @filter_strings;
502
503   my @filters = (
504     [ $filter->{"transdate:date::ge"},  $::locale->text('Transdate')  . " " . $::locale->text('From Date') ],
505     [ $filter->{"transdate:date::le"},  $::locale->text('Transdate')  . " " . $::locale->text('To Date')   ],
506     [ $filter->{"valutadate:date::ge"}, $::locale->text('Valutadate') . " " . $::locale->text('From Date') ],
507     [ $filter->{"valutadate:date::le"}, $::locale->text('Valutadate') . " " . $::locale->text('To Date')   ],
508     [ $filter->{"amount:number"},       $::locale->text('Amount')                                          ],
509     [ $filter->{"bank_account_id:integer"}, $::locale->text('Local bank account')                          ],
510   );
511
512   for (@filters) {
513     push @filter_strings, "$_->[1]: $_->[0]" if $_->[0];
514   }
515
516   $self->{filter_summary} = join ', ', @filter_strings;
517 }
518
519 sub prepare_report {
520   my ($self)      = @_;
521
522   my $callback    = $self->models->get_callback;
523
524   my $report      = SL::ReportGenerator->new(\%::myconfig, $::form);
525   $self->{report} = $report;
526
527   my @columns     = qw(local_bank_name transdate valudate remote_name remote_account_number remote_bank_code amount invoice_amount invoices currency purpose local_account_number local_bank_code id);
528   my @sortable    = qw(local_bank_name transdate valudate remote_name remote_account_number remote_bank_code amount                                  purpose local_account_number local_bank_code);
529
530   my %column_defs = (
531     transdate             => { sub => sub { $_[0]->transdate_as_date } },
532     valutadate            => { sub => sub { $_[0]->valutadate_as_date } },
533     remote_name           => { },
534     remote_account_number => { },
535     remote_bank_code      => { },
536     amount                => { sub => sub { $_[0]->amount_as_number },
537                                align => 'right' },
538     invoice_amount        => { sub => sub { $_[0]->invoice_amount_as_number },
539                                align => 'right' },
540     invoices              => { sub => sub { $_[0]->linked_invoices } },
541     currency              => { sub => sub { $_[0]->currency->name } },
542     purpose               => { },
543     local_account_number  => { sub => sub { $_[0]->local_bank_account->account_number } },
544     local_bank_code       => { sub => sub { $_[0]->local_bank_account->bank_code } },
545     local_bank_name       => { sub => sub { $_[0]->local_bank_account->name } },
546     id                    => {},
547   );
548
549   map { $column_defs{$_}->{text} ||= $::locale->text( $self->models->get_sort_spec->{$_}->{title} ) } keys %column_defs;
550
551   $report->set_options(
552     std_column_visibility => 1,
553     controller_class      => 'BankTransaction',
554     output_format         => 'HTML',
555     top_info_text         => $::locale->text('Bank transactions'),
556     title                 => $::locale->text('Bank transactions'),
557     allow_pdf_export      => 1,
558     allow_csv_export      => 1,
559   );
560   $report->set_columns(%column_defs);
561   $report->set_column_order(@columns);
562   $report->set_export_options(qw(list_all filter));
563   $report->set_options_from_form;
564   $self->models->disable_plugin('paginated') if $report->{options}{output_format} =~ /^(pdf|csv)$/i;
565   $self->models->set_report_generator_sort_options(report => $report, sortable_columns => \@sortable);
566
567   my $bank_accounts = SL::DB::Manager::BankAccount->get_all_sorted();
568
569   $report->set_options(
570     raw_top_info_text     => $self->render('bank_transactions/report_top',    { output => 0 }, BANK_ACCOUNTS => $bank_accounts),
571     raw_bottom_info_text  => $self->render('bank_transactions/report_bottom', { output => 0 }),
572   );
573 }
574
575 sub _existing_record_link {
576   my ($bt, $invoice) = @_;
577
578   # check whether a record link from banktransaction $bt already exists to
579   # invoice $invoice, returns 1 if that is the case
580
581   die unless $bt->isa("SL::DB::BankTransaction") && ( $invoice->isa("SL::DB::Invoice") || $invoice->isa("SL::DB::PurchaseInvoice") );
582
583   my $linked_record_to_table = $invoice->is_sales ? 'Invoice' : 'PurchaseInvoice';
584   my $linked_records = $bt->linked_records( direction => 'to', to => $linked_record_to_table, query => [ id => $invoice->id ]  );
585
586   return @$linked_records ? 1 : 0;
587 };
588
589
590 sub init_models {
591   my ($self) = @_;
592
593   SL::Controller::Helper::GetModels->new(
594     controller => $self,
595     sorted => {
596       _default => {
597         by    => 'transdate',
598         dir   => 0,   # 1 = ASC, 0 = DESC : default sort is newest at top
599       },
600       transdate             => t8('Transdate'),
601       remote_name           => t8('Remote name'),
602       amount                => t8('Amount'),
603       invoice_amount        => t8('Assigned'),
604       invoices              => t8('Linked invoices'),
605       valutadate            => t8('Valutadate'),
606       remote_account_number => t8('Remote account number'),
607       remote_bank_code      => t8('Remote bank code'),
608       currency              => t8('Currency'),
609       purpose               => t8('Purpose'),
610       local_account_number  => t8('Local account number'),
611       local_bank_code       => t8('Local bank code'),
612       local_bank_name       => t8('Bank account'),
613     },
614     with_objects => [ 'local_bank_account', 'currency' ],
615   );
616 }
617
618 1;