|
@@ -306,7 +306,7 @@ def convertLookup(xlsColumnName):
|
|
return True
|
|
return True
|
|
|
|
|
|
def importData(pars,filename,getId=getId,modify=modify,\
|
|
def importData(pars,filename,getId=getId,modify=modify,\
|
|
- convertLookup=convertLookup,dryRun=True):
|
|
|
|
|
|
+ convertLookup=convertLookup,dryRun=True,debug=True):
|
|
#master routine that imports data based on pars,
|
|
#master routine that imports data based on pars,
|
|
#applies user supplied functions modify, convertLookup and get Id and
|
|
#applies user supplied functions modify, convertLookup and get Id and
|
|
#updates relevant database
|
|
#updates relevant database
|
|
@@ -344,8 +344,9 @@ def importData(pars,filename,getId=getId,modify=modify,\
|
|
|
|
|
|
pMap={}
|
|
pMap={}
|
|
print('Index: {}'.format(len(df.index)))
|
|
print('Index: {}'.format(len(df.index)))
|
|
- idx=df.index[0:10] #for debug
|
|
|
|
-# idx=df.index #for all
|
|
|
|
|
|
+ idx=df.index #for all
|
|
|
|
+ if debug:
|
|
|
|
+ idx=df.index[0:10] #for debug
|
|
|
|
|
|
entries=[]
|
|
entries=[]
|
|
for r in idx:
|
|
for r in idx:
|