mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-03-23 12:27:20 +08:00
【修复】修复财务报表统计中对充值统计纬度类型传送错误的问题。
【修复】修复退款单处理未更新【更新时间】字段的问题。
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user