|
|
|
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.Operation;
|
|
|
|
using QMAPP.FJC.Entity.Operation;
|
|
|
|
using QMAPP.ServicesAgent;
|
|
|
|
using QMAPP.FJC.Entity.Injection;
|
|
|
|
using QMFrameWork.WebUI.DataSource;
|
|
|
|
using System.Data;
|
|
|
|
using QMAPP.Entity;
|
|
|
|
using QMFrameWork.Common.ExcelOperation;
|
|
|
|
using QMFrameWork.Data;
|
|
|
|
using QMFrameWork.Common.Serialization;
|
|
|
|
using QMAPP.FJC.Entity;
|
|
|
|
using QMFrameWork.Log;
|
|
|
|
using QMAPP.FJC.BLL.Operation;
|
|
|
|
|
|
|
|
namespace QMAPP.FJC.Web.Controllers
|
|
|
|
{
|
|
|
|
public class ProductEndController : QController
|
|
|
|
{
|
|
|
|
|
|
|
|
#region 获取列表
|
|
|
|
/// <summary>
|
|
|
|
/// 加载列表
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>结果</returns>
|
|
|
|
[HandleException]
|
|
|
|
public ActionResult List(bool? callBack)
|
|
|
|
{
|
|
|
|
ProductEndModel seachModel = new ProductEndModel();
|
|
|
|
string attribute = Request["MATERIAL_ATTRIBUTE"];
|
|
|
|
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;
|
|
|
|
seachModel.MATERIAL_ATTRIBUTE = attribute;
|
|
|
|
if (callBack == true)
|
|
|
|
TryGetSelectBuffer<ProductEndModel>(out seachModel);
|
|
|
|
seachModel.rownumbers = false;
|
|
|
|
seachModel.url = "/ProductEnd/GetList";
|
|
|
|
return View("ProductEndList", seachModel);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 获取列表
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="callBack">是否回调</param>
|
|
|
|
/// <returns>列表</returns>
|
|
|
|
[HandleException]
|
|
|
|
public ActionResult GetList(bool? callBack)
|
|
|
|
{
|
|
|
|
ProductEndModel seachModel = null;
|
|
|
|
DataPage page = null;
|
|
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
|
|
ProductEnd condition = null;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
//获取查询对象
|
|
|
|
seachModel = GetModel<ProductEndModel>();
|
|
|
|
#region 获取缓存值
|
|
|
|
if (callBack != null)
|
|
|
|
{
|
|
|
|
TryGetSelectBuffer<ProductEndModel>(out seachModel);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//保存搜索条件
|
|
|
|
SetSelectBuffer<ProductEndModel>(seachModel);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
//获取前台分页设置信息
|
|
|
|
page = this.GetDataPage(seachModel);
|
|
|
|
condition = CopyToModel<ProductEnd, ProductEndModel>(seachModel);
|
|
|
|
condition.ENDOFLINE = EnumGeter.Finish.ENDOFLINE.GetHashCode().ToString();
|
|
|
|
|
|
|
|
//ProductEndBLL pd = new ProductEndBLL();
|
|
|
|
|
|
|
|
//var dataResult = pd.GetExportData(condition);
|
|
|
|
|
|
|
|
#region wcf服务统一接口
|
|
|
|
var dataResult = wcfAgent.InvokeServiceFunction<DataResult<DataPage>>("ProductEndBLL_GetList", condition, page);
|
|
|
|
|
|
|
|
//通过返回dataResult判断
|
|
|
|
if (dataResult.Ex != null)
|
|
|
|
{
|
|
|
|
throw dataResult.Ex;
|
|
|
|
}
|
|
|
|
else if (dataResult.IsSuccess)
|
|
|
|
{
|
|
|
|
page = dataResult.Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
DateGridResult<ProductEnd> result = new DateGridResult<ProductEnd>();
|
|
|
|
result.Total = page.RecordCount;
|
|
|
|
|
|
|
|
if (page.Result == null)
|
|
|
|
page.Result = "[{}]";
|
|
|
|
result.Rows = JsonConvertHelper.GetDeserialize<List<ProductEnd>>(page.Result.ToString());
|
|
|
|
#endregion
|
|
|
|
return Content(result.GetJsonSource());
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
throw ex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region 加载投料列表
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 加载零件列表11111111111
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>结果</returns>
|
|
|
|
[HandleException]
|
|
|
|
public ActionResult GetProductList()
|
|
|
|
{
|
|
|
|
string pid = Request.Params["PID"];
|
|
|
|
|
|
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
|
|
List<ProductEnd> list = new List<ProductEnd>();
|
|
|
|
ProductEnd condition = new ProductEnd();
|
|
|
|
condition.MAINCODE = pid;
|
|
|
|
#region wcf服务统一接口
|
|
|
|
var dataResult = wcfAgent.InvokeServiceFunction<DataResult<List<ProductEnd>>>("ProductEndBLL_GetListWithProduct", condition);
|
|
|
|
|
|
|
|
//通过返回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,
|
|
|
|
MATERIALCODE = o.MATERIAL_CODE,
|
|
|
|
PROCODE = o.PRODUCTCODE,
|
|
|
|
MATERIALNAME = o.MATERIAL_NAME,
|
|
|
|
MACHINENAME = o.MACHINENAME,
|
|
|
|
CREATEUSERNAME = o.CREATEUSERNAME,
|
|
|
|
CREATEDATE = o.CREATEDATE.ToString()
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return Content(JsonConvertHelper.GetSerializes(objlist));
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region 导出excel
|
|
|
|
/// <summary>
|
|
|
|
/// 导出excel
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>结果</returns>
|
|
|
|
[HandleException]
|
|
|
|
public ActionResult ExportExcel()
|
|
|
|
{
|
|
|
|
ProductEndModel seachModel = null;
|
|
|
|
ProductEnd condition = null;
|
|
|
|
DataTable exportDt = new DataTable();
|
|
|
|
string selectKey = Request["selectKey"];
|
|
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
|
|
try
|
|
|
|
{
|
|
|
|
//获取查询对象
|
|
|
|
seachModel = GetModel<ProductEndModel>();
|
|
|
|
condition = CopyToModel<ProductEnd, ProductEndModel>(seachModel);
|
|
|
|
|
|
|
|
condition.TableName = "MainExp";
|
|
|
|
|
|
|
|
ProductEndBLL pe = new ProductEndBLL();
|
|
|
|
|
|
|
|
//获取数据
|
|
|
|
//var dataResult = wcfAgent.InvokeServiceFunction<DataResult<DataTable>>("ProductEndBLL_GetExportData", condition);
|
|
|
|
var dataResult = pe.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("MainExp");
|
|
|
|
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>
|
|
|
|
[HttpPost]
|
|
|
|
public ActionResult GetTemplate()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
string path = AppDomain.CurrentDomain.BaseDirectory + "Temp/";
|
|
|
|
string fileName = "ProductEnd.xls";
|
|
|
|
return File(path + fileName, "application/vnd.ms-excel", Url.Encode("信息导入模板.xls"));
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
throw ex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region 保存
|
|
|
|
/// <summary>
|
|
|
|
/// 保存
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="model"></param>
|
|
|
|
/// <returns>处理结果</returns>
|
|
|
|
[HandleException]
|
|
|
|
public ActionResult SaveInjection(ProductEndModel saveModel)
|
|
|
|
{
|
|
|
|
InjectionRecorder condition = new InjectionRecorder();
|
|
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
|
|
List<object> objlist = new List<object>();
|
|
|
|
try
|
|
|
|
{
|
|
|
|
condition = CopyToModel<InjectionRecorder, ProductEndModel>(saveModel);
|
|
|
|
|
|
|
|
#region 修改
|
|
|
|
var dataResult = wcfAgent.InvokeServiceFunction<DataResult>("ProductEndBLL_UpdateMaterial", 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
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|