fix(deepdoc): keep zero and false Excel cells in __call__ (#16318)

This commit is contained in:
Harsh Kashyap
2026-06-25 16:42:57 +05:30
committed by GitHub
parent 43b96223b4
commit 0af5d43e8d
2 changed files with 36 additions and 1 deletions

View File

@@ -283,7 +283,7 @@ class RAGFlowExcelParser:
for r in list(rows[1:]):
fields = []
for i, c in enumerate(r):
if not c.value:
if c.value is None:
continue
t = str(ti[i].value) if i < len(ti) else ""
t += ("" if t else "") + str(c.value)