From c53b788a64ebe42a80ce5c24b9bcaabe2bc26855 Mon Sep 17 00:00:00 2001 From: dengyu Date: Thu, 14 Nov 2024 17:01:40 +0800 Subject: [PATCH] =?UTF-8?q?20241114=20=E5=86=B2=E7=BA=A2=E6=97=B6=E6=AD=A3?= =?UTF-8?q?=E7=A1=AE=E5=A4=84=E7=90=86=E9=9C=80=E8=A6=81=E5=8F=8C=E6=96=B9?= =?UTF-8?q?=E7=A1=AE=E8=AE=A4=E7=9A=84=E7=BA=A2=E7=A5=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Models/Chfee_invoice_HangXin/Chfee_Invoice.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/DSWeb/Areas/Account/Models/Chfee_invoice_HangXin/Chfee_Invoice.cs b/DSWeb/Areas/Account/Models/Chfee_invoice_HangXin/Chfee_Invoice.cs index eaec721..d085cd3 100644 --- a/DSWeb/Areas/Account/Models/Chfee_invoice_HangXin/Chfee_Invoice.cs +++ b/DSWeb/Areas/Account/Models/Chfee_invoice_HangXin/Chfee_Invoice.cs @@ -3341,7 +3341,15 @@ namespace DSWeb.Areas.Account.Models.Chfee_Invoice_HangXin public bool 申请成功() { - return result.billStatus() == "01"; + + /*红字确认单状态(不传则查全部状态): 01 无需确认 02 + 销方录入待购方确认 03 购方录入待销方确认 04 购销双方 + 已确认 05 作废(销方录入购方否认) 06 作废(购方录入 + 销方否认) 07 作废(超 72 小时未确认) 08 作废(发起方 + 已撤销) 09 作废(确认后撤销) 15 申请中 16 申请失败*/ + var _result =(result.billStatus() == "01" || result.billStatus() == "04"); + + return _result; } public string 错误信息()