feat(status): default legacy batches to normal

This commit is contained in:
chengma
2026-07-20 09:41:55 +08:00
parent 00c695d035
commit d687c833e0
17 changed files with 205 additions and 991 deletions
+1 -5
View File
@@ -651,10 +651,7 @@ class ApplyTab(QWidget):
if status_text:
lines.append("当前筛选结果没有状态正常且可更新的商品。")
lines.append(status_text)
if update_plan.get("unverified"):
lines.append("请先到①导入采集点击「重新检测商品状态」。")
else:
lines.append("请先回到①导入采集重新确认商品状态。")
lines.append("请先回到①导入采集重新确认商品状态。")
content_error = self._update_content_error(update_plan, update_mode)
if content_error:
if lines:
@@ -730,7 +727,6 @@ class ApplyTab(QWidget):
if not update_plan:
return ""
rows = [
("尚未检测商品状态", update_plan.get("unverified", [])),
("未上架", update_plan.get("unlisted", [])),
("审核中", update_plan.get("reviewing", [])),
("状态未知", update_plan.get("unknown", [])),