/* * 机具转换订单 */ 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 MachineChangeController : BaseController { public MachineChangeController(IHttpContextAccessor accessor, ILogger logger, IOptions setting) : base(accessor, logger, setting) { } #region 机具转换订单列表 /// /// 根据条件查询机具转换订单列表 /// /// public IActionResult Index(MachineChange data, string right) { ViewBag.RightInfo = RightInfo; ViewBag.right = right; return View(); } #endregion #region 根据条件查询机具转换订单列表 /// /// 机具转换订单列表 /// /// public JsonResult IndexData(MachineChange data, string UserIdRealName, string UserIdMakerCode, string BackProductTypeSelect, string AuditResultSelect, string BackStoreIdStoreName, string BackStoreIdStoreNo, string BackStoreUserIdMakerCode, string BackStoreUserIdRealName, string OutProductTypeSelect, string OutStoreIdStoreName, string OutStoreIdStoreNo, int page = 1, int limit = 30) { Dictionary Fields = new Dictionary(); Fields.Add("ChangeNo", "1"); //转换单号 Fields.Add("CreateDate", "3"); //时间 Fields.Add("OutStoreManagerMobile", "1"); //出库仓库联系人手机号 string condition = " and Status>-1"; //创客真实姓名 if (!string.IsNullOrEmpty(UserIdRealName)) { condition += " and UserId in (select UserId from UsersForRealName where RealName='" + UserIdRealName + "')"; } //创客创客编号 if (!string.IsNullOrEmpty(UserIdMakerCode)) { condition += " and UserId in (select UserId from UsersForMakerCode where MakerCode='" + UserIdMakerCode + "')"; } //退回产品类型 if (!string.IsNullOrEmpty(BackProductTypeSelect)) { condition += " and BackProductType=" + BackProductTypeSelect; } //审核结果 if (!string.IsNullOrEmpty(AuditResultSelect)) { condition += " and AuditResult=" + AuditResultSelect; } //退回仓库仓库名称 if (!string.IsNullOrEmpty(BackStoreIdStoreName)) { condition += " and BackStoreId in (select BackStoreId from StoreHouseForStoreName where StoreName='" + BackStoreIdStoreName + "')"; } //退回仓库仓库编号 if (!string.IsNullOrEmpty(BackStoreIdStoreNo)) { condition += " and BackStoreId in (select BackStoreId from StoreHouseForStoreNo where StoreNo='" + BackStoreIdStoreNo + "')"; } //退回仓库归属人创客编号 if (!string.IsNullOrEmpty(BackStoreUserIdMakerCode)) { condition += " and BackStoreUserId in (select BackStoreUserId from UsersForMakerCode where MakerCode='" + BackStoreUserIdMakerCode + "')"; } //退回仓库归属人真实姓名 if (!string.IsNullOrEmpty(BackStoreUserIdRealName)) { condition += " and BackStoreUserId in (select BackStoreUserId from UsersForRealName where RealName='" + BackStoreUserIdRealName + "')"; } //出库产品类型 if (!string.IsNullOrEmpty(OutProductTypeSelect)) { condition += " and OutProductType=" + OutProductTypeSelect; } //出库仓库仓库名称 if (!string.IsNullOrEmpty(OutStoreIdStoreName)) { condition += " and OutStoreId in (select OutStoreId from StoreHouseForStoreName where StoreName='" + OutStoreIdStoreName + "')"; } //出库仓库仓库编号 if (!string.IsNullOrEmpty(OutStoreIdStoreNo)) { condition += " and OutStoreId in (select OutStoreId from StoreHouseForStoreNo where StoreNo='" + OutStoreIdStoreNo + "')"; } Dictionary obj = new AdminContent(_accessor.HttpContext, SystemPublicFuction.dbtables).IndexData("MachineChange", Fields, "Id desc", "0", page, limit, condition); List> diclist = obj["data"] as List>; foreach (Dictionary 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["UserIdRealName"] = userid_Users.RealName; dic["UserIdMakerCode"] = userid_Users.MakerCode; dic.Remove("UserId"); //退回产品类型 dic["BackProductType"] = RelationClass.GetKqProductBrandInfo(int.Parse(dic["BackProductType"].ToString())); //审核结果 int AuditResult = int.Parse(dic["AuditResult"].ToString()); if (AuditResult == 0) dic["AuditResult"] = "待审"; if (AuditResult == 1) dic["AuditResult"] = "通过"; if (AuditResult == 2) dic["AuditResult"] = "驳回"; //退回仓库 int BackStoreId = int.Parse(function.CheckInt(dic["BackStoreId"].ToString())); StoreHouse backstoreid_StoreHouse = db.StoreHouse.FirstOrDefault(m => m.Id == BackStoreId) ?? new StoreHouse(); dic["BackStoreIdStoreName"] = backstoreid_StoreHouse.StoreName; dic["BackStoreIdStoreNo"] = backstoreid_StoreHouse.StoreNo; dic.Remove("BackStoreId"); //退回仓库归属人 int BackStoreUserId = int.Parse(function.CheckInt(dic["BackStoreUserId"].ToString())); Users backstoreuserid_Users = db.Users.FirstOrDefault(m => m.Id == BackStoreUserId) ?? new Users(); dic["BackStoreUserIdMakerCode"] = backstoreuserid_Users.MakerCode; dic["BackStoreUserIdRealName"] = backstoreuserid_Users.RealName; dic.Remove("BackStoreUserId"); //出库产品类型 dic["OutProductType"] = RelationClass.GetKqProductBrandInfo(int.Parse(dic["OutProductType"].ToString())); //出库仓库 int OutStoreId = int.Parse(function.CheckInt(dic["OutStoreId"].ToString())); StoreHouse outstoreid_StoreHouse = db.StoreHouse.FirstOrDefault(m => m.Id == OutStoreId) ?? new StoreHouse(); dic["OutStoreIdStoreName"] = outstoreid_StoreHouse.StoreName; dic["OutStoreIdStoreNo"] = outstoreid_StoreHouse.StoreNo; dic.Remove("OutStoreId"); } return Json(obj); } #endregion #region 增加机具转换订单 /// /// 增加或修改机具转换订单信息 /// /// public IActionResult Add(string right) { ViewBag.RightInfo = RightInfo; ViewBag.right = right; return View(); } #endregion #region 增加机具转换订单 /// /// 增加或修改机具转换订单信息 /// /// [HttpPost] public string Add(MachineChange data) { Dictionary Fields = new Dictionary(); Fields.Add("AuditResult", data.AuditResult); //审核结果 Fields.Add("AuditRemark", data.AuditRemark); //审核备注 Fields.Add("SeoTitle", data.SeoTitle); Fields.Add("SeoKeyword", data.SeoKeyword); Fields.Add("SeoDescription", data.SeoDescription); int Id = new AdminContent(_accessor.HttpContext, SystemPublicFuction.dbtables).Add("MachineChange", Fields, 0); AddSysLog(data.Id.ToString(), "MachineChange", "add"); db.SaveChanges(); return "success"; } #endregion #region 修改机具转换订单 /// /// 增加或修改机具转换订单信息 /// /// public IActionResult Edit(string right, int Id = 0) { ViewBag.RightInfo = RightInfo; ViewBag.right = right; MachineChange editData = db.MachineChange.FirstOrDefault(m => m.Id == Id) ?? new MachineChange(); ViewBag.data = editData; return View(); } #endregion #region 修改机具转换订单 /// /// 增加或修改机具转换订单信息 /// /// [HttpPost] public string Edit(MachineChange data) { Dictionary Fields = new Dictionary(); Fields.Add("AuditResult", data.AuditResult); //审核结果 Fields.Add("AuditRemark", data.AuditRemark); //审核备注 Fields.Add("SeoTitle", data.SeoTitle); Fields.Add("SeoKeyword", data.SeoKeyword); Fields.Add("SeoDescription", data.SeoDescription); new AdminContent(_accessor.HttpContext, SystemPublicFuction.dbtables).Edit("MachineChange", Fields, data.Id); AddSysLog(data.Id.ToString(), "MachineChange", "update"); db.SaveChanges(); return "success"; } #endregion #region 删除机具转换订单信息 /// /// 删除机具转换订单信息 /// /// public string Delete(string Id) { string[] idlist = Id.Split(new char[] { ',' }); AddSysLog(Id, "MachineChange", "del"); foreach (string subid in idlist) { int id = int.Parse(subid); Dictionary Fields = new Dictionary(); Fields.Add("Status", -1); new AdminContent(_accessor.HttpContext, SystemPublicFuction.dbtables).Edit("MachineChange", Fields, id); } db.SaveChanges(); return "success"; } #endregion #region 开启 /// /// 开启 /// /// public string Open(string Id) { string[] idlist = Id.Split(new char[] { ',' }); AddSysLog(Id, "MachineChange", "open"); foreach (string subid in idlist) { int id = int.Parse(subid); Dictionary Fields = new Dictionary(); Fields.Add("Status", 1); new AdminContent(_accessor.HttpContext, SystemPublicFuction.dbtables).Edit("MachineChange", Fields, id); } db.SaveChanges(); return "success"; } #endregion #region 关闭 /// /// 关闭 /// /// public string Close(string Id) { string[] idlist = Id.Split(new char[] { ',' }); AddSysLog(Id, "MachineChange", "close"); foreach (string subid in idlist) { int id = int.Parse(subid); Dictionary Fields = new Dictionary(); Fields.Add("Status", 0); new AdminContent(_accessor.HttpContext, SystemPublicFuction.dbtables).Edit("MachineChange", Fields, id); } db.SaveChanges(); return "success"; } #endregion #region 排序 /// /// 排序 /// /// public string Sort(int Id, int Sort) { new AdminContent(_accessor.HttpContext, SystemPublicFuction.dbtables).Sort("MachineChange", Sort, Id); AddSysLog(Id.ToString(), "MachineChange", "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.MachineChange.Add(new MachineChange() { CreateDate = DateTime.Now, UpdateDate = DateTime.Now, }); db.SaveChanges(); } AddSysLog("0", "MachineChange", "Import"); return "success"; } #endregion #region 导出Excel /// /// 导出Excel /// /// public JsonResult ExportExcel(MachineChange data, string UserIdRealName, string UserIdMakerCode, string BackProductTypeSelect, string AuditResultSelect, string BackStoreIdStoreName, string BackStoreIdStoreNo, string BackStoreUserIdMakerCode, string BackStoreUserIdRealName, string OutProductTypeSelect, string OutStoreIdStoreName, string OutStoreIdStoreNo) { Dictionary Fields = new Dictionary(); Fields.Add("ChangeNo", "1"); //转换单号 Fields.Add("CreateDate", "3"); //时间 Fields.Add("OutStoreManagerMobile", "1"); //出库仓库联系人手机号 string condition = " and Status>-1"; //创客真实姓名 if (!string.IsNullOrEmpty(UserIdRealName)) { condition += " and UserId in (select UserId from UsersForRealName where RealName='" + UserIdRealName + "')"; } //创客创客编号 if (!string.IsNullOrEmpty(UserIdMakerCode)) { condition += " and UserId in (select UserId from UsersForMakerCode where MakerCode='" + UserIdMakerCode + "')"; } //退回产品类型 if (!string.IsNullOrEmpty(BackProductTypeSelect)) { condition += " and BackProductType=" + BackProductTypeSelect; } //审核结果 if (!string.IsNullOrEmpty(AuditResultSelect)) { condition += " and AuditResult=" + AuditResultSelect; } //退回仓库仓库名称 if (!string.IsNullOrEmpty(BackStoreIdStoreName)) { condition += " and BackStoreId in (select BackStoreId from StoreHouseForStoreName where StoreName='" + BackStoreIdStoreName + "')"; } //退回仓库仓库编号 if (!string.IsNullOrEmpty(BackStoreIdStoreNo)) { condition += " and BackStoreId in (select BackStoreId from StoreHouseForStoreNo where StoreNo='" + BackStoreIdStoreNo + "')"; } //退回仓库归属人创客编号 if (!string.IsNullOrEmpty(BackStoreUserIdMakerCode)) { condition += " and BackStoreUserId in (select BackStoreUserId from UsersForMakerCode where MakerCode='" + BackStoreUserIdMakerCode + "')"; } //退回仓库归属人真实姓名 if (!string.IsNullOrEmpty(BackStoreUserIdRealName)) { condition += " and BackStoreUserId in (select BackStoreUserId from UsersForRealName where RealName='" + BackStoreUserIdRealName + "')"; } //出库产品类型 if (!string.IsNullOrEmpty(OutProductTypeSelect)) { condition += " and OutProductType=" + OutProductTypeSelect; } //出库仓库仓库名称 if (!string.IsNullOrEmpty(OutStoreIdStoreName)) { condition += " and OutStoreId in (select OutStoreId from StoreHouseForStoreName where StoreName='" + OutStoreIdStoreName + "')"; } //出库仓库仓库编号 if (!string.IsNullOrEmpty(OutStoreIdStoreNo)) { condition += " and OutStoreId in (select OutStoreId from StoreHouseForStoreNo where StoreNo='" + OutStoreIdStoreNo + "')"; } Dictionary obj = new AdminContent(_accessor.HttpContext, SystemPublicFuction.dbtables).IndexData("MachineChange", Fields, "Id desc", "0", 1, 20000, condition, "ChangeNo,UserId,BackProductType,ChangeDeviceNum,ChangeTime,AuditBy,AuditResult,AuditRemark,ChangeSnExpand,BackStoreId,Remark,BackStoreUserId,OutProductType,OutStoreId,OutStoreManagerMobile", false); List> diclist = obj["data"] as List>; foreach (Dictionary 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["UserIdRealName"] = userid_Users.RealName; dic["UserIdMakerCode"] = userid_Users.MakerCode; dic.Remove("UserId"); //退回产品类型 dic["BackProductType"] = RelationClass.GetKqProductBrandInfo(int.Parse(dic["BackProductType"].ToString())); //审核结果 int AuditResult = int.Parse(dic["AuditResult"].ToString()); if (AuditResult == 0) dic["AuditResult"] = "待审"; if (AuditResult == 1) dic["AuditResult"] = "通过"; if (AuditResult == 2) dic["AuditResult"] = "驳回"; //退回仓库 int BackStoreId = int.Parse(function.CheckInt(dic["BackStoreId"].ToString())); StoreHouse backstoreid_StoreHouse = db.StoreHouse.FirstOrDefault(m => m.Id == BackStoreId) ?? new StoreHouse(); dic["BackStoreIdStoreName"] = backstoreid_StoreHouse.StoreName; dic["BackStoreIdStoreNo"] = backstoreid_StoreHouse.StoreNo; dic.Remove("BackStoreId"); //退回仓库归属人 int BackStoreUserId = int.Parse(function.CheckInt(dic["BackStoreUserId"].ToString())); Users backstoreuserid_Users = db.Users.FirstOrDefault(m => m.Id == BackStoreUserId) ?? new Users(); dic["BackStoreUserIdMakerCode"] = backstoreuserid_Users.MakerCode; dic["BackStoreUserIdRealName"] = backstoreuserid_Users.RealName; dic.Remove("BackStoreUserId"); //出库产品类型 dic["OutProductType"] = RelationClass.GetKqProductBrandInfo(int.Parse(dic["OutProductType"].ToString())); //出库仓库 int OutStoreId = int.Parse(function.CheckInt(dic["OutStoreId"].ToString())); StoreHouse outstoreid_StoreHouse = db.StoreHouse.FirstOrDefault(m => m.Id == OutStoreId) ?? new StoreHouse(); dic["OutStoreIdStoreName"] = outstoreid_StoreHouse.StoreName; dic["OutStoreIdStoreNo"] = outstoreid_StoreHouse.StoreNo; dic.Remove("OutStoreId"); } 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(); ReturnFields.Add("ChangeNo", "转换单号"); ReturnFields.Add("UserIdRealName", "创客真实姓名"); ReturnFields.Add("UserIdMakerCode", "创客创客编号"); ReturnFields.Add("BackProductType", "退回产品类型"); ReturnFields.Add("ChangeDeviceNum", "转换机具数量"); ReturnFields.Add("ChangeTime", "转换时间"); ReturnFields.Add("AuditBy", "审核人"); ReturnFields.Add("AuditResult", "审核结果"); ReturnFields.Add("AuditRemark", "审核备注"); ReturnFields.Add("ChangeSnExpand", "转换机器SN来源"); ReturnFields.Add("BackStoreIdStoreName", "退回仓库仓库名称"); ReturnFields.Add("BackStoreIdStoreNo", "退回仓库仓库编号"); ReturnFields.Add("Remark", "订单备注"); ReturnFields.Add("BackStoreUserIdMakerCode", "退回仓库归属人创客编号"); ReturnFields.Add("BackStoreUserIdRealName", "退回仓库归属人真实姓名"); ReturnFields.Add("OutProductType", "出库产品类型"); ReturnFields.Add("OutStoreIdStoreName", "出库仓库仓库名称"); ReturnFields.Add("OutStoreIdStoreNo", "出库仓库仓库编号"); ReturnFields.Add("OutStoreManagerMobile", "出库仓库联系人手机号"); result.Add("Fields", ReturnFields); AddSysLog("0", "MachineChange", "ExportExcel"); return Json(result); } #endregion } }