天津投入产出系统后端
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.

234 lines
8.5 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.FIS;
using QMFrameWork.Data;
using QMAPP.ServicesAgent;
using QMAPP.FJC.Entity.FIS;
using QMAPP.Entity;
using QMFrameWork.WebUI.DataSource;
using QMFrameWork.Common.Serialization;
using System.Data;
using QMAPP.FJC.Entity.FileCopy.FIS;
using QMFrameWork.Common.ExcelOperation;
using QMFrameWork.Log;
namespace QMAPP.FJC.Web.Controllers
{
public class FISOrderSendController : QController
{
#region 获取信息
/// <summary>
/// 加载列表
/// </summary>
/// <returns>结果</returns>
[HandleException]
public ActionResult List(bool? callback)
{
FISOrderSendModel seachModel = new FISOrderSendModel();
seachModel.ONLINETIMESTART = DateTime.Now.Date.AddDays(-10).ToString("yyyy-MM-dd HH:mm:ss");
seachModel.ONLINETIMEEND = DateTime.Now.Date.AddDays(1).ToString("yyyy-MM-dd HH:mm:ss");
seachModel.ImmediateSearch = false;
if (callback == true)
TryGetSelectBuffer<FISOrderSendModel>(out seachModel);
seachModel.rownumbers = false;
seachModel.url = "/FISOrderSend/GetList";
return View("List", seachModel);
}
#endregion
#region 获取列表
/// <summary>
/// 获取列表
/// </summary>
/// <param name="callBack">是否回调</param>
/// <returns>列表</returns>
[HandleException]
public ActionResult GetList(bool? callBack)
{
FISOrderSendModel seachModel = null;
DataPage page = null;
ServiceAgent wcfAgent = this.GetServiceAgent();
FISOrder condition = null;
DataResult<DataPage> pageResult = new DataResult<DataPage>();
try
{
//获取查询对象
seachModel = GetModel<FISOrderSendModel>();
#region 获取缓存值
if (callBack != null)
{
TryGetSelectBuffer<FISOrderSendModel>(out seachModel);
}
else
{
//保存搜索条件
SetSelectBuffer<FISOrderSendModel>(seachModel);
}
#endregion
//获取前台分页设置信息
page = this.GetDataPage(seachModel);
condition = CopyToModel<FISOrder, FISOrderSendModel>(seachModel);
#region wcf服务统一接口
pageResult = wcfAgent.InvokeServiceFunction<DataResult<DataPage>>("FISOrderSendBLL_GetList", condition, page);
if (pageResult.IsSuccess == false)
{
SetMessage(pageResult.Msg);
return List(true);
}
DateGridResult<FISOrder> result = new DateGridResult<FISOrder>();
result.Total = pageResult.Result.RecordCount;
result.Rows = JsonConvertHelper.GetDeserialize<List<FISOrder>>(pageResult.Result.Result.ToString());
#endregion
return Content(result.GetJsonSource());
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 导出excel
/// <summary>
/// 导出excel
/// </summary>
/// <returns>结果</returns>
[HandleException]
public ActionResult ExportExcel()
{
FISOrderSendModel seachModel = null;
FISOrder condition = null;
DataTable exportDt = new DataTable();
string selectKey = Request["selectKey"];
ServiceAgent wcfAgent = this.GetServiceAgent();
try
{
//获取查询对象
seachModel = GetModel<FISOrderSendModel>();
condition = CopyToModel<FISOrder, FISOrderSendModel>(seachModel);
//获取数据
var dataResult = wcfAgent.InvokeServiceFunction<DataResult<DataTable>>("FISOrderSendBLL_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("FISOrderSendExp");
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 = "FIS计划查询控制器" });
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, "FIS计划管理查询.xlsx");
return Content("");
}
#endregion
#region 加载FIS订单发货信息列表
/// <summary>
/// 加载FIS订单发货信息列表
/// </summary>
/// <returns>结果</returns>
[HandleException]
public ActionResult GetFISOrederSendDetialList()
{
string pid = Request.Params["PID"];
ServiceAgent wcfAgent = this.GetServiceAgent();
List<FISOrederSendDetial> list = new List<FISOrederSendDetial>();
FISOrederSendDetial condition = new FISOrederSendDetial();
#region wcf服务统一接口
var dataResult = wcfAgent.InvokeServiceFunction<DataResult<List<FISOrederSendDetial>>>("FISOrderSendBLL_GetFISOrederSendDetialList", 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,
FIS_PID = o.FIS_PID,
SHIPMENT_NO = o.SENDCODE,
STATE = o.STATE,
MATERIAL_CODE = o.MATERIAL_CODE,
MATERIAL_NAME = o.MATERIAL_NAME,
FACTORY_CODE = o.FACTORY_CODE,
FACTORY_NAME = o.FACTORY_NAME,
WORKCENTER_CODE = o.WORKCENTER_CODE,
WORKCENTER_NAME = o.WORKCENTER_NAME,
SENDCODE=o.SENDCODE,
PRODUCT_SN = o.PRODUCT_SN,
QTY = o.QTY,
SCANDATE=o.SCANDATE,
OPERATOR=o.OPERATOR
});
}
return Content(JsonConvertHelper.GetSerializes(objlist));
#endregion
}
#endregion
}
}