using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using QMFrameWork.WebUI.Attribute; using QMAPP.Common.Web.Controllers; using QMFrameWork.Data; using QMAPP.ServicesAgent; using QMAPP.FJC.Entity.WIPManage; using QMAPP.KB.Entity; using QMFrameWork.WebUI.DataSource; using QMFrameWork.Common.Serialization; using QMAPP.FJC.Web.Models.WIPManage; using System.Data; namespace QMAPP.FJC.Web.Controllers { /// /// 模块编号:M7-2 /// 作 用:在制品入库信息 /// 作 者:王济 /// 编写日期:2015年07月06日 /// public class WIPInRecorderController : QController { #region 获取列表 [HandleException] public ActionResult List(bool? callBack) { WIPInRecorderModel searchmodel = new WIPInRecorderModel(); searchmodel.STARTCREATEDATE = DateTime.Now.AddDays(-10).ToString("yyyy-MM-dd"); searchmodel.ENDCREATEDATE = DateTime.Now.ToString("yyyy-MM-dd"); searchmodel.ImmediateSearch = false; if (callBack == true) TryGetSelectBuffer(out searchmodel); searchmodel.rownumbers = true; searchmodel.url = "/WIPInRecorder/GetList"; return View("WIPInRecorderList", searchmodel); } /// /// 获取列表 /// /// 是否回调 /// 列表 [HandleException] public ActionResult GetList(bool? callBack) { WIPInRecorderModel searchmodel = null; DataPage page = null; ServiceAgent wcfAgent = this.GetServiceAgent(); WIPInRecorder condition = null; DataResult pageResult = new DataResult(); try { searchmodel = GetModel(); if (callBack != null) { TryGetSelectBuffer(out searchmodel); } else { //保存搜索条件 SetSelectBuffer(searchmodel); } page = this.GetDataPage(searchmodel); condition = CopyToModel(searchmodel); #region wcf服务统一接口 pageResult = wcfAgent.InvokeServiceFunction>(QMAPP.ServicesAgent.WIPManage.WIPInRecorderBLL_GetList.ToString(), condition, page); DateGridResult 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 /// /// 结果 [HttpPost] public ActionResult ExportExcel() { WIPInRecorderModel seachModel = null; WIPInRecorder condition = null; ServiceAgent wcfAgent = this.GetServiceAgent(); DataResult result = new DataResult(); string selectKey = Request.Form["selectKey"]; try { //获取查询对象 seachModel = GetModel(); condition = CopyToModel(seachModel); //获取数据 result = wcfAgent.InvokeServiceFunction>(QMAPP.ServicesAgent.WIPManage.WIPInRecorderBLL_GetExportData.ToString(), condition); //根据所选信息进行导出 if (!String.IsNullOrEmpty(selectKey)) { DataView dv = new DataView(result.Result); 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; result.Result = dv.ToTable(); } //导出 QMFrameWork.WebUI.Util.IEFileTool efTool = new QMFrameWork.WebUI.Util.IEFileTool(); return efTool.GetExcelFileResult("WIPInRecorderExp", "在制品入库信息.xlsx", result.Result); } catch (Exception ex) { throw ex; } } #endregion } }