master
huanghai 5 years ago
parent 1b4438a9b7
commit 5c4a347468

@ -483,13 +483,12 @@ func checkExcel(excelPath string, s1 ExcelUtil.TemplateStruct, MapClass map[stri
} }
//(9)身份证号 //(9)身份证号
if j == 9 { if j == 9 {
if row[j-1] == "居民身份证" && !CommonUtil.IsIdCard(CommonUtil.CompressStr(row[j])) { if row[j-1] == "居民身份证" && row[j] != "" && !CommonUtil.IsIdCard(CommonUtil.CompressStr(row[j])) {
pass = false pass = false
} }
if row[j] == "" { if len(row[j]) > 0 {
pass = false _idCardMap[CommonUtil.CompressStr(row[j])] = append(_idCardMap[CommonUtil.CompressStr(row[j])], i+1)
} }
_idCardMap[CommonUtil.CompressStr(row[j])] = append(_idCardMap[CommonUtil.CompressStr(row[j])], i+1)
} }
//(10)独生子女 //(10)独生子女
if j == 10 { if j == 10 {

Loading…
Cancel
Save