|
@@ -288,11 +288,27 @@ def validate(qv):
|
|
|
return None
|
|
|
return qv
|
|
|
|
|
|
-#modify,getId
|
|
|
+#defaults for modify, getId and convertLookup
|
|
|
+def modify(qv,columnName):
|
|
|
+ return qv
|
|
|
+
|
|
|
+def getId(df,r):
|
|
|
+ try:
|
|
|
+ rawId=str(df.at[r,'ID'])
|
|
|
+ except KeyError:
|
|
|
+ msg='Getting id from field ID field. '
|
|
|
+ msg+=' Overload getId function with getId=getIdFnc in importData'
|
|
|
+ print(msg)
|
|
|
+ raise KeyError
|
|
|
+ return rawId.replace(' ','')
|
|
|
+
|
|
|
+def convertLookup(xlsColumnName):
|
|
|
+ return True
|
|
|
|
|
|
-def importData(pars,filename,getId,modify,convertLookup,dryRun=True):
|
|
|
+def importData(pars,filename,getId=getId,modify=modify,\
|
|
|
+ convertLookup=convertLookup,dryRun=True):
|
|
|
#master routine that imports data based on pars,
|
|
|
-#applies user supplied functionsmodify, convertLookup and get Id and
|
|
|
+#applies user supplied functions modify, convertLookup and get Id and
|
|
|
#updates relevant database
|
|
|
|
|
|
#some useful fields from pars (d is for default value)
|