天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

139 lines
5.1 KiB

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.WIPManage;
using QMFrameWork.Data;
using QMAPP.ServicesAgent;
using QMAPP.FJC.Entity.WIPManage;
using QMAPP.KB.Entity;
using QMFrameWork.WebUI.DataSource;
using QMFrameWork.Common.Serialization;
using System.Data;
namespace QMAPP.FJC.Web.Controllers
{
/// <summary>
/// 模块编号:M7-3
/// 作 用:在制品出库信息
/// 作 者:王济
/// 编写日期:2015年07月07日
///</summary>
public class WIPOutRecorderController : QController
{
#region 获取列表
[HandleException]
public ActionResult List(bool? callBack)
{
WIPOutRecorderModel searchmodel = new WIPOutRecorderModel();
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<WIPOutRecorderModel>(out searchmodel);
searchmodel.rownumbers = true;
searchmodel.url = "/WIPOutRecorder/GetList";
return View("WIPOutRecorderList", searchmodel);
}
/// <summary>
/// 获取列表
/// </summary>
/// <param name="callBack">是否回调</param>
/// <returns>列表</returns>
[HandleException]
public ActionResult GetList(bool? callBack)
{
WIPOutRecorderModel searchmodel = null;
DataPage page = null;
ServiceAgent wcfAgent = this.GetServiceAgent();
WIPOutRecorder condition = null;
DataResult<DataPage> pageResult = new DataResult<DataPage>();
try
{
searchmodel = GetModel<WIPOutRecorderModel>();
if (callBack != null)
{
TryGetSelectBuffer<WIPOutRecorderModel>(out searchmodel);
}
else
{
//保存搜索条件
SetSelectBuffer<WIPOutRecorderModel>(searchmodel);
}
page = this.GetDataPage(searchmodel);
condition = CopyToModel<WIPOutRecorder, WIPOutRecorderModel>(searchmodel);
#region wcf服务统一接口
pageResult = wcfAgent.InvokeServiceFunction<DataResult<DataPage>>(QMAPP.ServicesAgent.WIPManage.WIPOutRecorderBLL_GetList.ToString(), condition, page);
DateGridResult<WIPOutRecorder> result = new DateGridResult<WIPOutRecorder>();
result.Total = pageResult.Result.RecordCount;
result.Rows = JsonConvertHelper.GetDeserialize<List<WIPOutRecorder>>(pageResult.Result.Result.ToString());
#endregion
return Content(result.GetJsonSource());
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 导出excel
/// <summary>
/// 导出excel
/// </summary>
/// <returns>结果</returns>
[HttpPost]
public ActionResult ExportExcel()
{
WIPOutRecorderModel seachModel = null;
WIPOutRecorder condition = null;
ServiceAgent wcfAgent = this.GetServiceAgent();
DataResult<DataTable> result = new DataResult<DataTable>();
string selectKey = Request.Form["selectKey"];
try
{
//获取查询对象
seachModel = GetModel<WIPOutRecorderModel>();
condition = CopyToModel<WIPOutRecorder, WIPOutRecorderModel>(seachModel);
//获取数据
result = wcfAgent.InvokeServiceFunction<DataResult<DataTable>>(QMAPP.ServicesAgent.WIPManage.WIPOutRecorderBLL_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("WIPOutRecorderExp", "在制品出库信息.xlsx", result.Result);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
}
}