Commit 89827af0 authored by 王源's avatar 王源 🎧

调整ExcelImporter对比不同值的逻辑

parent 7a33d0dd
......@@ -245,7 +245,7 @@ class ExcelImporter
return true;
}
} else {
if ($list[$key] !== $data[$key]) {
if ($list[$key] != $data[$key]) {
return true;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment