Browse Source

Better overlap detection.

No warning emitted when first_op of a csv file is the first_op of the whole dataset.
No warning emitted when last_op of a csv file is the last_op of the whole dataset.
pitchum 8 years ago
parent
commit
6e2c54fffa
1 changed files with 5 additions and 8 deletions
  1. 5 8
      ccoop_resplit.py

+ 5 - 8
ccoop_resplit.py

@@ -131,10 +131,8 @@ class CsvStatementParser(object):
                 otherfiles.remove(filename)
                 otherfiles.remove(filename)
                 if len(otherfiles) > 0:
                 if len(otherfiles) > 0:
                     # Eliminate files having the same first_op
                     # Eliminate files having the same first_op
-                    for candidate in otherfiles:
-                        if self.first_ops[candidate] == first_op:
-                            otherfiles.remove(candidate)
-                if len(otherfiles) == 0:
+                    otherfiles[:] = [candidate for candidate in otherfiles if self.first_ops[candidate] != first_op]
+                if len(otherfiles) == 0 and first_op[0:10] != "{0:%Y-%m-%d}".format(self.daterange[0]):
                     self.badmonths.add(int(first_op[0:7].replace('-', '')))
                     self.badmonths.add(int(first_op[0:7].replace('-', '')))
                     print("Attention. Il y a peut-être des écritures manquantes avant le %s (fichier %s)." % (first_op[0:10], os.path.basename(filename)))
                     print("Attention. Il y a peut-être des écritures manquantes avant le %s (fichier %s)." % (first_op[0:10], os.path.basename(filename)))
         
         
@@ -144,12 +142,11 @@ class CsvStatementParser(object):
                 otherfiles.remove(filename)
                 otherfiles.remove(filename)
                 if len(otherfiles) > 0:
                 if len(otherfiles) > 0:
                     # Eliminate files having the same last_op
                     # Eliminate files having the same last_op
-                    for candidate in otherfiles:
-                        if self.last_ops[candidate] == last_op:
-                            otherfiles.remove(candidate)
+                    otherfiles[:] = [candidate for candidate in otherfiles if self.last_ops[candidate] != last_op]
                 if len(otherfiles) == 0:
                 if len(otherfiles) == 0:
                     self.badmonths.add(int(last_op[0:7].replace('-', '')))
                     self.badmonths.add(int(last_op[0:7].replace('-', '')))
-                    print("Attention. Il y a peut-être des écritures manquantes après le %s (fichier %s)." % (last_op[0:10], os.path.basename(filename)))
+                    if last_op[0:10] != "{0:%Y-%m-%d}".format(self.daterange[1]):
+                        print("Attention. Il y a peut-être des écritures manquantes après le %s (fichier %s)." % (last_op[0:10], os.path.basename(filename)))
         print("")
         print("")
 
 
 def start_cli(dirpath):
 def start_cli(dirpath):