using System; using System.Collections.Generic; using System.Web.Mvc; using QMAPP.Common.Web.Controllers; using QMFrameWork.WebUI.Attribute; using QMFrameWork.Data; using QMAPP.ServicesAgent; using QMAPP.Entity; using QMFrameWork.Log; using QMFrameWork.Common.ExcelOperation; using QMFrameWork.WebUI.DataSource; using QMFrameWork.Common.Serialization; using System.Data; using QMAPP.FJC.Entity.Operation; using QMAPP.FJC.Web.Models.Operation; namespace QMAPP.FJC.Web.Controllers { /// /// /// public class ProductReplaceController : QController { #region 获取信息 /// /// 加载列表 /// /// 结果 [HandleException] public ActionResult List(bool? callback) { ProductReplaceModel seachModel = new ProductReplaceModel(); seachModel.CREATEDATESTART = DateTime.Now.AddDays(-30).ToString("yyyy-MM-dd"); seachModel.CREATEDATEEND = DateTime.Now.AddDays(1).ToString("yyyy-MM-dd"); seachModel.ImmediateSearch = false; seachModel.checkbox = false; if (callback == true) TryGetSelectBuffer(out seachModel); seachModel.url = "/ProductReplace/GetList"; return View("List", seachModel); } #endregion #region 获取列表 /// /// 获取列表 /// /// 是否回调 /// 列表 [HandleException] public ActionResult GetList(bool? callBack) { ServiceAgent wcfAgent = GetServiceAgent(); try { //获取查询对象 var seachModel = GetModel(); #region 获取缓存值 if (callBack != null) { TryGetSelectBuffer(out seachModel); } else { //保存搜索条件 SetSelectBuffer(seachModel); } #endregion //获取前台分页设置信息 //seachModel.pageSize = "200"; var page = GetDataPage(seachModel); var condition = CopyToModel(seachModel); #region wcf服务统一接口 var pageResult = wcfAgent.InvokeServiceFunction>("ProductBLL_GetProductReplaceList", condition, page); if (pageResult.IsSuccess == false) { SetMessage(pageResult.Msg); return List(true); } var result = new DateGridResult(); result.Total = pageResult.Result.RecordCount; result.Rows = JsonConvertHelper.GetDeserialize>(pageResult.Result.Result.ToString()); #endregion return Content(result.GetJsonSource()); } catch (Exception ex) { throw ex; } } #endregion #region 导出excel /// /// 导出excel /// /// 结果 [HandleException] public ActionResult ExportExcel() { ProductReplaceModel seachModel = null; ProductReplace condition = null; DataTable exportDt = new DataTable(); string selectKey = Request["selectKey"]; ServiceAgent wcfAgent = this.GetServiceAgent(); try { //获取查询对象 seachModel = GetModel(); condition = CopyToModel(seachModel); //获取数据 var dataResult = wcfAgent.InvokeServiceFunction>("ProductBLL_GetExpProductReplaceList", condition); //通过返回dataResult判断 if (dataResult.Ex != null) { throw dataResult.Ex; } else if (dataResult.IsSuccess) { exportDt = dataResult.Result; } else { SetMessage(dataResult.Msg); return List(true); } //根据所选信息进行导出 if (!String.IsNullOrEmpty(selectKey)) { DataView dv = new DataView(exportDt); string strWhere = ""; string[] list = selectKey.Split(":".ToCharArray()); foreach (string ID in list) { strWhere += " PID='" + ID + "' or"; } if (strWhere != "") { strWhere = strWhere.Remove((strWhere.Length - 2), 2); } dv.RowFilter = strWhere; exportDt = dv.ToTable(); } //导出 IEExcelHelper ieExcelHelper = new IEExcelHelper(); var sheetInfo = ieExcelHelper.GetMainInfo("ProductReplaceExp"); var fileName = System.Guid.NewGuid().ToString() + ".xlsx"; ieExcelHelper.ExportExcel(sheetInfo, exportDt, QMAPP.Web.Common.ExcelOperationHelper.GetTempPath() + fileName, true); return Content(fileName); } catch (Exception ex) { LogManager.LogHelper.Error(new LogInfo { ErrorInfo = ex, Info = "导出excel", Tag = "替换件查询" }); SetMessage("导出excel失败"); return List(true); } } /// /// 导出文件 /// /// public ActionResult ExportFile() { String filePath = QMAPP.Web.Common.ExcelOperationHelper.GetTempPath(); String fileName = Request["FileName"]; QMAPP.Web.Common.ExcelOperationHelper.FileDownload(Response, filePath + fileName, "替换件查询.xlsx"); return Content(""); } #endregion } }