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
139 lines
5.1 KiB
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
|
|
{
|
|
/// <summary>
|
|
/// 模块编号:M7-2
|
|
/// 作 用:在制品入库信息
|
|
/// 作 者:王济
|
|
/// 编写日期:2015年07月06日
|
|
///</summary>
|
|
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<WIPInRecorderModel>(out searchmodel);
|
|
searchmodel.rownumbers = true;
|
|
searchmodel.url = "/WIPInRecorder/GetList";
|
|
return View("WIPInRecorderList", searchmodel);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取列表
|
|
/// </summary>
|
|
/// <param name="callBack">是否回调</param>
|
|
/// <returns>列表</returns>
|
|
[HandleException]
|
|
public ActionResult GetList(bool? callBack)
|
|
{
|
|
WIPInRecorderModel searchmodel = null;
|
|
DataPage page = null;
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
WIPInRecorder condition = null;
|
|
DataResult<DataPage> pageResult = new DataResult<DataPage>();
|
|
try
|
|
{
|
|
searchmodel = GetModel<WIPInRecorderModel>();
|
|
if (callBack != null)
|
|
{
|
|
TryGetSelectBuffer<WIPInRecorderModel>(out searchmodel);
|
|
}
|
|
else
|
|
{
|
|
//保存搜索条件
|
|
SetSelectBuffer<WIPInRecorderModel>(searchmodel);
|
|
}
|
|
page = this.GetDataPage(searchmodel);
|
|
condition = CopyToModel<WIPInRecorder, WIPInRecorderModel>(searchmodel);
|
|
#region wcf服务统一接口
|
|
pageResult = wcfAgent.InvokeServiceFunction<DataResult<DataPage>>(QMAPP.ServicesAgent.WIPManage.WIPInRecorderBLL_GetList.ToString(), condition, page);
|
|
DateGridResult<WIPInRecorder> result = new DateGridResult<WIPInRecorder>();
|
|
result.Total = pageResult.Result.RecordCount;
|
|
result.Rows = JsonConvertHelper.GetDeserialize<List<WIPInRecorder>>(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()
|
|
{
|
|
WIPInRecorderModel seachModel = null;
|
|
WIPInRecorder condition = null;
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
DataResult<DataTable> result = new DataResult<DataTable>();
|
|
string selectKey = Request.Form["selectKey"];
|
|
try
|
|
{
|
|
//获取查询对象
|
|
seachModel = GetModel<WIPInRecorderModel>();
|
|
condition = CopyToModel<WIPInRecorder, WIPInRecorderModel>(seachModel);
|
|
//获取数据
|
|
result = wcfAgent.InvokeServiceFunction<DataResult<DataTable>>(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
|
|
}
|
|
}
|
|
|