feat(collect): add product status recheck

This commit is contained in:
chengma
2026-07-18 18:09:07 +08:00
parent 3e9052e1b6
commit ba36b9fd8e
14 changed files with 985 additions and 32 deletions
+5 -1
View File
@@ -651,7 +651,10 @@ class ApplyTab(QWidget):
if status_text:
lines.append("当前筛选结果没有状态正常且可更新的商品。")
lines.append(status_text)
lines.append("请先回到①导入采集重新确认商品状态。")
if update_plan.get("unverified"):
lines.append("请先到①导入采集点击「重新检测商品状态」。")
else:
lines.append("请先回到①导入采集重新确认商品状态。")
content_error = self._update_content_error(update_plan, update_mode)
if content_error:
if lines:
@@ -727,6 +730,7 @@ 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", [])),