From b1bd2b54d9a828e6aa376425bf425fb1648caa96 Mon Sep 17 00:00:00 2001 From: dengyu Date: Thu, 14 Nov 2024 17:11:54 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=BA=E8=AF=BA=E5=85=A8=E7=94=B5=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=20=E5=86=B2=E7=BA=A2=E6=97=B6=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E5=A4=84=E7=90=86billstate=3D=E2=80=9C04=20=E8=B4=AD=E9=94=80?= =?UTF-8?q?=E5=8F=8C=E6=96=B9=E5=B7=B2=E7=A1=AE=E8=AE=A4=E2=80=9D=E7=9A=84?= =?UTF-8?q?=E7=BA=A2=E5=AD=97=E7=A1=AE=E8=AE=A4=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Models/Chfee_invoice_HangXin/Chfee_Invoice.cs | 9 ++++++++- 1 file changed, 8 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 7f28a2fe..4b8adb0c 100644 --- a/DSWeb/Areas/Account/Models/Chfee_invoice_HangXin/Chfee_Invoice.cs +++ b/DSWeb/Areas/Account/Models/Chfee_invoice_HangXin/Chfee_Invoice.cs @@ -3330,7 +3330,14 @@ 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 错误信息()