using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using QMAPP.Common.Web.Controllers; using QMFrameWork.WebUI.Attribute; using QMAPP.FJC.Web.Models.Basic; using QMFrameWork.Data; using QMAPP.FJC.Entity.Basic; using QMAPP.ServicesAgent; using QMAPP.Entity; using QMAPP.MD.Entity; using QMAPP.MD.Web.Models; using QMFrameWork.WebUI.DataSource; using QMFrameWork.Common.Serialization; using QMAPP.MD.Entity.TianJin; using QMAPP.FJC.Web.Models.TianJin; using System.Data; using QMAPP.FJC.BLL.TianJin; namespace QMAPP.FJC.Web.Controllers { public class StorageController : QController { #region 获取信息 /// /// 加载列表 /// /// 结果 [HandleException] public ActionResult List(bool? callback) { StorageModel seachModel = new StorageModel(); if (callback == true) TryGetSelectBuffer(out seachModel); seachModel.rownumbers = true; seachModel.url = "/Storage/GetList"; return View("StorageList", seachModel); } #endregion #region 获取列表 /// /// 获取列表 /// /// 是否回调 /// 列表 [HandleException] public ActionResult GetList(bool? callBack) { StorageModel seachModel = null; DataPage page = null; ServiceAgent wcfAgent = this.GetServiceAgent(); Storage condition = null; DataResult pageResult = new DataResult(); try { //获取查询对象 seachModel = GetModel(); #region 获取缓存值 if (callBack != null) { TryGetSelectBuffer(out seachModel); } else { //保存搜索条件 SetSelectBuffer(seachModel); } #endregion //获取前台分页设置信息 page = this.GetDataPage(seachModel); condition = CopyToModel(seachModel); condition.State = "1"; #region wcf服务统一接口 pageResult = wcfAgent.InvokeServiceFunction>("StorageBLL_GetList", condition, page); if (pageResult.IsSuccess == false) { SetMessage(pageResult.Msg); return List(true); } 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 删除 /// /// 删除 /// /// 结果 [HttpPost] [HandleException] public ActionResult Delete(StorageModel model) { string selectKey = Request.Form["selectKey"]; ServiceAgent wcfAgent = this.GetServiceAgent(); DataResult result = new DataResult(); try { result = wcfAgent.InvokeServiceFunction>("StorageBLL_Delete", selectKey); if (result.IsSuccess == false) { SetMessage(result.Msg); return List(true); } SetMessage(AppResource.DeleteMessage); return List(true); } catch (Exception ex) { throw ex; } } #endregion #region 导出excel /// /// 导出excel /// /// 结果 [HttpPost] public ActionResult ExportExcel() { StorageModel seachModel = null; Storage condition = null; DataTable exportDt = new DataTable(); ServiceAgent wcfAgent = this.GetServiceAgent(); try { //获取查询对象 seachModel = GetModel(); condition = CopyToModel(seachModel); //condition.PIDList = Request.Form["selectKey"]; //获取数据 StorageBLL op = new StorageBLL(); exportDt = op.GetExportData(condition); //exportDt = wcfAgent.InvokeServiceFunction("StorageBLL_GetExportData", condition); //导出 QMFrameWork.WebUI.Util.IEFileTool efTool = new QMFrameWork.WebUI.Util.IEFileTool(); return efTool.GetExcelFileResult("StorageExp", "库存信息.xlsx", exportDt); } catch (Exception ex) { throw ex; } } #endregion } }