[BACK]Return to pta_import.pl CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / pta

Diff for /pta/pta_import.pl between version 1.17 and 1.20

version 1.17, 2020/11/19 23:55:50 version 1.20, 2020/11/23 14:14:23
Line 100  sub import_sparkasse_camt ($$$) {
Line 100  sub import_sparkasse_camt ($$$) {
 sub import_wellsfargo ($$$) {  sub import_wellsfargo ($$$) {
         my ($account, $csv_account, $line) = @_;          my ($account, $csv_account, $line) = @_;
         $line =~          $line =~
             m#^"(\d+)/(\d+)/(\d+)","(-?\d+\.\d+)","\*","","(.*?)"$# or              m#^"(\d+)/(\d+)/(\d+)","(-?\d+\.\d+)","\*",".*","(.*?)"$# or
             die "parse error: $line" ;              die "parse error: $line" ;
         my ($month, $day, $year, $amount, $description) =          my ($month, $day, $year, $amount, $description) =
             ($1, $2, $3, $4, $5);              ($1, $2, $3, $4, $5);
Line 156  $banks{$account_name} or die "unknown accountname: $ac
Line 156  $banks{$account_name} or die "unknown accountname: $ac
 # Parse the configuration file.  # Parse the configuration file.
 my $fn = "import_" . $account_name . ".txt";  my $fn = "import_" . $account_name . ".txt";
 open my $in, '<', $fn or die "$fn: $!";  open my $in, '<', $fn or die "$fn: $!";
 my ($csv_account, $delim, $header, @compiled);  my ($csv_account, $delim, $header, $quote, @compiled, @ignored);
 while (<$in>) {  while (<$in>) {
         chomp;          chomp;
         next if /^(?:#|$)/;          next if /^(?:#|$)/;
Line 176  while (<$in>) {
Line 176  while (<$in>) {
                 $header = $1;                  $header = $1;
                 next;                  next;
         }          }
           if (/^QUOTE\s+(\S)$/) {
                   $quote and die "duplicate QUOTE line: $1";
                   $quote = $1;
                   next;
           }
           if (/^IGNORE\s+(.*)/) {
                   push @ignored, qr/$1/;
                   next;
           }
         $delim or die "no DELIM line in $fn";          $delim or die "no DELIM line in $fn";
         s/^(.*)$delim\s+(\d+)\s+(\S+)// or          s/^(.*)$delim\s+(\d+)\s+(\S+)// or
             die "$fn import parse error: $line";              die "$fn import parse error: $line";
Line 189  close $in;
Line 198  close $in;
 $csv_account or die "no ACCOUNT line in $fn";  $csv_account or die "no ACCOUNT line in $fn";
   
 # Parse the CSV file from the bank.  # Parse the CSV file from the bank.
 while (<>) {  LINE: while (<>) {
         chomp;          chomp;
         next if (/^$/);          next if (/^$/);
           foreach my $ignore (@ignored) {
                   next LINE if /$ignore/;
           }
         my $line = $_;          my $line = $_;
         if ($header) {          if ($header) {
                 $line eq $header                  $line eq $header
Line 199  while (<>) {
Line 211  while (<>) {
                 undef $header;                  undef $header;
                 next;                  next;
         }          }
         my @fields = split /$delim/, $line;          my $copy_line = $line;
           my @fields;
           if ($quote) {
                   push @fields, $1 while $copy_line =~ s/$quote([^$quote]*)$quote$delim?//;
           } else {
                   @fields = split /$delim/, $line;
           }
         my $matches = 0;          my $matches = 0;
         my ($account, $booking);          my ($account, $booking);
         foreach my $selector (@compiled) {          foreach my $selector (@compiled) {

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.20

CVSweb