| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809 |
- /*
- * 机具库
- */
- using System;
- using System.Web;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Linq;
- using System.Data;
- using System.Threading.Tasks;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.AspNetCore.Http;
- using Microsoft.Extensions.Logging;
- using Microsoft.Extensions.Options;
- using MySystem.Models;
- using Library;
- using LitJson;
- using MySystemLib;
- namespace MySystem.Areas.Admin.Controllers
- {
- [Area("Admin")]
- [Route("Admin/[controller]/[action]")]
- public class PosMachinesTwoChangeController : BaseController
- {
- public PosMachinesTwoChangeController(IHttpContextAccessor accessor, ILogger<BaseController> logger, IOptions<Setting> setting) : base(accessor, logger, setting)
- {
- OtherMySqlConn.connstr = ConfigurationManager.AppSettings["SqlConnStr"].ToString();
- }
- #region 机具库列表
- /// <summary>
- /// 根据条件查询机具库列表
- /// </summary>
- /// <returns></returns>
- public IActionResult Index(PosMachinesTwo data, string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- #endregion
- #region 根据条件查询机具库列表
- /// <summary>
- /// 机具库列表
- /// </summary>
- /// <returns></returns>
- public JsonResult IndexData(PosMachinesTwo data, string BindingStateSelect, string ActivationStateSelect, string UserIdMakerCode, string UserIdRealName, string StoreIdCode, string StoreIdName, string ActivationDateData, string BindingDateData, string BrandSelect = "1", int page = 1, int limit = 30)
- {
- Dictionary<string, string> Fields = new Dictionary<string, string>();
- Fields.Add("PosSn", "1"); //SN编号
- Fields.Add("BrandId", "0"); //品牌
- string condition = " and Status>-1 AND BindingState = 1 AND DATE_SUB(CURDATE(), INTERVAL 90 DAY) >= date(BindingTime) and UpFeeFlag=1 and DownFeeFlag=0 and BrandId!=6 and (SeoDescription!='设置成功' or SeoDescription is null or SeoDescription='')";
- //绑定状态
- if (!string.IsNullOrEmpty(BindingStateSelect))
- {
- condition += " and BindingState=" + BindingStateSelect;
- }
- //激活状态
- if (!string.IsNullOrEmpty(ActivationStateSelect))
- {
- condition += " and ActivationState=" + ActivationStateSelect;
- }
- //所属创客编号
- if (!string.IsNullOrEmpty(UserIdMakerCode))
- {
- condition += " and BuyUserId in (select UserId from UserForMakerCode where MakerCode='" + UserIdMakerCode + "')";
- }
- //所属创客真实姓名
- if (!string.IsNullOrEmpty(UserIdRealName))
- {
- condition += " and BuyUserId in (select UserId from UserForRealName where RealName='" + UserIdRealName + "')";
- }
- //所属仓库编号
- if (!string.IsNullOrEmpty(StoreIdCode))
- {
- condition += " and StoreId in (select StoreId from StoreForCode where Code='" + StoreIdCode + "')";
- }
- //所属仓库名称
- if (!string.IsNullOrEmpty(StoreIdName))
- {
- condition += " and StoreId in (select StoreId from StoreForName where Name='" + StoreIdName + "')";
- }
- //品牌
- if (!string.IsNullOrEmpty(BrandSelect))
- {
- condition += " and BrandId = " + Convert.ToInt32(BrandSelect);
- }
- if (!string.IsNullOrEmpty(ActivationDateData))
- {
- string[] datelist = ActivationDateData.Split(new string[] { " - " }, StringSplitOptions.None);
- string start = datelist[0];
- string end = datelist[1];
- condition += " and ActivationTime>='" + start + " 00:00:00' and ActivationTime<='" + end + " 23:59:59'";
- }
- if (!string.IsNullOrEmpty(BindingDateData))
- {
- string[] datelist = BindingDateData.Split(new string[] { " - " }, StringSplitOptions.None);
- string start = datelist[0];
- string end = datelist[1];
- condition += " and BindingTime>='" + start + " 00:00:00' and BindingTime<='" + end + " 23:59:59'";
- }
- Dictionary<string, object> obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).IndexData("PosMachinesTwo", Fields, "Id desc", "0", page, limit, condition);
- List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
- foreach (Dictionary<string, object> dic in diclist)
- {
- //是否真实调升/降
- if (!string.IsNullOrEmpty(dic["ActivityList"].ToString()))
- {
- string ActivityList = dic["ActivityList"].ToString();
- if (ActivityList == "1") dic["ActivityList"] = "已真实调升";
- if (ActivityList == "2") dic["ActivityList"] = "已真实调降";
- }
- if (string.IsNullOrEmpty(dic["ActivityList"].ToString()))
- {
- dic["ActivityList"] = "";
- }
- //绑定状态
- int BindingState = int.Parse(dic["BindingState"].ToString());
- if (BindingState == 0) dic["BindingState"] = "未绑定";
- if (BindingState == 1) dic["BindingState"] = "已绑定";
- //激活状态
- int ActivationState = int.Parse(dic["ActivationState"].ToString());
- if (ActivationState == 0) dic["ActivationState"] = "未激活";
- if (ActivationState == 1) dic["ActivationState"] = "已激活";
- //所属创客
- int UserId = int.Parse(function.CheckInt(dic["UserId"].ToString()));
- Users userid_Users = db.Users.FirstOrDefault(m => m.Id == UserId) ?? new Users();
- dic["UserIdMakerCode"] = userid_Users.MakerCode;
- dic["UserIdRealName"] = userid_Users.RealName;
- dic.Remove("UserId");
- //所属仓库
- int StoreId = int.Parse(function.CheckInt(dic["StoreId"].ToString()));
- StoreHouse storeid_StoreHouse = db.StoreHouse.FirstOrDefault(m => m.Id == StoreId) ?? new StoreHouse();
- dic["StoreIdCode"] = storeid_StoreHouse.StoreNo;
- dic["StoreIdName"] = storeid_StoreHouse.StoreName;
- dic.Remove("StoreId");
- //产品类型
- dic["BrandId"] = RelationClass.GetKqProductBrandInfo(int.Parse(dic["BrandId"].ToString()));
- //绑定商户
- int BindMerchantId = int.Parse(function.CheckInt(dic["BindMerchantId"].ToString()));
- PosMerchantInfo bindmerchantid_MerchantInfo = db.PosMerchantInfo.FirstOrDefault(m => m.Id == BindMerchantId) ?? new PosMerchantInfo();
- dic["BindMerchantIdMerchantNo"] = bindmerchantid_MerchantInfo.MerchantNo;
- dic["BindMerchantIdMerchantName"] = bindmerchantid_MerchantInfo.MerchantName;
- dic.Remove("BindMerchantId");
- //机具类型
- int PosSnType = int.Parse(dic["PosSnType"].ToString());
- if (PosSnType == 0) dic["PosSnType"] = "兑换机具";
- if (PosSnType == 1) dic["PosSnType"] = "循环机具";
- //设备类型
- string DeviceType = dic["DeviceType"].ToString();
- if (DeviceType == "KysSignPos") dic["DeviceType"] = "快益刷电签POS";
- if (DeviceType == "KssSignPos") dic["DeviceType"] = "快闪刷电签POS";
- if (DeviceType == "") dic["DeviceType"] = "";
- //盟主信息
- int LeaderUserId = int.Parse(function.CheckInt(dic["LeaderUserId"].ToString()));
- if (LeaderUserId != 0)
- {
- Users users = db.Users.FirstOrDefault(m => m.Id == LeaderUserId) ?? new Users();
- dic["UserInfo"] = users.MakerCode + "_" + users.RealName;
- }
- //是否为第一台机具
- // int IsFirst = int.Parse(dic["FirstFlag"].ToString());
- // if (IsFirst == 0) dic["IsFirst"] = "否";
- // if (IsFirst == 1) dic["IsFirst"] = "是";
- dic["IsFirst"] = int.Parse(dic["FirstFlag"].ToString()) == 1 ? "首台" : "非首台"; //是否首台(机具奖励发放)
- dic["PosIsFirst"] = int.Parse(dic["FirstFlag"].ToString()) == 1 ? "首台" : "非首台"; //是否首台(服务费领取)
- //循环开始时间
- if (!string.IsNullOrEmpty(dic["RecycEndDate"].ToString()))
- {
- var RecycStartDate = Convert.ToDateTime(dic["RecycEndDate"].ToString()).AddMonths(-3).ToString("yyyy-MM-dd HH:mm:ss");
- dic["RecycStartDate"] = RecycStartDate;
- }
- //是否调升
- int UpFeeFlag = int.Parse(dic["UpFeeFlag"].ToString());
- if (UpFeeFlag == 0) dic["UpFeeFlag"] = "否";
- if (UpFeeFlag == 1) dic["UpFeeFlag"] = "是";
- //是否调降
- int DownFeeFlag = int.Parse(dic["DownFeeFlag"].ToString());
- if (DownFeeFlag == 0) dic["DownFeeFlag"] = "否";
- if (DownFeeFlag == 1) dic["DownFeeFlag"] = "是";
- //调升时间
- if (!string.IsNullOrEmpty(dic["UpFeeDate"].ToString()))
- {
- var UpFeeDate = Convert.ToDateTime(dic["UpFeeDate"].ToString()).ToString("yyyy-MM-dd HH:mm:ss");
- dic["UpFeeDate"] = UpFeeDate;
- }
- //调降时间
- if (!string.IsNullOrEmpty(dic["DownFeeDate"].ToString()))
- {
- var DownFeeDate = Convert.ToDateTime(dic["DownFeeDate"].ToString()).ToString("yyyy-MM-dd HH:mm:ss");
- dic["DownFeeDate"] = DownFeeDate;
- }
- }
- Dictionary<string, object> other = new Dictionary<string, object>();
- int TotalCount = 0;//总机具数
- DataTable dt = OtherMySqlConn.dtable("select count(0) from PosMachinesTwo where 1=1" + condition);
- if (dt.Rows.Count > 0)
- {
- TotalCount = int.Parse(function.CheckNum(dt.Rows[0][0].ToString()));
- }
- other.Add("TotalCount", TotalCount);
- other.Add("KysCount99", 0);
- other.Add("KssCount99", 0);
- other.Add("KssCoun198", 0);
- other.Add("KssCount298", 0);
- obj.Add("other", other);
- return Json(obj);
- }
- #endregion
- #region 增加机具库
- /// <summary>
- /// 增加或修改机具库信息
- /// </summary>
- /// <returns></returns>
- public IActionResult Add(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- #endregion
- #region 增加机具库
- /// <summary>
- /// 增加或修改机具库信息
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- public string Add(PosMachinesTwo data)
- {
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("SeoTitle", data.SeoTitle);
- Fields.Add("SeoKeyword", data.SeoKeyword);
- Fields.Add("SeoDescription", data.SeoDescription);
- int Id = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Add("PosMachinesTwo", Fields, 0);
- AddSysLog(data.Id.ToString(), "PosMachinesTwo", "add");
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 修改机具库
- /// <summary>
- /// 增加或修改机具库信息
- /// </summary>
- /// <returns></returns>
- public IActionResult Edit(string right, int Id = 0)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- PosMachinesTwo editData = db.PosMachinesTwo.FirstOrDefault(m => m.Id == Id) ?? new PosMachinesTwo();
- ViewBag.data = editData;
- return View();
- }
- #endregion
- #region 修改机具库
- /// <summary>
- /// 增加或修改机具库信息
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- public string Edit(PosMachinesTwo data)
- {
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("PosSnType", data.PosSnType);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("PosMachinesTwo", Fields, data.Id);
- AddSysLog(data.Id.ToString(), "PosMachinesTwo", "update");
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 未使用机具归位总仓
- /// <summary>
- /// 未使用机具归位总仓
- /// </summary>
- /// <returns></returns>
- public IActionResult Home(string right, int Id = 0)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- PosMachinesTwo editData = db.PosMachinesTwo.FirstOrDefault(m => m.Id == Id) ?? new PosMachinesTwo();
- ViewBag.data = editData;
- return View();
- }
- #endregion
- #region 未使用机具归位总仓
- /// <summary>
- /// 未使用机具归位总仓
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- public string Home(PosMachinesTwo data)
- {
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("SeoTitle", "");
- Fields.Add("SeoKeyword", "");
- Fields.Add("PosSnType", 0);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("PosMachinesTwo", Fields, data.Id);
- AddSysLog(data.Id.ToString(), "PosMachinesTwo", "home");
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 删除机具库信息
- /// <summary>
- /// 删除机具库信息
- /// </summary>
- /// <returns></returns>
- public string Delete(string Id)
- {
- string[] idlist = Id.Split(new char[] { ',' });
- AddSysLog(Id, "PosMachinesTwo", "del");
- foreach (string subid in idlist)
- {
- int id = int.Parse(subid);
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("Status", -1);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("PosMachinesTwo", Fields, id);
- }
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 开启
- /// <summary>
- /// 开启
- /// </summary>
- /// <returns></returns>
- public string Open(string Id)
- {
- string[] idlist = Id.Split(new char[] { ',' });
- AddSysLog(Id, "PosMachinesTwo", "open");
- foreach (string subid in idlist)
- {
- int id = int.Parse(subid);
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("Status", 1);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("PosMachinesTwo", Fields, id);
- }
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 关闭
- /// <summary>
- /// 关闭
- /// </summary>
- /// <returns></returns>
- public string Close(string Id)
- {
- string[] idlist = Id.Split(new char[] { ',' });
- AddSysLog(Id, "PosMachinesTwo", "close");
- foreach (string subid in idlist)
- {
- int id = int.Parse(subid);
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("Status", 0);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("PosMachinesTwo", Fields, id);
- }
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 排序
- /// <summary>
- /// 排序
- /// </summary>
- /// <param name="Id"></param>
- public string Sort(int Id, int Sort)
- {
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Sort("PosMachinesTwo", Sort, Id);
- AddSysLog(Id.ToString(), "PosMachinesTwo", "sort");
- return "success";
- }
- #endregion
- #region 批量调升费率
- /// <summary>
- /// 批量调升费率
- /// </summary>
- /// <returns></returns>
- public string BatchSetting(string Id)
- {
- string opdate = function.ReadInstance("/PublicParams/UpFeeDate/" + DateTime.Now.ToString("yyyyMMdd") + ".txt");
- if (!string.IsNullOrEmpty(opdate))
- {
- return "已提交,请勿重复操作";
- }
- function.WritePage("/PublicParams/UpFeeDate/", DateTime.Now.ToString("yyyyMMdd") + ".txt", DateTime.Now.ToString("HH:mm:ss"));
- AddSysLog(Id, "PosMachinesTwo", "UpFeePosMachinesTwo");
- List<int> posIds = new List<int>();
- List<int> upposIds = new List<int>();
- string userIds = "";
- DateTime check = DateTime.Now.AddDays(-90);
- List<PosMachinesTwo> poslist = db.PosMachinesTwo.Where(m => m.Status > -1 && m.BindingState == 1 && m.UpFeeFlag == 1 && m.DownFeeFlag == 0 && m.BindingTime <= check && m.SeoDescription != "设置成功" && m.BrandId != 6).ToList();//非盒子
- foreach (PosMachinesTwo pos in poslist)
- {
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("UpFeeFlag", 1);
- Fields.Add("UpFeeMan", SysUserName);
- Fields.Add("UpFeeDate", DateTime.Now);
- if (!userIds.Contains(pos.BuyUserId.ToString()))
- {
- userIds += pos.BuyUserId + ",";
- }
- string info = "{\"RecordId\":\"\",\"PosId\":\"" + pos.Id + "\",\"Fee\": \"" + 0.63 + "\",\"Kind\": \"" + 1 + "\",\"OpMan\": \"" + SysUserName + "\"}";
- RedisDbconn.Instance.AddList("SetDepositPostQueue", info);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("PosMachinesTwo", Fields, pos.Id);
- }
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 导入费率调整结果
- /// <summary>
- /// 导入费率调整结果
- /// </summary>
- /// <param name="ExcelData"></param>
- public string ImportEnd(string ExcelData)
- {
- ExcelData = HttpUtility.UrlDecode(ExcelData);
- JsonData list = JsonMapper.ToObject(ExcelData);
- List<int> dnposIds = new List<int>();
- string userIds = "";
- string warning = "";
- for (int i = 1; i < list.Count; i++)
- {
- JsonData dr = list[i];
- string PosNo = dr[0].ToString(); // 机具Sn
- var Amount = double.Parse(dr[1].ToString()); // 调整费率
- int Kind = int.Parse(dr[2].ToString()); // 1 调升 2 调低
- var pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == PosNo) ?? new PosMachinesTwo();
- if (pos.UpFeeFlag == 1)
- {
- if (Kind != 2 || Amount != 0.6)
- {
- warning += PosNo + ",该机具调低费率数值或类型不正确,请检查好后全部重新导入";
- }
- else
- {
- if (Kind == 2 && Amount == 0.6)
- {
- pos.DownFeeFlag = 1;
- pos.DownFeeDate = DateTime.Now;
- pos.DownFeeMan = SysUserName + "_" + SysRealName;
- var poschange = db.PosMachinesFeeChangeRecord.FirstOrDefault(m => m.PosId == pos.Id);
- poschange.Status = 1;
- db.SaveChanges();
- dnposIds.Add(pos.Id);
- }
- if (!userIds.Contains(pos.BuyUserId.ToString()))
- {
- userIds += pos.BuyUserId + ",";
- }
- }
- }
- else
- {
- warning += PosNo + ",该机具不符合调低条件,请检查好后全部重新导入";
- }
- }
- if (!string.IsNullOrEmpty(warning))
- {
- return "waning |" + warning;
- }
- string[] lists = userIds.TrimEnd(',').Split(new char[] { ',' });
- int times = lists.ToList().Count;
- if (dnposIds.Count > 0)
- {
- //调降
- for (int i = 0; i < times; i++)
- {
- var UserId = lists[i];
- var posInfo = db.PosMachinesTwo.Where(m => dnposIds.Contains(m.Id) && m.BuyUserId == Convert.ToInt32(UserId)).ToList();
- string snhtml = "<div style='margin-bottom: .48rem;'>";
- foreach (var items in posInfo)
- {
- var mer = db.PosMerchantInfo.FirstOrDefault(m => m.Id == items.BindMerchantId);
- string Name = mer.MerchantName;
- if (mer.BrandId == 2)
- {
- if (Name.Contains("-"))
- {
- Name = Name.Split('-')[1];
- }
- else if (Name.Contains("_"))
- {
- Name = Name.Split('_')[1];
- }
- }
- var brand = db.KqProducts.FirstOrDefault(m => m.Id == items.BrandId);
- snhtml += "<div style='margin-bottom: .48rem;'><div class='f16'>商户姓名:" + Name + "</div>";
- snhtml += "<div class='f16'>机具品牌:" + brand.Name + "</div>";
- snhtml += "<div class='f16'>SN:" + items.PosSn + "</div>";
- snhtml += "<div class='f16'>当前费率:0.6%</div>";
- snhtml += "<div class='f16'>费率调整时间:" + items.DownFeeDate + "</div></div>";
- }
- snhtml += "</div>";
- RedisDbconn.Instance.AddList("MsgPersonalQueue", Newtonsoft.Json.JsonConvert.SerializeObject(new MsgPersonal()
- {
- UserId = Convert.ToInt32(UserId), //创客
- Title = "商户费率变更通知", //标题
- Content = "<div class='f16' style='margin-bottom: .72rem'>您的商户刷卡交易费率已变更成功!</div>" + snhtml, //内容
- Summary = "您的商户刷卡交易费率已变更成功!",
- CreateDate = DateTime.Now,
- }));
- }
- }
- AddSysLog("0", "PosMachinesTwoChange", "ImportEnd");
- return "success";
- }
- #endregion
- #region 导入数据
- public IActionResult Import(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- /// <summary>
- /// 导入数据
- /// </summary>
- /// <param name="ExcelData"></param>
- [HttpPost]
- public string ImportPost(string ExcelPath)
- {
- string key = function.MD5_16(Guid.NewGuid().ToString());
- RedisDbconn.Instance.AddList("ExcelImport10", ExcelPath + "#cut#ChangeFee#cut#" + key + "#cut#" + SysUserName);
- return "success|" + key;
- }
- public string CheckImport(string key)
- {
- string result = RedisDbconn.Instance.Get<string>("CheckImport:" + key);
- if (!string.IsNullOrEmpty(result))
- {
- string[] datalist = result.Split('|');
- if (datalist[0] == "success")
- {
- return result;
- }
- return datalist[0];
- }
- return "0";
- }
- public Dictionary<string, object> CheckImportV2(string key)
- {
- Dictionary<string, object> Obj = new Dictionary<string, object>();
- string result = RedisDbconn.Instance.Get<string>("CheckImport:" + key);
- if (!string.IsNullOrEmpty(result))
- {
- string[] datalist = result.Split('|');
- if (datalist[0] == "success")
- {
- List<string> errList = RedisDbconn.Instance.GetList<string>("ErrList" + key);
- if (errList.Count > 0)
- {
- Obj.Add("status", 2);
- Obj.Add("errList", errList);
- }
- else
- {
- Obj.Add("status", 1);
- Obj.Add("data", result);
- }
- return Obj;
- }
- Obj.Add("status", 0);
- Obj.Add("data", datalist[0]);
- return Obj;
- }
- Obj.Add("status", -1);
- Obj.Add("data", "执行中...");
- return Obj;
- }
- #endregion
- #region 导出Excel
- /// <summary>
- /// 导出Excel
- /// </summary>
- /// <returns></returns>
- public JsonResult ExportExcel(PosMachinesTwo data, string BindingStateSelect, string ActivationStateSelect, string UserIdMakerCode, string UserIdRealName, string StoreIdCode, string StoreIdName, string UpFeeFlagSelect)
- {
- Dictionary<string, string> Fields = new Dictionary<string, string>();
- Fields.Add("PosSn", "1"); //SN编号
- Fields.Add("BrandId", "0"); //品牌
- string condition = " and Status>-1 and BrandId = " + data.BrandId + " ";
- //绑定状态
- if (!string.IsNullOrEmpty(BindingStateSelect))
- {
- condition += " and BindingState=" + BindingStateSelect;
- }
- //激活状态
- if (!string.IsNullOrEmpty(ActivationStateSelect))
- {
- condition += " and ActivationState=" + ActivationStateSelect;
- }
- //所属创客编号
- if (!string.IsNullOrEmpty(UserIdMakerCode))
- {
- condition += " and UserId in (select UserId from UserForMakerCode where MakerCode='" + UserIdMakerCode + "')";
- }
- //所属创客真实姓名
- if (!string.IsNullOrEmpty(UserIdRealName))
- {
- condition += " and UserId in (select UserId from UserForRealName where RealName='" + UserIdRealName + "')";
- }
- //所属仓库编号
- if (!string.IsNullOrEmpty(StoreIdCode))
- {
- condition += " and StoreId in (select StoreId from StoreForCode where Code='" + StoreIdCode + "')";
- }
- //所属仓库名称
- if (!string.IsNullOrEmpty(StoreIdName))
- {
- condition += " and StoreId in (select StoreId from StoreForName where Name='" + StoreIdName + "')";
- }
- //是否调整
- if (!string.IsNullOrEmpty(UpFeeFlagSelect))
- {
- condition += " and UpFeeFlag = " + UpFeeFlagSelect;
- }
- Dictionary<string, object> obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).IndexData("PosMachinesTwo", Fields, "Id desc", "0", 1, 20000, condition, "BindingState,ActivationState,UserId,StoreId,PosSn,BrandId,ActivityList,BindMerchantId,PosSnType,DeviceType,BindingTime,UpFeeDate,DownFeeDate,ActivationTime,TransferTime", false);
- List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
- foreach (Dictionary<string, object> dic in diclist)
- {
- //绑定状态
- int BindingState = int.Parse(dic["BindingState"].ToString());
- if (BindingState == 0) dic["BindingState"] = "未绑定";
- if (BindingState == 1) dic["BindingState"] = "已绑定";
- //绑定时间
- if (!string.IsNullOrEmpty(dic["BindingTime"].ToString()))
- {
- DateTime BindingTime = Convert.ToDateTime(dic["BindingTime"].ToString());
- }
- //激活状态
- int ActivationState = int.Parse(dic["ActivationState"].ToString());
- if (ActivationState == 0) dic["ActivationState"] = "未激活";
- if (ActivationState == 1) dic["ActivationState"] = "已激活";
- //激活时间
- if (!string.IsNullOrEmpty(dic["ActivationTime"].ToString()))
- {
- DateTime ActivationTime = Convert.ToDateTime(dic["ActivationTime"].ToString());
- }
- //划拨时间
- if (!string.IsNullOrEmpty(dic["TransferTime"].ToString()))
- {
- DateTime TransferTime = Convert.ToDateTime(dic["TransferTime"].ToString());
- }
- //调升时间
- if (!string.IsNullOrEmpty(dic["UpFeeDate"].ToString()))
- {
- DateTime UpFeeDate = Convert.ToDateTime(dic["UpFeeDate"].ToString());
- }
- //调降时间
- if (!string.IsNullOrEmpty(dic["DownFeeDate"].ToString()))
- {
- DateTime DownFeeDate = Convert.ToDateTime(dic["DownFeeDate"].ToString());
- }
- //所属创客
- int UserId = int.Parse(function.CheckInt(dic["UserId"].ToString()));
- Users userid_Users = db.Users.FirstOrDefault(m => m.Id == UserId) ?? new Users();
- dic["UserIdMakerCode"] = userid_Users.MakerCode;
- dic["UserIdRealName"] = userid_Users.RealName;
- dic.Remove("UserId");
- //所属仓库
- int StoreId = int.Parse(function.CheckInt(dic["StoreId"].ToString()));
- StoreHouse storeid_StoreHouse = db.StoreHouse.FirstOrDefault(m => m.Id == StoreId) ?? new StoreHouse();
- dic["StoreIdCode"] = storeid_StoreHouse.StoreNo;
- dic["StoreIdName"] = storeid_StoreHouse.StoreName;
- dic.Remove("StoreId");
- //产品类型
- dic["BrandId"] = RelationClass.GetKqProductBrandInfo(int.Parse(dic["BrandId"].ToString()));
- //绑定商户
- int BindMerchantId = int.Parse(function.CheckInt(dic["BindMerchantId"].ToString()));
- PosMerchantInfo bindmerchantid_MerchantInfo = db.PosMerchantInfo.FirstOrDefault(m => m.Id == BindMerchantId) ?? new PosMerchantInfo();
- dic["BindMerchantIdMerchantNo"] = bindmerchantid_MerchantInfo.MerchantNo;
- dic["BindMerchantIdMerchantName"] = bindmerchantid_MerchantInfo.MerchantName;
- dic.Remove("BindMerchantId");
- //机具类型
- int PosSnType = int.Parse(dic["PosSnType"].ToString());
- if (PosSnType == 0) dic["PosSnType"] = "兑换机具";
- if (PosSnType == 1) dic["PosSnType"] = "循环机具";
- }
- Dictionary<string, object> result = new Dictionary<string, object>();
- result.Add("Status", "1");
- result.Add("Info", "Excel报表-" + DateTime.Now.ToString("yyyy-MM-ddTHH:mm:ss") + ".xlsx");
- result.Add("Obj", diclist);
- Dictionary<string, object> ReturnFields = new Dictionary<string, object>();
- ReturnFields.Add("UserIdMakerCode", "创客编号");
- ReturnFields.Add("UserIdRealName", "创客姓名");
- ReturnFields.Add("StoreIdCode", "仓库编号");
- ReturnFields.Add("StoreIdName", "仓库名称");
- ReturnFields.Add("BrandId", "产品类型");
- ReturnFields.Add("PosSn", "SN编号");
- ReturnFields.Add("PosSnType", "SN类型");
- ReturnFields.Add("BindMerchantIdMerchantNo", "绑定商户编号");
- ReturnFields.Add("BindMerchantIdMerchantName", "绑定商户姓名");
- ReturnFields.Add("DeviceType", "设备类型");
- ReturnFields.Add("BindingState", "绑定状态");
- ReturnFields.Add("BindingTime", "绑定时间");
- ReturnFields.Add("ActivationState", "激活状态");
- ReturnFields.Add("ActivationTime", "激活时间");
- ReturnFields.Add("TransferTime", "划拨时间");
- ReturnFields.Add("UpFeeFlag", "调升标记");
- ReturnFields.Add("UpFeeDate", "调升时间");
- ReturnFields.Add("UpFeeMan", "调升人");
- ReturnFields.Add("DownFeeFlag", "调降标记");
- ReturnFields.Add("DownFeeDate", "调降时间");
- ReturnFields.Add("DownFeeMan", "调降人");
- result.Add("Fields", ReturnFields);
- AddSysLog("0", "PosMachinesTwo", "ExportExcel");
- return Json(result);
- }
- #endregion
- }
- }
|