From 806e1c7b2296bf615faeddb5a78512ef61b52389 Mon Sep 17 00:00:00 2001
From: Administrator <admin@example.com>
Date: 星期五, 22 八月 2025 18:20:21 +0800
Subject: [PATCH] 测试资金明细

---
 huaxin_client/command_manager.py |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/huaxin_client/command_manager.py b/huaxin_client/command_manager.py
index 3996510..06cdc49 100644
--- a/huaxin_client/command_manager.py
+++ b/huaxin_client/command_manager.py
@@ -26,6 +26,7 @@
 CLIENT_TYPE_POSITION_LIST = "position_list"
 CLIENT_TYPE_MONEY = "money"
 CLIENT_TYPE_DEAL = "deal"
+CLIENT_TYPE_ORDER_FOUND_DETAIL = "order_found_detail"
 
 CLIENT_TYPE_CMD_L2 = "l2_cmd"
 
@@ -56,6 +57,9 @@
 
     # 娴嬭瘯
     def OnTest(self, client_id, request_id, data, sk):
+        pass
+
+    def OnOrderFoundDetail(self, client_id, request_id, sk, data):
         pass
 
 
@@ -114,6 +118,11 @@
                 cls.action_callback.OnDelegateList(client_id, request_id, sk, can_cancel)
             elif _type == CLIENT_TYPE_POSITION_LIST:
                 cls.action_callback.OnPositionList(client_id, request_id, sk)
+
+            elif _type == CLIENT_TYPE_POSITION_LIST:
+                cls.action_callback.OnOrderFoundDetail(client_id, request_id, sk, data)
+
+
             elif _type == "test":
                 cls.action_callback.OnTest(client_id, request_id, data, sk)
         except Exception as e:

--
Gitblit v1.8.0