|
@@ -120,6 +120,15 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
|
|
|
|
|
//扣款状态
|
|
//扣款状态
|
|
|
int Status = int.Parse(dic["Status"].ToString());
|
|
int Status = int.Parse(dic["Status"].ToString());
|
|
|
|
|
+ if (!string.IsNullOrEmpty(dic["UpdateDate"].ToString()))
|
|
|
|
|
+ {
|
|
|
|
|
+ var updateDate = DateTime.Parse(dic["UpdateDate"].ToString());
|
|
|
|
|
+ if (updateDate >= DateTime.Parse("2023-12-26 00:48:00") && updateDate <= DateTime.Parse("2023-12-26 00:48:59"))
|
|
|
|
|
+ {
|
|
|
|
|
+ Status = 4;
|
|
|
|
|
+ if (Status == 4) dic["StatusName"] = "未实扣";
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
if (Status == 0) dic["StatusName"] = "待扣款";
|
|
if (Status == 0) dic["StatusName"] = "待扣款";
|
|
|
if (Status == 1) dic["StatusName"] = "已扣款";
|
|
if (Status == 1) dic["StatusName"] = "已扣款";
|
|
|
if (Status == 2) dic["StatusName"] = "已退还";
|
|
if (Status == 2) dic["StatusName"] = "已退还";
|