|
@@ -505,6 +505,71 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
}
|
|
|
#endregion
|
|
|
|
|
|
+ #region 首页-客小爽产品-机具管理-已绑定机具列表
|
|
|
+ // [Authorize]
|
|
|
+ public JsonResult MyMachinesForBind2(string value)
|
|
|
+ {
|
|
|
+ value = DesDecrypt(value);
|
|
|
+ value = value.Replace("null", "\"\"");
|
|
|
+ JsonData data = JsonMapper.ToObject(value);
|
|
|
+ Dictionary<string, object> Other = new Dictionary<string, object>();
|
|
|
+ List<Dictionary<string, object>> dataList = MyMachinesForBind2Do(value, out Other);
|
|
|
+ return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList, Other = Other });
|
|
|
+ }
|
|
|
+ public List<Dictionary<string, object>> MyMachinesForBind2Do(string value, out Dictionary<string, object> Other)
|
|
|
+ {
|
|
|
+ JsonData data = JsonMapper.ToObject(value);
|
|
|
+ int UserId = int.Parse(function.CheckInt(data["UserId"].ToString())); //所属创客
|
|
|
+ int BrandId = int.Parse(function.CheckInt(data["BrandId"].ToString())); //产品类型
|
|
|
+ string SnNo = data["SnNo"].ToString(); //SN号
|
|
|
+ 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>>();
|
|
|
+ if (!string.IsNullOrEmpty(SnNo))
|
|
|
+ {
|
|
|
+ PageSize = 100000;
|
|
|
+ }
|
|
|
+ IQueryable<PosMachines> query = maindb.PosMachines.Where(m => m.Status > -1 && m.BuyUserId == UserId && m.BindingState == 1);
|
|
|
+ if (!string.IsNullOrEmpty(SnNo))
|
|
|
+ {
|
|
|
+ query = query.Where(m => m.PosSn == SnNo);
|
|
|
+ }
|
|
|
+ Other = new Dictionary<string, object>();
|
|
|
+ if (PageNum == 1)
|
|
|
+ {
|
|
|
+ Other.Add("count", query.Count());
|
|
|
+ query = query.Take(PageSize);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ int skipNum = PageSize * (PageNum - 1);
|
|
|
+ query = query.Skip(skipNum).Take(PageSize);
|
|
|
+ }
|
|
|
+ foreach (var subdata in query.ToList())
|
|
|
+ {
|
|
|
+ Dictionary<string, object> curData = new Dictionary<string, object>();
|
|
|
+ curData.Add("ActivationState", subdata.ActivationState == 1 ? "已激活" : "未激活"); //激活状态
|
|
|
+ curData.Add("PosSn", subdata.PosSn); //SN编号
|
|
|
+ curData.Add("PosSnType", RelationClass.GetPosSnTypeInfo(subdata.PosSnType)); //机具类型
|
|
|
+ curData.Add("Id", subdata.Id); //Id
|
|
|
+ decimal Deposit = 299;
|
|
|
+ if (BrandId == 6)
|
|
|
+ {
|
|
|
+ Deposit = 249;
|
|
|
+ }
|
|
|
+ if (!string.IsNullOrEmpty(subdata.PrizeParams))
|
|
|
+ {
|
|
|
+ Deposit = decimal.Parse(function.CheckNum(subdata.PrizeParams));
|
|
|
+ }
|
|
|
+ curData.Add("Deposit", Deposit);
|
|
|
+ MerchantAddInfo merchant = maindb.MerchantAddInfo.FirstOrDefault(m => m.Id == subdata.BindMerchantId) ?? new MerchantAddInfo();
|
|
|
+ curData.Add("BindedMerchant", merchant.CertMerchantName);
|
|
|
+ curData.Add("IsLeader", 0);
|
|
|
+ dataList.Add(curData);
|
|
|
+ }
|
|
|
+ return dataList;
|
|
|
+ }
|
|
|
+ #endregion
|
|
|
|
|
|
|
|
|
|