瀏覽代碼

手动入库统计交易额的数据排除未付款的

lcl 1 年之前
父節點
當前提交
f6efb8e69a
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      AppStart/Helper/StatService.cs

+ 2 - 2
AppStart/Helper/StatService.cs

@@ -298,8 +298,8 @@ namespace MySystem
             try
             {
                 string start = "2023-09-01 00:00:00";
-                string end = DateTime.Now.ToString("2023-09-22 11:38:00");
-                DataTable selfDt = CustomerSqlConn.dtable("select UserId,MerchantId,SnNo,PayMode,IsAct,DATE_FORMAT(CreateDate,'%Y%m%d'),sum(PayMoney),count(Id),sum(MaxDivi),sum(MerchantActualAmount) from ConsumerOrders where MerchantId>0 and CreateDate>='" + start + "' and CreateDate<'" + end + "' group by UserId,MerchantId,SnNo,PayMode,IsAct,DATE_FORMAT(CreateDate,'%Y%m%d')", connstr);
+                string end = DateTime.Now.ToString("2023-09-22 15:35:00");
+                DataTable selfDt = CustomerSqlConn.dtable("select UserId,MerchantId,SnNo,PayMode,IsAct,DATE_FORMAT(CreateDate,'%Y%m%d'),sum(PayMoney),count(Id),sum(MaxDivi),sum(MerchantActualAmount) from ConsumerOrders where MerchantId>0 and CreateDate>='" + start + "' and CreateDate<'" + end + "' and Status>0 group by UserId,MerchantId,SnNo,PayMode,IsAct,DATE_FORMAT(CreateDate,'%Y%m%d')", connstr);
                 if (selfDt.Rows.Count > 0)
                 {
                     function.WriteLog("统计人数:" + selfDt.Rows.Count + "\n\n", "统计商户和创客交易额日志");