This commit is contained in:
Marsway 2026-03-27 11:29:46 +08:00
parent 25520aa48b
commit 3e4cd2a58a
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ def _rd_attr_to_text(raw: Any) -> str:
s = str(raw or "").strip() s = str(raw or "").strip()
if s == "1": if s == "1":
return "研发" return "研发"
if s == "0": if s in ("0", "2"):
return "非研发" return "非研发"
return "" return ""