MT940-Import: Transaktionstype mit in BankTransaction
[kivitendo-erp.git] / SL / Controller / CsvImport / BankTransaction.pm
1 package SL::Controller::CsvImport::BankTransaction;
2
3 use strict;
4
5 use SL::Helper::Csv;
6 use SL::Controller::CsvImport::Helper::Consistency;
7 use SL::DB::BankTransaction;
8
9 use Data::Dumper;
10
11 use parent qw(SL::Controller::CsvImport::Base);
12
13 use Rose::Object::MakeMethods::Generic
14 (
15  'scalar --get_set_init' => [ qw(bank_accounts_by) ],
16 );
17
18 sub set_profile_defaults {
19   my ($self) = @_;
20
21   $self->controller->profile->_set_defaults(
22                        charset       => 'UTF8',  # override charset from defaults
23                        update_policy => 'skip',
24                       );
25 };
26
27 sub init_class {
28   my ($self) = @_;
29   $self->class('SL::DB::BankTransaction');
30 }
31
32 sub init_bank_accounts_by {
33   my ($self) = @_;
34
35   return { map { my $col = $_; ( $col => { map { ( $_->$col => $_ ) } @{ $self->all_bank_accounts } } ) } qw(id account_number iban) };
36 }
37
38 sub check_objects {
39   my ($self) = @_;
40
41   $self->controller->track_progress(phase => 'building data', progress => 0);
42   my $update_policy  = $self->controller->profile->get('update_policy') || 'skip';
43
44   my $i;
45   my $num_data = scalar @{ $self->controller->data };
46   foreach my $entry (@{ $self->controller->data }) {
47     $self->controller->track_progress(progress => $i/$num_data * 100) if $i % 100 == 0;
48
49     $self->check_bank_account($entry);
50     $self->check_currency($entry, take_default => 1);
51     $self->join_purposes($entry);
52     $self->join_remote_names($entry);
53     $self->check_existing($entry) unless @{ $entry->{errors} };
54   } continue {
55     $i++;
56   }
57
58   $self->add_info_columns({ header => $::locale->text('Bank account'), method => 'local_bank_name' });
59   $self->add_raw_data_columns("currency", "currency_id") if grep { /^currency(?:_id)?$/ } @{ $self->csv->header };
60 }
61
62 sub check_existing {
63   my ($self, $entry) = @_;
64
65   my $object = $entry->{object};
66
67   # for each imported entry (line) we make a database call to find existing entries
68   # we don't use the init_by hash because we have to check several fields
69   # this means that we can't detect duplicates in the import file
70
71   if ( $object->amount ) {
72     # check for same
73     # * purpose
74     # * transdate
75     # * remote_account_number  (may be empty for records of our own bank)
76     # * amount
77     my $num;
78     if ( $num = SL::DB::Manager::BankTransaction->get_all_count(query =>[ remote_account_number => $object->remote_account_number, transdate => $object->transdate, purpose => $object->purpose, amount => $object->amount] ) ) {
79       push(@{$entry->{errors}}, $::locale->text('Skipping due to existing bank transaction in database'));
80     };
81   } else {
82       push(@{$entry->{errors}}, $::locale->text('Skipping because transfer amount is empty.'));
83   };
84 }
85
86 sub setup_displayable_columns {
87   my ($self) = @_;
88
89   $self->SUPER::setup_displayable_columns;
90
91   $self->add_displayable_columns({ name => 'local_bank_code',       description => $::locale->text('Own bank code') },
92                                  { name => 'local_account_number',  description => $::locale->text('Own bank account number or IBAN') },
93                                  { name => 'local_bank_account_id', description => $::locale->text('ID of own bank account') },
94                                  { name => 'remote_bank_code',      description => $::locale->text('Bank code of the goal/source') },
95                                  { name => 'remote_account_number', description => $::locale->text('Account number of the goal/source') },
96                                  { name => 'transdate',             description => $::locale->text('Date of transaction') },
97                                  { name => 'valutadate',            description => $::locale->text('Valuta date') },
98                                  { name => 'amount',                description => $::locale->text('Amount') },
99                                  { name => 'currency',              description => $::locale->text('Currency') },
100                                  { name => 'currency_id',           description => $::locale->text('Currency (database ID)')          },
101                                  { name => 'remote_name',           description => $::locale->text('Name of the goal/source (if field names remote_name and remote_name_1 exist they will be combined into field "remote_name")') },
102                                  { name => 'purpose',               description => $::locale->text('Purpose (if field names purpose, purpose1, purpose2 ... exist they will all combined into the field "purpose")') },
103                                  { name => 'transactionCode',       description => $::locale->text('Transaction Code') },
104                                  { name => 'transactionText',       description => $::locale->text('Transaction Text') },
105                                  );
106 }
107
108 sub check_bank_account {
109   my ($self, $entry) = @_;
110
111   my $object = $entry->{object};
112
113   # import via id: check whether or not local_bank_account ID exists and is valid.
114   if ($object->local_bank_account_id && !$self->bank_accounts_by->{id}->{ $object->local_bank_account_id }) {
115     push @{ $entry->{errors} }, $::locale->text('Error: unknown local bank account id');
116     return 0;
117   }
118
119   # Check whether or not local_bank_account ID, local_account_number and local_bank_code are consistent.
120   if ($object->local_bank_account_id && $entry->{raw_data}->{local_account_number}) {
121     my $bank_account = $self->bank_accounts_by->{id}->{ $object->local_bank_account_id };
122     if ($bank_account->account_number ne $entry->{raw_data}->{local_account_number}) {
123       push @{ $entry->{errors} }, $::locale->text('Error: local bank account id doesn\'t match local bank account number');
124       return 0;
125     }
126     if ($entry->{raw_data}->{local_bank_code} && $entry->{raw_data}->{local_bank_code} ne $bank_account->bank_code) {
127       push @{ $entry->{errors} }, $::locale->text('Error: local bank account id doesn\'t match local bank code');
128       return 0;
129     }
130
131   }
132
133   # Map account information to ID via local_account_number if no local_bank_account_id was given
134   # local_account_number checks for match of account number or IBAN
135   if (!$object->local_bank_account_id && $entry->{raw_data}->{local_account_number}) {
136     my $bank_account = $self->bank_accounts_by->{account_number}->{ $entry->{raw_data}->{local_account_number} };
137     if (!$bank_account) {
138        $bank_account = $self->bank_accounts_by->{iban}->{ $entry->{raw_data}->{local_account_number} };
139     };
140     if (!$bank_account) {
141       push @{ $entry->{errors} }, $::locale->text('Error: unknown local bank account') . ": " . $entry->{raw_data}->{local_account_number};
142       return 0;
143     }
144     if ($entry->{raw_data}->{local_bank_code} && $entry->{raw_data}->{local_bank_code} ne $bank_account->bank_code) {
145       push @{ $entry->{errors} }, $::locale->text('Error: Found local bank account number but local bank code doesn\'t match') . ": " . $entry->{raw_data}->{local_bank_code};
146       return 0;
147     }
148
149     $object->local_bank_account_id($bank_account->id);
150     $entry->{info_data}->{local_bank_name} = $bank_account->name;
151   }
152   return $object->local_bank_account_id ? 1 : 0;
153 }
154
155 sub join_purposes {
156   my ($self, $entry) = @_;
157
158   my $object = $entry->{object};
159
160   my $purpose = join('', $entry->{raw_data}->{purpose},
161                          $entry->{raw_data}->{purpose1},
162                          $entry->{raw_data}->{purpose2},
163                          $entry->{raw_data}->{purpose3},
164                          $entry->{raw_data}->{purpose4},
165                          $entry->{raw_data}->{purpose5},
166                          $entry->{raw_data}->{purpose6},
167                          $entry->{raw_data}->{purpose7},
168                          $entry->{raw_data}->{purpose8},
169                          $entry->{raw_data}->{purpose9},
170                          $entry->{raw_data}->{purpose10},
171                          $entry->{raw_data}->{purpose11} );
172   $object->purpose($purpose);
173
174 }
175
176 sub join_remote_names {
177   my ($self, $entry) = @_;
178
179   my $object = $entry->{object};
180
181   my $remote_name = join('', $entry->{raw_data}->{remote_name},
182                              $entry->{raw_data}->{remote_name_1} );
183   $object->remote_name($remote_name);
184 }
185
186 sub check_auth {
187   $::auth->assert('config') if ! $::auth->assert('bank_transaction',1);
188 }
189
190 1;