|
@@ -306,7 +306,7 @@ def convertLookup(xlsColumnName):
|
|
|
return True
|
|
|
|
|
|
def importData(pars,filename,getId=getId,modify=modify,\
|
|
|
- convertLookup=convertLookup,dryRun=True):
|
|
|
+ convertLookup=convertLookup,dryRun=True,debug=True):
|
|
|
|
|
|
|
|
|
|
|
@@ -344,8 +344,9 @@ def importData(pars,filename,getId=getId,modify=modify,\
|
|
|
|
|
|
pMap={}
|
|
|
print('Index: {}'.format(len(df.index)))
|
|
|
- idx=df.index[0:10]
|
|
|
-
|
|
|
+ idx=df.index
|
|
|
+ if debug:
|
|
|
+ idx=df.index[0:10]
|
|
|
|
|
|
entries=[]
|
|
|
for r in idx:
|