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.
147 lines
5.6 KiB
147 lines
5.6 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Web.Mvc;
|
|
using QMAPP.Common.Web.Controllers;
|
|
using QMAPP.FJC.Entity.WarnManage;
|
|
using QMAPP.FJC.Web.Models.WarnManage;
|
|
using QMAPP.KB.Entity;
|
|
using QMAPP.ServicesAgent;
|
|
using QMFrameWork.Common.Serialization;
|
|
using QMFrameWork.Data;
|
|
using QMFrameWork.WebUI.Attribute;
|
|
using QMFrameWork.WebUI.DataSource;
|
|
|
|
namespace QMAPP.FJC.Web.Controllers
|
|
{
|
|
///</summary>
|
|
/// 模块编号:M6-2
|
|
/// 作 用:设备停机记录查询
|
|
/// 作 者:王丹丹
|
|
/// 编写日期:2015年06月18日
|
|
///</summary>
|
|
public class EquipMentMaintainController : QController
|
|
{
|
|
#region 获取列表
|
|
/// <summary>
|
|
/// 加载列表
|
|
/// </summary>
|
|
/// <returns>结果</returns>
|
|
[HandleException]
|
|
public ActionResult List(bool? callBack)
|
|
{
|
|
EquipMentMaintainModel seachModel = new EquipMentMaintainModel();
|
|
seachModel.DOWNTIMESTARTTXT = DateTime.Now.AddDays(-10).ToString("yyyy-MM-dd");
|
|
seachModel.DOWNTIMEENDTXT = DateTime.Now.ToString("yyyy-MM-dd");
|
|
seachModel.ImmediateSearch = false;
|
|
if (callBack == true)
|
|
TryGetSelectBuffer<EquipMentMaintainModel>(out seachModel);
|
|
seachModel.rownumbers = false;
|
|
seachModel.url = "/EquipMentMaintain/GetList";
|
|
return View("EquipMentMaintainList", seachModel);
|
|
}
|
|
/// <summary>
|
|
/// 获取列表
|
|
/// </summary>
|
|
/// <param name="callBack">是否回调</param>
|
|
/// <returns>列表</returns>
|
|
[HandleException]
|
|
public ActionResult GetList(bool? callBack)
|
|
{
|
|
EquipMentMaintainModel seachModel = null;
|
|
DataResult<DataPage> pageResult = new DataResult<DataPage>();
|
|
DataPage page = new DataPage();
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
EquipMentMaintain condition = null;
|
|
try
|
|
{
|
|
//获取查询对象
|
|
seachModel = GetModel<EquipMentMaintainModel>();
|
|
#region 获取缓存值
|
|
if (callBack != null)
|
|
{
|
|
TryGetSelectBuffer<EquipMentMaintainModel>(out seachModel);
|
|
}
|
|
else
|
|
{
|
|
//保存搜索条件
|
|
SetSelectBuffer<EquipMentMaintainModel>(seachModel);
|
|
}
|
|
#endregion
|
|
//获取前台分页设置信息
|
|
page = this.GetDataPage(seachModel);
|
|
condition = CopyToModel<EquipMentMaintain, EquipMentMaintainModel>(seachModel);
|
|
#region wcf服务统一接口
|
|
pageResult = wcfAgent.InvokeServiceFunction<DataResult<DataPage>>(QMAPP.ServicesAgent.WarnManage.EquipMentMaintainSearchBLL_GetList.ToString(), condition, page);
|
|
if (pageResult.IsSuccess == false)
|
|
{
|
|
SetMessage(pageResult.Msg);
|
|
return List(true);
|
|
}
|
|
DateGridResult<EquipMentMaintain> result = new DateGridResult<EquipMentMaintain>();
|
|
result.Total = pageResult.Result.RecordCount;
|
|
result.Rows = JsonConvertHelper.GetDeserialize<List<EquipMentMaintain>>(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()
|
|
{
|
|
EquipMentMaintainModel seachModel = null;
|
|
EquipMentMaintain condition = null;
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
DataResult<DataTable> result = new DataResult<DataTable>();
|
|
string selectKey = Request.Form["selectKey"];
|
|
try
|
|
{
|
|
//获取查询对象
|
|
seachModel = GetModel<EquipMentMaintainModel>();
|
|
condition = CopyToModel<EquipMentMaintain, EquipMentMaintainModel>(seachModel);
|
|
//获取数据
|
|
result = wcfAgent.InvokeServiceFunction<DataResult<DataTable>>(QMAPP.ServicesAgent.WarnManage.EquipMentMaintainSearchBLL_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("EquipMentMaintainExp", "设备停机记录.xlsx", result.Result);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
}
|
|
|