From 1857f9a356b0449564a6c7ccdaf52e9aca5c0d5a Mon Sep 17 00:00:00 2001 From: tengyufan <1532636164@qq.com> Date: Fri, 28 Aug 2026 12:28:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=9A=90=E8=97=8FOA=E6=8F=90=E4=BA=A4?= =?UTF-8?q?=E5=A4=B1=E8=B4=A5=E8=AF=A6=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- YLErpDAL/Modules/TradeModule/TradeBLL.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/YLErpDAL/Modules/TradeModule/TradeBLL.cs b/YLErpDAL/Modules/TradeModule/TradeBLL.cs index 261f1ef8..d629451b 100644 --- a/YLErpDAL/Modules/TradeModule/TradeBLL.cs +++ b/YLErpDAL/Modules/TradeModule/TradeBLL.cs @@ -334,7 +334,9 @@ namespace YLErp.BLL .FirstOrDefault(); if (oa != null) { - tradeLinq.OaRemark = string.IsNullOrWhiteSpace(oa.oa_msg) + tradeLinq.OaRemark = oa.status == "提交失败" + ? oa.status + : string.IsNullOrWhiteSpace(oa.oa_msg) ? oa.status : oa.status + ":" + oa.oa_msg; }