/* * 消费者分红记录 */ 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 ConsumerProfitController : BaseController { public ConsumerProfitController(IHttpContextAccessor accessor, ILogger logger, IOptions setting) : base(accessor, logger, setting) { } #region 消费者分红记录列表 /// /// 根据条件查询消费者分红记录列表 /// /// public IActionResult Index(ConsumerProfit data, string right) { ViewBag.RightInfo = RightInfo; ViewBag.right = right; return View(); } #endregion #region 根据条件查询消费者分红记录列表 /// /// 消费者分红记录列表 /// /// public JsonResult IndexData(ConsumerProfit data, string ConsumerIdNickName, string ConsumerIdMobile, string MerchantIdSelect, int page = 1, int limit = 30) { Dictionary Fields = new Dictionary(); Fields.Add("CreateDate", "3"); //时间 string condition = " and Status>-1"; //消费者昵称 if (!string.IsNullOrEmpty(ConsumerIdNickName)) { condition += " and ConsumerId in (select ConsumerId from ConsumersForNickName where NickName='" + ConsumerIdNickName + "')"; } //消费者手机号 if (!string.IsNullOrEmpty(ConsumerIdMobile)) { condition += " and ConsumerId in (select ConsumerId from ConsumersForMobile where Mobile='" + ConsumerIdMobile + "')"; } //商户 if (!string.IsNullOrEmpty(MerchantIdSelect)) { condition += " and MerchantId=" + MerchantIdSelect; } Dictionary obj = new AdminContent(_accessor.HttpContext, PublicFunction.MainTables).IndexData("ConsumerProfit", Fields, "Id desc", "0", page, limit, condition); List> diclist = obj["data"] as List>; foreach (Dictionary dic in diclist) { //消费者 int ConsumerId = int.Parse(function.CheckInt(dic["ConsumerId"].ToString())); Consumers consumerid_Consumers = db.Consumers.FirstOrDefault(m => m.Id == ConsumerId) ?? new Consumers(); dic["ConsumerIdNickName"] = consumerid_Consumers.NickName; dic["ConsumerIdMobile"] = consumerid_Consumers.Mobile; dic.Remove("ConsumerId"); //商户 dic["MerchantId"] = RelationClass.GetMerchantInfoInfo(int.Parse(dic["MerchantId"].ToString())); } return Json(obj); } #endregion #region 增加消费者分红记录 /// /// 增加或修改消费者分红记录信息 /// /// public IActionResult Add(string right) { ViewBag.RightInfo = RightInfo; ViewBag.right = right; return View(); } #endregion #region 增加消费者分红记录 /// /// 增加或修改消费者分红记录信息 /// /// [HttpPost] public string Add(ConsumerProfit data) { Dictionary Fields = new Dictionary(); Fields.Add("SeoTitle", data.SeoTitle); Fields.Add("SeoKeyword", data.SeoKeyword); Fields.Add("SeoDescription", data.SeoDescription); int Id = new AdminContent(_accessor.HttpContext, PublicFunction.MainTables).Add("ConsumerProfit", Fields, 0); AddSysLog(data.Id.ToString(), "ConsumerProfit", "add"); db.SaveChanges(); return "success"; } #endregion #region 修改消费者分红记录 /// /// 增加或修改消费者分红记录信息 /// /// public IActionResult Edit(string right, int Id = 0) { ViewBag.RightInfo = RightInfo; ViewBag.right = right; ConsumerProfit editData = db.ConsumerProfit.FirstOrDefault(m => m.Id == Id) ?? new ConsumerProfit(); ViewBag.data = editData; return View(); } #endregion #region 修改消费者分红记录 /// /// 增加或修改消费者分红记录信息 /// /// [HttpPost] public string Edit(ConsumerProfit data) { Dictionary Fields = new Dictionary(); Fields.Add("SeoTitle", data.SeoTitle); Fields.Add("SeoKeyword", data.SeoKeyword); Fields.Add("SeoDescription", data.SeoDescription); new AdminContent(_accessor.HttpContext, PublicFunction.MainTables).Edit("ConsumerProfit", Fields, data.Id); AddSysLog(data.Id.ToString(),"ConsumerProfit","update"); db.SaveChanges(); return "success"; } #endregion #region 删除消费者分红记录信息 /// /// 删除消费者分红记录信息 /// /// public string Delete(string Id) { string[] idlist = Id.Split(new char[] { ',' }); AddSysLog(Id,"ConsumerProfit","del"); foreach (string subid in idlist) { int id = int.Parse(subid); Dictionary Fields = new Dictionary(); Fields.Add("Status", -1); new AdminContent(_accessor.HttpContext, PublicFunction.MainTables).Edit("ConsumerProfit", Fields, id); } db.SaveChanges(); return "success"; } #endregion #region 开启 /// /// 开启 /// /// public string Open(string Id) { string[] idlist = Id.Split(new char[] { ',' }); AddSysLog(Id,"ConsumerProfit","open"); foreach (string subid in idlist) { int id = int.Parse(subid); Dictionary Fields = new Dictionary(); Fields.Add("Status", 1); new AdminContent(_accessor.HttpContext, PublicFunction.MainTables).Edit("ConsumerProfit", Fields, id); } db.SaveChanges(); return "success"; } #endregion #region 关闭 /// /// 关闭 /// /// public string Close(string Id) { string[] idlist = Id.Split(new char[] { ',' }); AddSysLog(Id,"ConsumerProfit","close"); foreach (string subid in idlist) { int id = int.Parse(subid); Dictionary Fields = new Dictionary(); Fields.Add("Status", 0); new AdminContent(_accessor.HttpContext, PublicFunction.MainTables).Edit("ConsumerProfit", Fields, id); } db.SaveChanges(); return "success"; } #endregion #region 排序 /// /// 排序 /// /// public string Sort(int Id, int Sort) { new AdminContent(_accessor.HttpContext, PublicFunction.MainTables).Sort("ConsumerProfit", Sort, Id); AddSysLog(Id.ToString(), "ConsumerProfit", "sort"); return "success"; } #endregion #region 导入数据 /// /// 导入数据 /// /// 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.ConsumerProfit.Add(new ConsumerProfit() { CreateDate = DateTime.Now, UpdateDate = DateTime.Now, }); db.SaveChanges(); } AddSysLog("0", "ConsumerProfit", "Import"); return "success"; } #endregion #region 导出Excel /// /// 导出Excel /// /// public JsonResult ExportExcel(ConsumerProfit data, string ConsumerIdNickName, string ConsumerIdMobile, string MerchantIdSelect) { Dictionary Fields = new Dictionary(); Fields.Add("CreateDate", "3"); //时间 string condition = " and Status>-1"; //消费者昵称 if (!string.IsNullOrEmpty(ConsumerIdNickName)) { condition += " and ConsumerId in (select ConsumerId from ConsumersForNickName where NickName='" + ConsumerIdNickName + "')"; } //消费者手机号 if (!string.IsNullOrEmpty(ConsumerIdMobile)) { condition += " and ConsumerId in (select ConsumerId from ConsumersForMobile where Mobile='" + ConsumerIdMobile + "')"; } //商户 if (!string.IsNullOrEmpty(MerchantIdSelect)) { condition += " and MerchantId=" + MerchantIdSelect; } Dictionary obj = new AdminContent(_accessor.HttpContext, PublicFunction.MainTables).IndexData("ConsumerProfit", Fields, "Id desc", "0", 1, 20000, condition, "", false); List> diclist = obj["data"] as List>; foreach (Dictionary dic in diclist) { //消费者 int ConsumerId = int.Parse(function.CheckInt(dic["ConsumerId"].ToString())); Consumers consumerid_Consumers = db.Consumers.FirstOrDefault(m => m.Id == ConsumerId) ?? new Consumers(); dic["ConsumerIdNickName"] = consumerid_Consumers.NickName; dic["ConsumerIdMobile"] = consumerid_Consumers.Mobile; dic.Remove("ConsumerId"); //商户 dic["MerchantId"] = RelationClass.GetMerchantInfoInfo(int.Parse(dic["MerchantId"].ToString())); } Dictionary result = new Dictionary(); result.Add("Status", "1"); result.Add("Info", "Excel报表-" + DateTime.Now.ToString("yyyy-MM-ddTHH:mm:ss") + ".xlsx"); result.Add("Obj", diclist); Dictionary ReturnFields = new Dictionary(); result.Add("Fields", ReturnFields); AddSysLog("0", "ConsumerProfit", "ExportExcel"); return Json(result); } #endregion } }