|
@@ -42,10 +42,10 @@ namespace MySystem.Areas.Api.Controllers.v1.pos
|
|
|
int Kind = int.Parse(function.CheckInt(data["Kind"].ToString()));
|
|
|
string Date = Kind == 1 ? "%Y%m%d" : "%Y%m";
|
|
|
string TradeMonthCondi = "";
|
|
|
- if(Kind == 2)
|
|
|
+ if(Kind == 1)
|
|
|
{
|
|
|
string TradeMonth = data["TradeMonth"].ToString();
|
|
|
- string StartTradeMonth = TradeMonth + "-01 00:00:00";
|
|
|
+ string StartTradeMonth = TradeMonth.Substring(0, 4) + "-" + TradeMonth.Substring(4, 2) + "-01 00:00:00";
|
|
|
string EndTradeMonth = DateTime.Parse(StartTradeMonth).AddMonths(1).ToString("yyyy-MM-dd HH:mm:ss");
|
|
|
TradeMonthCondi = " and CreateDate>='" + StartTradeMonth + "' and CreateDate<'" + EndTradeMonth + "'";
|
|
|
}
|
|
@@ -96,8 +96,8 @@ namespace MySystem.Areas.Api.Controllers.v1.pos
|
|
|
int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
|
|
|
int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
|
|
|
List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
|
|
|
- DateTime start = DateTime.Parse(ActDate + " 00:00:00");
|
|
|
- DateTime end = DateTime.Parse(ActDate + " 23:59:59");
|
|
|
+ DateTime start = DateTime.Parse(ActDate.Substring(0, 4) + "-" + ActDate.Substring(4, 2) + "-" + ActDate.Substring(6, 2) + " 00:00:00");
|
|
|
+ DateTime end = DateTime.Parse(ActDate.Substring(0, 4) + "-" + ActDate.Substring(4, 2) + "-" + ActDate.Substring(6, 2) + " 23:59:59");
|
|
|
IQueryable<ActiveReward> query = maindb.ActiveReward.Where(m => m.UserId == UserId && m.CreateDate >= start && m.CreateDate <= end);
|
|
|
if (PageNum == 1)
|
|
|
{
|
|
@@ -111,9 +111,9 @@ namespace MySystem.Areas.Api.Controllers.v1.pos
|
|
|
foreach (var subdata in query.ToList())
|
|
|
{
|
|
|
Dictionary<string, object> curData = new Dictionary<string, object>();
|
|
|
- PosMerchantInfo merchant = PosMerchantInfoDbconn.Instance.Get(subdata.MerchantId) ?? new PosMerchantInfo();
|
|
|
+ MerchantInfo merchant = MerchantInfoDbconn.Instance.Get(subdata.MerchantId) ?? new MerchantInfo();
|
|
|
curData.Add("SnNo", subdata.KqSnNo);
|
|
|
- curData.Add("MerchantName", merchant.MerchantName); //商户名称
|
|
|
+ curData.Add("MerchantName", merchant.Name); //商户名称
|
|
|
curData.Add("RewardAmount", subdata.RewardAmount); //奖励金额
|
|
|
dataList.Add(curData);
|
|
|
}
|