ソースを参照

Adding default routines for modify, convertLookup and getId

Andrej 4 ヶ月 前
コミット
524a746c8b
1 ファイル変更19 行追加3 行削除
  1. 19 3
      importXLSX.py

+ 19 - 3
importXLSX.py

@@ -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)