| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546 |
- /*
- * 机具费率调整申请
- */
- using System;
- using System.Web;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Linq;
- 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 PosMachinesFeeChangeRecordController : BaseController
- {
- public PosMachinesFeeChangeRecordController(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(PosMachinesFeeChangeRecord data, string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- #endregion
- #region 根据条件查询机具费率调整申请列表
- /// <summary>
- /// 机具费率调整申请列表
- /// </summary>
- /// <returns></returns>
- public JsonResult IndexData(PosMachinesFeeChangeRecord data, string UserIdMakerCode, string UserIdRealName, string PosUserIdMakerCode, string PosUserIdRealName, string SortSelect = "1", string StatusSelect = "2", int page = 1, int limit = 30)
- {
- Dictionary<string, string> Fields = new Dictionary<string, string>();
- Fields.Add("CreateDate", "3"); //时间
- Fields.Add("PosSn", "1"); //机具SN
- Fields.Add("MerNo", "1"); //商户号
- Fields.Add("Sort", "0"); //品牌
- string condition = " and Status >=-1";
- //创客编号
- 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(PosUserIdMakerCode))
- {
- condition += " and PosUserId in (select PosUserId from UserForMakerCode where MakerCode='" + PosUserIdMakerCode + "')";
- }
- //机具所属人真实姓名
- if (!string.IsNullOrEmpty(PosUserIdRealName))
- {
- condition += " and PosUserId in (select PosUserId from UserForRealName where RealName='" + PosUserIdRealName + "')";
- }
- //品牌
- if (!string.IsNullOrEmpty(SortSelect))
- {
- condition += " and Sort = " + Convert.ToInt32(SortSelect);
- }
- // if (data.Sort > 0)
- // {
- // condition += " and Sort = " + data.Sort;
- // }
- // if (data.Sort == 0)
- // {
- // condition += " and Sort = 1";
- // }
- if (!string.IsNullOrEmpty(StatusSelect))
- {
- if (Convert.ToInt32(StatusSelect) > 0)
- {
- if (Convert.ToInt32(StatusSelect) == 1) condition += " and Status = 1";
- if (Convert.ToInt32(StatusSelect) == 2) condition += " and Status = 0";
- if (Convert.ToInt32(StatusSelect) == 3) condition += " and Status = -1";
- }
- }
- Dictionary<string, object> obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).IndexData("PosMachinesFeeChangeRecord", 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)
- {
- //创客
- 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 PosUserId = int.Parse(function.CheckInt(dic["PosUserId"].ToString()));
- Users posuserid_Users = db.Users.FirstOrDefault(m => m.Id == PosUserId) ?? new Users();
- dic["PosUserIdMakerCode"] = posuserid_Users.MakerCode;
- dic["PosUserIdRealName"] = posuserid_Users.RealName;
- dic.Remove("PosUserId");
- //状态
- string Status = dic["Status"].ToString();
- if (Status == "0") dic["Status"] = "处理中";
- if (Status == "1") dic["Status"] = "成功";
- if (Status == "-1") dic["Status"] = "失败";
- //产品类型
- dic["Sort"] = RelationClass.GetKqProductBrandInfo(int.Parse(dic["Sort"].ToString()));
- }
- 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(PosMachinesFeeChangeRecord data)
- {
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("UserId", data.UserId); //创客
- Fields.Add("ChangeFee", data.ChangeFee); //调整费率
- Fields.Add("PosSn", data.PosSn); //机具SN
- Fields.Add("MerNo", data.MerNo); //商户号
- Fields.Add("PosUserId", data.PosUserId); //机具所属人
- Fields.Add("SeoTitle", data.SeoTitle);
- Fields.Add("SeoKeyword", data.SeoKeyword);
- Fields.Add("SeoDescription", data.SeoDescription);
- int Id = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Add("PosMachinesFeeChangeRecord", Fields, 0);
- AddSysLog(data.Id.ToString(), "PosMachinesFeeChangeRecord", "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;
- PosMachinesFeeChangeRecord editData = db.PosMachinesFeeChangeRecord.FirstOrDefault(m => m.Id == Id) ?? new PosMachinesFeeChangeRecord();
- ViewBag.data = editData;
- return View();
- }
- #endregion
- #region 修改机具费率调整申请
- /// <summary>
- /// 增加或修改机具费率调整申请信息
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- public string Edit(PosMachinesFeeChangeRecord data)
- {
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("UserId", data.UserId); //创客
- Fields.Add("ChangeFee", data.ChangeFee); //调整费率
- Fields.Add("PosSn", data.PosSn); //机具SN
- Fields.Add("MerNo", data.MerNo); //商户号
- Fields.Add("PosUserId", data.PosUserId); //机具所属人
- Fields.Add("SeoTitle", data.SeoTitle);
- Fields.Add("SeoKeyword", data.SeoKeyword);
- Fields.Add("SeoDescription", data.SeoDescription);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("PosMachinesFeeChangeRecord", Fields, data.Id);
- AddSysLog(data.Id.ToString(), "PosMachinesFeeChangeRecord", "update");
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 删除机具费率调整申请信息
- /// <summary>
- /// 删除机具费率调整申请信息
- /// </summary>
- /// <returns></returns>
- public string Delete(string Id)
- {
- string[] idlist = Id.Split(new char[] { ',' });
- AddSysLog(Id, "PosMachinesFeeChangeRecord", "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("PosMachinesFeeChangeRecord", 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, "PosMachinesFeeChangeRecord", "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("PosMachinesFeeChangeRecord", 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, "PosMachinesFeeChangeRecord", "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("PosMachinesFeeChangeRecord", 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("PosMachinesFeeChangeRecord", Sort, Id);
- AddSysLog(Id.ToString(), "PosMachinesFeeChangeRecord", "sort");
- 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 && pos.DownFeeFlag == 0)
- {
- 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.Value.ToString("yyyy-MM-dd HH:mm:ss") + "</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 导入数据
- /// <summary>
- /// 导入数据
- /// </summary>
- /// <param name="ExcelData"></param>
- public string Import(string ExcelData)
- {
- ExcelData = HttpUtility.UrlDecode(ExcelData);
- JsonData list = JsonMapper.ToObject(ExcelData);
- for (int i = 1; i < list.Count; i++)
- {
- JsonData dr = list[i];
- db.PosMachinesFeeChangeRecord.Add(new PosMachinesFeeChangeRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- });
- db.SaveChanges();
- }
- AddSysLog("0", "PosMachinesFeeChangeRecord", "Import");
- return "success";
- }
- #endregion
- #region 导出Excel
- /// <summary>
- /// 导出Excel
- /// </summary>
- /// <returns></returns>
- public JsonResult ExportExcel(PosMachinesFeeChangeRecord data, string UserIdMakerCode, string UserIdRealName, string PosUserIdMakerCode, string PosUserIdRealName, string StatusSelect, string SortSelect)
- {
- Dictionary<string, string> Fields = new Dictionary<string, string>();
- Fields.Add("CreateDate", "3"); //时间
- Fields.Add("PosSn", "1"); //机具SN
- Fields.Add("MerNo", "1"); //商户号
- Fields.Add("Sort", "0"); //品牌
- string condition = "";
- //创客编号
- 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(PosUserIdMakerCode))
- {
- condition += " and PosUserId in (select PosUserId from UserForMakerCode where MakerCode='" + PosUserIdMakerCode + "')";
- }
- //机具所属人真实姓名
- if (!string.IsNullOrEmpty(PosUserIdRealName))
- {
- condition += " and PosUserId in (select PosUserId from UserForRealName where RealName='" + PosUserIdRealName + "')";
- }
- //品牌
- if (!string.IsNullOrEmpty(SortSelect))
- {
- condition += " and Sort = " + Convert.ToInt32(SortSelect);
- }
- if (!string.IsNullOrEmpty(StatusSelect))
- {
- if (Convert.ToInt32(StatusSelect) > 0)
- {
- if (Convert.ToInt32(StatusSelect) == 1) condition += " and Status = 1";
- if (Convert.ToInt32(StatusSelect) == 2) condition += " and Status = 0";
- if (Convert.ToInt32(StatusSelect) == 3) condition += " and Status = -1";
- }
- }
- Dictionary<string, object> obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).IndexData("PosMachinesFeeChangeRecord", Fields, "Id desc", "0", 1, 20000, condition, "PosSn,ChangeFee", false);
- List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
- foreach (Dictionary<string, object> dic in diclist)
- {
- // //创客
- // 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 PosUserId = int.Parse(function.CheckInt(dic["PosUserId"].ToString()));
- // Users posuserid_Users = db.Users.FirstOrDefault(m => m.Id == PosUserId) ?? new Users();
- // dic["PosUserIdMakerCode"] = posuserid_Users.MakerCode;
- // dic["PosUserIdRealName"] = posuserid_Users.RealName;
- // dic.Remove("PosUserId");
- var PosSn = dic["PosSn"].ToString();
- var ChangeFee = function.CheckNum(dic["ChangeFee"].ToString());
- dic.Add("Kind", "2");
- }
- 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("ChangeFee", "调整费率");
- ReturnFields.Add("PosSn", "机具SN");
- ReturnFields.Add("ChangeFee", "调整费率");
- ReturnFields.Add("Kind", "调整类型(2-调降)");
- result.Add("Fields", ReturnFields);
- AddSysLog("0", "PosMachinesFeeChangeRecord", "ExportExcel");
- return Json(result);
- }
- #endregion
- }
- }
|