From 17c2a7e396ca23171e509d78c73613e1ac6fcaf0 Mon Sep 17 00:00:00 2001 From: hjhan Date: Mon, 23 Mar 2026 11:01:21 +0800 Subject: [PATCH] =?UTF-8?q?fix(ClientMarginConfig):=20=E7=A7=BB=E9=99=A4?= =?UTF-8?q?=E8=B0=83=E8=AF=95=E7=94=A8=E7=9A=84=E7=BA=BF=E7=A8=8B=E4=BC=91?= =?UTF-8?q?=E7=9C=A0=E4=BB=A3=E7=A0=81=20-=20=E5=88=A0=E9=99=A4=E4=BA=86?= =?UTF-8?q?=20GetApplicableMarginRate=20=E6=96=B9=E6=B3=95=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=20Thread.Sleep(100000)=20=E8=B0=83=E8=AF=95=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=20-=20=E4=BF=9D=E7=95=99=E4=BA=86=E5=8E=9F=E6=9C=89?= =?UTF-8?q?=E7=9A=84=E4=BF=9D=E8=AF=81=E9=87=91=E7=8E=87=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E9=80=BB=E8=BE=91=20-=20=E6=81=A2=E5=A4=8D=E4=BA=86=E6=AD=A3?= =?UTF-8?q?=E5=B8=B8=E7=9A=84=E6=8E=A5=E5=8F=A3=E5=93=8D=E5=BA=94=E6=B5=81?= =?UTF-8?q?=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- YLErpWeb/Controllers/ClientMarginConfigController.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/YLErpWeb/Controllers/ClientMarginConfigController.cs b/YLErpWeb/Controllers/ClientMarginConfigController.cs index 17457a25..26e22a9a 100644 --- a/YLErpWeb/Controllers/ClientMarginConfigController.cs +++ b/YLErpWeb/Controllers/ClientMarginConfigController.cs @@ -201,9 +201,8 @@ namespace YLErp.Web.Controllers [HttpPost] public JsonResult GetApplicableMarginRate([FromBody]GetClientMarginDetailReq req) { - var detail= YLErp.Modules.UnderlyingModule.UnderlyingHelper.GetApplicableMarginRate(req.clientId, req.underlyingCode, req.valueDate); - Thread.Sleep(1000000000); - return JsonSuccess("",detail); + var detail = YLErp.Modules.UnderlyingModule.UnderlyingHelper.GetApplicableMarginRate(req.clientId, req.underlyingCode, req.valueDate); + return JsonSuccess("", detail); } private void GetExtendInfo(IEnumerable marginConfigs)