Revision 67089fda
Von Jan Büren vor mehr als 4 Jahren hinzugefügt
SL/Helper/MT940.pm | ||
---|---|---|
15 | 15 |
$sfile->fh->print($mt940_data); |
16 | 16 |
$sfile->fh->close; |
17 | 17 |
|
18 |
# create needed dir structure for aqbanking 5.x and 6.x |
|
18 | 19 |
my $todir = $sfile->get_path . '/imexporters/csv/profiles'; |
19 | 20 |
mkpath $todir; |
21 |
die "Cannot create $todir" unless -d $todir; |
|
22 |
|
|
20 | 23 |
File::Copy::copy('users/aqbanking.conf', $todir.'/kivi.conf'); |
24 |
die "Cannot create local aqbanking conf " unless -f $todir.'/kivi.conf'; |
|
25 |
|
|
26 |
mkpath $sfile->get_path . '/settings6/aqbanking'; |
|
21 | 27 |
|
22 | 28 |
my $aqbin = $::lx_office_conf{applications}->{aqbanking}; |
23 | 29 |
die "Can't find aqbanking-cli, please check your configuration file.\n" unless -f $aqbin; |
Auch abrufbar als: Unified diff
aqbanking 6.x benötigt weitere Unterordner
Durch die verkettung der Systemaufrufe kann der
MT940 Import aktuell erst beim zweiten Aufruf ausgeführt werden (ubuntu 20.04)
Das Anlegen der Unterordner umgeht diese Eigenschaft