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.
288 lines
10 KiB
288 lines
10 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Web.Mvc;
|
|
using QMAPP.Common.Web.Controllers;
|
|
using QMAPP.Entity;
|
|
using QMAPP.FJC.Entity.FeedInManage;
|
|
using QMAPP.FJC.Entity.Injection;
|
|
using QMAPP.FJC.Web.Models.FeedInManage;
|
|
using QMAPP.ServicesAgent;
|
|
using QMFrameWork.Common.ExcelOperation;
|
|
using QMFrameWork.Common.Serialization;
|
|
using QMFrameWork.Data;
|
|
using QMFrameWork.Log;
|
|
using QMFrameWork.WebUI.Attribute;
|
|
using QMFrameWork.WebUI.DataSource;
|
|
|
|
namespace QMAPP.FJC.Web.Controllers
|
|
{
|
|
///</summary>
|
|
/// 模块编号:M3-4骨架信息查询
|
|
/// 作 用:骨架信息查询
|
|
/// 作 者:张敬贺
|
|
/// 编写日期:2015年06月01日
|
|
/// </summary>
|
|
public class FrameWorkController : QController
|
|
{
|
|
#region 获取列表
|
|
/// <summary>
|
|
/// 加载列表
|
|
/// </summary>
|
|
/// <returns>结果</returns>
|
|
[HandleException]
|
|
public ActionResult List(bool? callBack)
|
|
{
|
|
FrameWorkModel seachModel = new FrameWorkModel();
|
|
seachModel.STARTCREATEDATE = DateTime.Now.Date.AddDays(-10).ToString("yyyy-MM-dd HH:mm:ss");
|
|
seachModel.ENDCREATEDATE = DateTime.Now.Date.AddDays(1).ToString("yyyy-MM-dd HH:mm:ss");
|
|
seachModel.ImmediateSearch = false;
|
|
if (callBack == true)
|
|
TryGetSelectBuffer<FrameWorkModel>(out seachModel);
|
|
|
|
seachModel.rownumbers = false;
|
|
seachModel.url = "/FrameWork/GetList";
|
|
return View("List", seachModel);
|
|
}
|
|
/// <summary>
|
|
/// 获取列表
|
|
/// </summary>
|
|
/// <param name="callBack">是否回调</param>
|
|
/// <returns>列表</returns>
|
|
[HandleException]
|
|
public ActionResult GetList(bool? callBack)
|
|
{
|
|
FrameWorkModel seachModel = null;
|
|
DataPage page = null;
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
Epidermis condition = null;
|
|
try
|
|
{
|
|
//获取查询对象
|
|
seachModel = GetModel<FrameWorkModel>();
|
|
|
|
#region 获取缓存值
|
|
if (callBack != null)
|
|
{
|
|
TryGetSelectBuffer<FrameWorkModel>(out seachModel);
|
|
}
|
|
else
|
|
{
|
|
//保存搜索条件
|
|
SetSelectBuffer<FrameWorkModel>(seachModel);
|
|
}
|
|
#endregion
|
|
|
|
//获取前台分页设置信息
|
|
page = this.GetDataPage(seachModel);
|
|
condition = CopyToModel<Epidermis, FrameWorkModel>(seachModel);
|
|
condition.PRODUCTTYPE = ((int)QMAPP.FJC.Entity.EnumGeter.ProductType.gujia).ToString();//默认查询表皮
|
|
|
|
#region wcf服务统一接口
|
|
var dataResult = wcfAgent.InvokeServiceFunction<DataResult<DataPage>>(QMAPP.ServicesAgent.FeedInManage.EpidermisBLL_GetList.ToString(), condition, page);
|
|
|
|
//通过返回dataResult判断
|
|
if (dataResult.Ex != null)
|
|
{
|
|
throw dataResult.Ex;
|
|
}
|
|
else if (dataResult.IsSuccess)
|
|
{
|
|
page = dataResult.Result;
|
|
}
|
|
|
|
DateGridResult<Epidermis> result = new DateGridResult<Epidermis>();
|
|
result.Total = page.RecordCount;
|
|
result.Rows = JsonConvertHelper.GetDeserialize<List<Epidermis>>(page.Result.ToString());
|
|
#endregion
|
|
|
|
return Content(result.GetJsonSource());
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 保存
|
|
/// <summary>
|
|
/// 保存
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns>处理结果</returns>
|
|
[HandleException]
|
|
public ActionResult Save(FrameWorkModel saveModel)
|
|
{
|
|
InjectionRecorder condition = new InjectionRecorder();
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
List<object> objlist = new List<object>();
|
|
|
|
try
|
|
{
|
|
condition = CopyToModel<InjectionRecorder, FrameWorkModel>(saveModel);
|
|
|
|
#region 修改
|
|
var dataResult = wcfAgent.InvokeServiceFunction<DataResult>(QMAPP.ServicesAgent.FeedInManage.EpidermisBLL_UpdateMaterial.ToString(), condition);
|
|
|
|
//通过返回dataResult判断
|
|
if (dataResult.Ex != null)
|
|
{
|
|
throw dataResult.Ex;
|
|
}
|
|
else if (dataResult.IsSuccess)
|
|
{
|
|
objlist.Add(new { isSuccess = true });
|
|
SetMessage(AppResource.SaveMessge);
|
|
}
|
|
else
|
|
{
|
|
SetMessage(dataResult.Msg);
|
|
}
|
|
#endregion
|
|
|
|
return Content(JsonConvertHelper.GetSerializes(objlist));
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 导出excel
|
|
/// <summary>
|
|
/// 导出excel
|
|
/// </summary>
|
|
/// <returns>结果</returns>
|
|
[HandleException]
|
|
public ActionResult ExportExcel()
|
|
{
|
|
FrameWorkModel seachModel = null;
|
|
Epidermis condition = null;
|
|
DataTable exportDt = new DataTable();
|
|
string selectKey = Request["selectKey"];
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
try
|
|
{
|
|
//获取查询对象
|
|
seachModel = GetModel<FrameWorkModel>();
|
|
condition = CopyToModel<Epidermis, FrameWorkModel>(seachModel);
|
|
|
|
condition.TableName = "FrameWorkExp";
|
|
condition.PRODUCTTYPE = ((int)QMAPP.FJC.Entity.EnumGeter.ProductType.gujia).ToString();//默认查询骨架
|
|
|
|
//获取数据
|
|
//var dataResult = wcfAgent.InvokeServiceFunction<DataResult<DataTable>>(QMAPP.ServicesAgent.FeedInManage.EpidermisBLL_GetExportData.ToString(), condition);
|
|
QMAPP.FJC.BLL.FeedInManage.EpidermisBLL bll = new QMAPP.FJC.BLL.FeedInManage.EpidermisBLL();
|
|
var dataResult = bll.GetExportData(condition);
|
|
//通过返回dataResult判断
|
|
if (dataResult.Ex != null)
|
|
{
|
|
throw dataResult.Ex;
|
|
}
|
|
else if (dataResult.IsSuccess)
|
|
{
|
|
exportDt = dataResult.Result;
|
|
}
|
|
else
|
|
{
|
|
SetMessage(dataResult.Msg);
|
|
return List(true);
|
|
}
|
|
|
|
//根据所选信息进行导出
|
|
if (!String.IsNullOrEmpty(selectKey))
|
|
{
|
|
DataView dv = new DataView(exportDt);
|
|
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;
|
|
exportDt = dv.ToTable();
|
|
}
|
|
|
|
//导出
|
|
IEExcelHelper ieExcelHelper = new IEExcelHelper();
|
|
var sheetInfo = ieExcelHelper.GetMainInfo("FrameWorkExp");
|
|
var fileName = System.Guid.NewGuid().ToString() + ".xlsx";
|
|
ieExcelHelper.ExportExcel(sheetInfo, exportDt, QMAPP.Web.Common.ExcelOperationHelper.GetTempPath() + fileName, true);
|
|
return Content(fileName);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
LogManager.LogHelper.Error(new LogInfo { ErrorInfo = ex, Info = "导出excel", Tag = "骨架查询控制器" });
|
|
SetMessage("导出excel失败");
|
|
return List(true);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 导出文件
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public ActionResult ExportFile()
|
|
{
|
|
String filePath = QMAPP.Web.Common.ExcelOperationHelper.GetTempPath();
|
|
String fileName = Request["FileName"];
|
|
QMAPP.Web.Common.ExcelOperationHelper.FileDownload(Response, filePath + fileName, "骨架查询控制器.xlsx");
|
|
return Content("");
|
|
}
|
|
#endregion
|
|
|
|
#region 加载投料列表
|
|
/// <summary>
|
|
/// 加载投料列表
|
|
/// </summary>
|
|
/// <returns>结果</returns>
|
|
[HandleException]
|
|
public ActionResult GetProductInfectionList()
|
|
{
|
|
string pid = Request.Params["PID"];
|
|
string materialBatch = Request.Params["MATERIALBATCH"];
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
List<InjectionRecorder> list = new List<InjectionRecorder>();
|
|
InjectionRecorder condition = new InjectionRecorder();
|
|
#region wcf服务统一接口
|
|
var dataResult = wcfAgent.InvokeServiceFunction<DataResult<List<InjectionRecorder>>>(QMAPP.ServicesAgent.FeedInManage.EpidermisBLL_GetProductInfectionList.ToString(), pid);
|
|
|
|
//通过返回dataResult判断
|
|
if (dataResult.Ex != null)
|
|
{
|
|
throw dataResult.Ex;
|
|
}
|
|
else if (dataResult.IsSuccess)
|
|
{
|
|
list = dataResult.Result;
|
|
}
|
|
|
|
List<object> objlist = new List<object>();
|
|
foreach (var o in list)
|
|
{
|
|
objlist.Add(new
|
|
{
|
|
PID = o.PID,
|
|
PPID = o.MPPID,
|
|
MATERIALNAME = o.MATERIALNAME,
|
|
MATERIALCODE = o.MATERIALCODE,
|
|
MATERIALTYPE = o.MATERIALTYPE,
|
|
MATERIALBATCH = o.MATERIALBATCH,
|
|
INJECTIONINDEX = o.INJECTIONINDEX,
|
|
INJECTIONTERMINAL = o.INJECTIONTERMINAL,
|
|
USEDWEIGHT = o.USEDWEIGHT
|
|
});
|
|
}
|
|
|
|
return Content(JsonConvertHelper.GetSerializes(objlist));
|
|
#endregion
|
|
}
|
|
#endregion
|
|
}
|
|
}
|