修复检验茧票不保存僵蚕数量的问题;修改实验室仪评指标联检测为版本V2

This commit is contained in:
BBIT-Kai
2025-10-11 11:07:04 +08:00
parent 2a6f930f03
commit c1f4386747
5 changed files with 26 additions and 5 deletions
+2 -1
View File
@@ -471,7 +471,7 @@ def get_ticket_image_list(user_id):
SELECT created_at, file_name, resolution, size, name,
moisture_content, cocoon_weight, defective_pupa_count,
fresh_shell_weight, sample_count, barcode, oss,
net_weight_total, evaluator, reviewer,id
net_weight_total, evaluator, reviewer,id ,dead_pupa_count
FROM ticket_images
WHERE created_by = %s
""",
@@ -498,6 +498,7 @@ def get_ticket_image_list(user_id):
"evaluator": row[13],
"reviewer": row[14],
"id": row[15],
"dead_pupa_count": row[16],
}
)
return result