From 01579b846363f5764f095710271a8f0cc93cbbfa Mon Sep 17 00:00:00 2001
From: duhe <226547893@qq.com>
Date: 星期四, 07 三月 2024 11:44:27 +0800
Subject: [PATCH] 其他应收单:删除判断是否为创建状态优化判定规则

---
 WebAPI/Controllers/XSGL/YS_ReceiveOtherBillController.cs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/WebAPI/Controllers/XSGL/YS_ReceiveOtherBillController.cs b/WebAPI/Controllers/XSGL/YS_ReceiveOtherBillController.cs
index db723c1..cefa44f 100644
--- a/WebAPI/Controllers/XSGL/YS_ReceiveOtherBillController.cs
+++ b/WebAPI/Controllers/XSGL/YS_ReceiveOtherBillController.cs
@@ -318,7 +318,7 @@
                     return objJsonResult;
                 }
                 //鍒ゆ柇鏄惁鏄垱寤虹姸鎬佽繘琛屽垹闄�
-                if (BillOld.omodel.HBillStatus.ToString() == "1")
+                if (int.Parse(BillOld.omodel.HBillStatus.ToString()) <= 1)
                 {
 
 

--
Gitblit v1.9.1