|
@@ -1736,237 +1736,6 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
- #region 创客-首页-我的创客-创客详情
|
|
|
- [Authorize]
|
|
|
- public JsonResult MyMakerDetail(string value)
|
|
|
- {
|
|
|
- value = DesDecrypt(value);
|
|
|
- JsonData data = JsonMapper.ToObject(value);
|
|
|
- Dictionary<string, object> Obj = MyMakerDetailDo(value);
|
|
|
- return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
|
|
|
- }
|
|
|
- public Dictionary<string, object> MyMakerDetailDo(string value)
|
|
|
- {
|
|
|
- JsonData data = JsonMapper.ToObject(value);
|
|
|
- string UserId = data["UserId"].ToString(); //创客Id
|
|
|
- string DateKind = data["DateKind"].ToString(); //查询时间
|
|
|
- Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
- decimal TradeTotal = 0;
|
|
|
- int ActTotal = 0;
|
|
|
- if (DateKind == "1")
|
|
|
- {
|
|
|
- for (int i = 0; i <= 7; i++)
|
|
|
- {
|
|
|
- string Date = DateTime.Now.AddDays(-i).ToString("yyyyMMdd");
|
|
|
- TradeTotal += UserTradeDaySummaryDbconn.Instance.GetDateTrade(int.Parse(UserId), Date, "team");
|
|
|
- ActTotal += UserDataDbconn.Instance.GetTeamPosActCount(int.Parse(UserId), Date);
|
|
|
- }
|
|
|
- }
|
|
|
- else if (DateKind == "2")
|
|
|
- {
|
|
|
- for (int i = 0; i <= 6; i++)
|
|
|
- {
|
|
|
- string Month = DateTime.Now.AddMonths(-i).ToString("yyyyMM");
|
|
|
- TradeTotal += UserTradeDaySummaryDbconn.Instance.GetMonthTrade(int.Parse(UserId), Month, "team");
|
|
|
- ActTotal += UserDataDbconn.Instance.GetTeamPosActCount(int.Parse(UserId), Month);
|
|
|
- }
|
|
|
- }
|
|
|
- Obj.Add("TradeTotal", TradeTotal); //总交易
|
|
|
- Obj.Add("ActTotal", ActTotal); //总激活数
|
|
|
-
|
|
|
- List<KqProducts> products = new KqProductsService().List(new List<FieldItem>(), "", 1, 100);
|
|
|
- List<KqProducts> productall = products.Prepend(new KqProducts()
|
|
|
- {
|
|
|
- Id = 0,
|
|
|
- Name = "全部",
|
|
|
- }).ToList();
|
|
|
- //交易分类占比
|
|
|
- List<Dictionary<string, object>> TradePercentList = new List<Dictionary<string, object>>();
|
|
|
- foreach (KqProducts product in products)
|
|
|
- {
|
|
|
- decimal Total = 0;
|
|
|
- if (DateKind == "1")
|
|
|
- {
|
|
|
- for (int i = 0; i <= 7; i++)
|
|
|
- {
|
|
|
- string Date = DateTime.Now.AddDays(-i).ToString("yyyyMMdd");
|
|
|
- Total += UserTradeDaySummaryDbconn.Instance.GetDateTradeForBrand(int.Parse(UserId), Date, product.Id, "team");
|
|
|
- }
|
|
|
- }
|
|
|
- else if (DateKind == "2")
|
|
|
- {
|
|
|
- for (int i = 0; i <= 6; i++)
|
|
|
- {
|
|
|
- string Month = DateTime.Now.AddMonths(-i).ToString("yyyyMM");
|
|
|
- Total += UserTradeDaySummaryDbconn.Instance.GetMonthTradeForBrand(int.Parse(UserId), Month, product.Id, "team");
|
|
|
- }
|
|
|
- }
|
|
|
- if (Total > 0)
|
|
|
- {
|
|
|
- Dictionary<string, object> item = new Dictionary<string, object>();
|
|
|
- item.Add("Name", product.Name); //产品名称
|
|
|
- item.Add("TradeAmt", Total); //交易额
|
|
|
- TradePercentList.Add(item);
|
|
|
- }
|
|
|
- }
|
|
|
- Obj.Add("TradePercent", TradePercentList);
|
|
|
-
|
|
|
- //交易趋势图
|
|
|
- List<Dictionary<string, object>> TradeTrendList = new List<Dictionary<string, object>>();
|
|
|
- foreach (KqProducts product in productall)
|
|
|
- {
|
|
|
- Dictionary<string, object> item = new Dictionary<string, object>();
|
|
|
- item.Add("Name", product.Name); //产品名称
|
|
|
- List<Dictionary<string, object>> TimeList = new List<Dictionary<string, object>>();
|
|
|
- if (DateKind == "1")
|
|
|
- {
|
|
|
- for (int i = 7; i >= 0; i--)
|
|
|
- {
|
|
|
- DateTime Date = DateTime.Now.AddDays(-i);
|
|
|
- Dictionary<string, object> subitem = new Dictionary<string, object>();
|
|
|
- subitem.Add("TimeString", Date.ToString("MMdd")); //交易日期/月份
|
|
|
- if (product.Id > 0)
|
|
|
- {
|
|
|
- subitem.Add("TradeAmt", UserTradeDaySummaryDbconn.Instance.GetDateTradeForBrand(int.Parse(UserId), Date.ToString("yyyyMMdd"), product.Id, "team")); //交易额
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- subitem.Add("TradeAmt", UserTradeDaySummaryDbconn.Instance.GetDateTrade(int.Parse(UserId), Date.ToString("yyyyMMdd"), "team")); //交易额
|
|
|
- }
|
|
|
- TimeList.Add(subitem);
|
|
|
- }
|
|
|
- }
|
|
|
- else if (DateKind == "2")
|
|
|
- {
|
|
|
- for (int i = 6; i >= 0; i--)
|
|
|
- {
|
|
|
- DateTime Month = DateTime.Now.AddMonths(-i);
|
|
|
- Dictionary<string, object> subitem = new Dictionary<string, object>();
|
|
|
- subitem.Add("TimeString", Month.ToString("yyyyMM")); //交易日期/月份
|
|
|
- if (product.Id > 0)
|
|
|
- {
|
|
|
- subitem.Add("TradeAmt", UserTradeDaySummaryDbconn.Instance.GetMonthTradeForBrand(int.Parse(UserId), Month.ToString("yyyyMM"), product.Id, "team")); //交易额
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- subitem.Add("TradeAmt", UserTradeDaySummaryDbconn.Instance.GetMonthTrade(int.Parse(UserId), Month.ToString("yyyyMM"), "team")); //交易额
|
|
|
- }
|
|
|
- TimeList.Add(subitem);
|
|
|
- }
|
|
|
- }
|
|
|
- item.Add("Times", TimeList); //交易额
|
|
|
- TradeTrendList.Add(item);
|
|
|
- }
|
|
|
- Obj.Add("TradeTrend", TradeTrendList);
|
|
|
-
|
|
|
- //新增激活商户分类占比
|
|
|
- List<Dictionary<string, object>> ActMerchantPercentList = new List<Dictionary<string, object>>();
|
|
|
- foreach (KqProducts product in products)
|
|
|
- {
|
|
|
- int Total = 0;
|
|
|
- if (DateKind == "1")
|
|
|
- {
|
|
|
- for (int i = 0; i <= 7; i++)
|
|
|
- {
|
|
|
- string Date = DateTime.Now.AddDays(-i).ToString("yyyyMMdd");
|
|
|
- Total += UserDataDbconn.Instance.GetTeamBrandPosActCount(int.Parse(UserId), product.Id, Date);
|
|
|
- }
|
|
|
- }
|
|
|
- else if (DateKind == "2")
|
|
|
- {
|
|
|
- for (int i = 0; i <= 6; i++)
|
|
|
- {
|
|
|
- string Month = DateTime.Now.AddMonths(-i).ToString("yyyyMM");
|
|
|
- Total += UserDataDbconn.Instance.GetTeamBrandPosActCount(int.Parse(UserId), product.Id, Month);
|
|
|
- }
|
|
|
- }
|
|
|
- if (Total > 0)
|
|
|
- {
|
|
|
- Dictionary<string, object> item = new Dictionary<string, object>();
|
|
|
- item.Add("Name", product.Name); //产品名称
|
|
|
- item.Add("ActCount", Total); //激活数
|
|
|
- ActMerchantPercentList.Add(item);
|
|
|
- }
|
|
|
- }
|
|
|
- Obj.Add("ActMerchantPercent", ActMerchantPercentList);
|
|
|
-
|
|
|
- //新增激活商户趋势图
|
|
|
- List<Dictionary<string, object>> ActMerchantTrendList = new List<Dictionary<string, object>>();
|
|
|
- foreach (KqProducts product in productall)
|
|
|
- {
|
|
|
- Dictionary<string, object> item = new Dictionary<string, object>();
|
|
|
- item.Add("Name", product.Name); //产品名称
|
|
|
- List<Dictionary<string, object>> TimeList = new List<Dictionary<string, object>>();
|
|
|
- if (DateKind == "1")
|
|
|
- {
|
|
|
- for (int i = 7; i >= 0; i--)
|
|
|
- {
|
|
|
- DateTime Date = DateTime.Now.AddDays(-i);
|
|
|
- Dictionary<string, object> subitem = new Dictionary<string, object>();
|
|
|
- subitem.Add("TimeString", Date.ToString("MMdd")); //统计日期/月份
|
|
|
- if (product.Id > 0)
|
|
|
- {
|
|
|
- subitem.Add("ActCount", UserDataDbconn.Instance.GetTeamBrandPosActCount(int.Parse(UserId), product.Id, Date.ToString("yyyyMMdd"))); //激活数
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- subitem.Add("ActCount", UserDataDbconn.Instance.GetTeamPosActCount(int.Parse(UserId), Date.ToString("yyyyMMdd"))); //激活数
|
|
|
- }
|
|
|
- TimeList.Add(subitem);
|
|
|
- }
|
|
|
- }
|
|
|
- else if (DateKind == "2")
|
|
|
- {
|
|
|
- for (int i = 6; i >= 0; i--)
|
|
|
- {
|
|
|
- string Month = DateTime.Now.AddMonths(-i).ToString("yyyyMM");
|
|
|
- Dictionary<string, object> subitem = new Dictionary<string, object>();
|
|
|
- subitem.Add("TimeString", Month); //统计日期/月份
|
|
|
- if (product.Id > 0)
|
|
|
- {
|
|
|
- subitem.Add("ActCount", UserDataDbconn.Instance.GetTeamBrandPosActCount(int.Parse(UserId), product.Id, Month)); //激活数
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- subitem.Add("ActCount", UserDataDbconn.Instance.GetTeamPosActCount(int.Parse(UserId), Month)); //激活数
|
|
|
- }
|
|
|
- TimeList.Add(subitem);
|
|
|
- }
|
|
|
- }
|
|
|
- item.Add("Times", TimeList); //交易额
|
|
|
- ActMerchantTrendList.Add(item);
|
|
|
- }
|
|
|
- Obj.Add("ActMerchantTrend", ActMerchantTrendList);
|
|
|
-
|
|
|
- //创客新增趋势图
|
|
|
- List<Dictionary<string, object>> MakerAddList = new List<Dictionary<string, object>>();
|
|
|
- if (DateKind == "1")
|
|
|
- {
|
|
|
- for (int i = 7; i >= 0; i--)
|
|
|
- {
|
|
|
- string Date = DateTime.Now.AddDays(-i).ToString("yyyyMMdd");
|
|
|
- Dictionary<string, object> item = new Dictionary<string, object>();
|
|
|
- item.Add("TimeString", Date);
|
|
|
- item.Add("AddCount", UsersDbconn.Instance.GetTeamNewUserCount(int.Parse(UserId), Date));
|
|
|
- MakerAddList.Add(item);
|
|
|
- }
|
|
|
- }
|
|
|
- else if (DateKind == "2")
|
|
|
- {
|
|
|
- for (int i = 6; i >= 0; i--)
|
|
|
- {
|
|
|
- string Month = DateTime.Now.AddMonths(-i).ToString("yyyyMM");
|
|
|
- Dictionary<string, object> item = new Dictionary<string, object>();
|
|
|
- item.Add("TimeString", Month);
|
|
|
- item.Add("AddCount", UsersDbconn.Instance.GetTeamNewUserCount(int.Parse(UserId), Month));
|
|
|
- MakerAddList.Add(item);
|
|
|
- }
|
|
|
- }
|
|
|
- Obj.Add("MakerAdd", MakerAddList);
|
|
|
- return Obj;
|
|
|
- }
|
|
|
- #endregion
|
|
|
-
|
|
|
|
|
|
#region 首页-我的创客-未实名创客
|
|
|
[Authorize]
|