完整功能

This commit is contained in:
xiongyi
2025-11-12 16:49:40 +08:00
parent 9b56811021
commit ec51d2f786
3 changed files with 84 additions and 23 deletions

View File

@ -114,7 +114,7 @@ class MonitoringService:
# 调用同事提供的状态更新函数
try:
print(1)
# update_custom_table_status(erp_id, "未进行生产")
update_custom_table_status(erp_id, "未进行生产")
except Exception as e:
print(f"更新状态时出错: {e}")
@ -134,7 +134,7 @@ class MonitoringService:
# 调用同事提供的状态更新函数
try:
print(2)
# update_custom_table_status(erp_id, "正在生产中")
update_custom_table_status(erp_id, "正在生产中")
except Exception as e:
print(f"更新状态时出错: {e}")
@ -158,7 +158,7 @@ class MonitoringService:
# 调用同事提供的状态更新函数
try:
print(3)
# update_custom_table_status(erp_id, "生产完毕")
update_custom_table_status(erp_id, "生产完毕")
except Exception as e:
print(f"更新状态时出错: {e}")
@ -182,7 +182,7 @@ class MonitoringService:
# 调用同事提供的状态更新函数
try:
print(4)
# update_custom_table_status(erp_id, "生产中断")
update_custom_table_status(erp_id, "生产中断")
except Exception as e:
print(f"更新状态时出错: {e}")