【修复】修复财务报表统计中对充值统计纬度类型传送错误的问题。

【修复】修复退款单处理未更新【更新时间】字段的问题。
This commit is contained in:
JianWeie
2022-06-09 12:19:01 +08:00
parent 2227cc1ee1
commit 5687d54ecc
2 changed files with 7 additions and 5 deletions

View File

@@ -225,7 +225,7 @@ namespace CoreCms.Net.Web.Admin.Controllers.Content
whereSql += " and updateTime > '" + getDate.start.ToString("yyyy-MM-dd HH:mm:ss") + "' ";
whereSql += " and updateTime < '" + getDate.end.ToString("yyyy-MM-dd HH:mm:ss") + "' ";
whereSql += " and status = 2 ";
whereSql += " and type = 1 ";
whereSql += " and type = " + (int)GlobalEnumVars.BillPaymentsType.Common + " ";
data = _reportsServices.GetPaymentsMark(getDate.num, whereSql, getDate.section, getDate.start, "updateTime");
data2 = data;
break;
@@ -234,7 +234,7 @@ namespace CoreCms.Net.Web.Admin.Controllers.Content
whereSql += " and updateTime > '" + getDate.start.ToString("yyyy-MM-dd HH:mm:ss") + "' ";
whereSql += " and updateTime < '" + getDate.end.ToString("yyyy-MM-dd HH:mm:ss") + "' ";
whereSql += " and status = 2 ";
whereSql += " and type = 1 ";
whereSql += " and type = " + (int)GlobalEnumVars.BillPaymentsType.Common + " ";
data = _reportsServices.GetRefundMark(getDate.num, whereSql, getDate.section, getDate.start, "updateTime");
data3 = data;
break;
@@ -243,7 +243,7 @@ namespace CoreCms.Net.Web.Admin.Controllers.Content
whereSql += " and updateTime > '" + getDate.start.ToString("yyyy-MM-dd HH:mm:ss") + "' ";
whereSql += " and updateTime < '" + getDate.end.ToString("yyyy-MM-dd HH:mm:ss") + "' ";
whereSql += " and status = 2 ";
whereSql += " and type = 2 ";
whereSql += " and type = " + (int)GlobalEnumVars.BillPaymentsType.Recharge + " ";
data = _reportsServices.GetPaymentsMark(getDate.num, whereSql, getDate.section, getDate.start, "updateTime");
data4 = data;
break;