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.
163 lines
5.7 KiB
163 lines
5.7 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.Basic;
|
|
using QMFrameWork.Data;
|
|
using QMAPP.FJC.Entity.Basic;
|
|
using QMAPP.ServicesAgent;
|
|
using QMAPP.Entity;
|
|
using QMAPP.MD.Entity;
|
|
using QMAPP.MD.Web.Models;
|
|
using QMFrameWork.WebUI.DataSource;
|
|
using QMFrameWork.Common.Serialization;
|
|
using QMAPP.MD.Entity.TianJin;
|
|
using QMAPP.FJC.Web.Models.TianJin;
|
|
using System.Data;
|
|
using QMAPP.FJC.BLL.TianJin;
|
|
|
|
namespace QMAPP.FJC.Web.Controllers
|
|
{
|
|
public class StorageController : QController
|
|
{
|
|
#region 获取信息
|
|
/// <summary>
|
|
/// 加载列表
|
|
/// </summary>
|
|
/// <returns>结果</returns>
|
|
[HandleException]
|
|
public ActionResult List(bool? callback)
|
|
{
|
|
StorageModel seachModel = new StorageModel();
|
|
if (callback == true)
|
|
TryGetSelectBuffer<StorageModel>(out seachModel);
|
|
seachModel.rownumbers = true;
|
|
seachModel.url = "/Storage/GetList";
|
|
return View("StorageList", seachModel);
|
|
}
|
|
#endregion
|
|
|
|
#region 获取列表
|
|
/// <summary>
|
|
/// 获取列表
|
|
/// </summary>
|
|
/// <param name="callBack">是否回调</param>
|
|
/// <returns>列表</returns>
|
|
[HandleException]
|
|
public ActionResult GetList(bool? callBack)
|
|
{
|
|
StorageModel seachModel = null;
|
|
DataPage page = null;
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
Storage condition = null;
|
|
DataResult<DataPage> pageResult = new DataResult<DataPage>();
|
|
try
|
|
{
|
|
//获取查询对象
|
|
seachModel = GetModel<StorageModel>();
|
|
#region 获取缓存值
|
|
if (callBack != null)
|
|
{
|
|
TryGetSelectBuffer<StorageModel>(out seachModel);
|
|
}
|
|
else
|
|
{
|
|
//保存搜索条件
|
|
SetSelectBuffer<StorageModel>(seachModel);
|
|
}
|
|
#endregion
|
|
//获取前台分页设置信息
|
|
page = this.GetDataPage(seachModel);
|
|
condition = CopyToModel<Storage, StorageModel>(seachModel);
|
|
condition.State = "1";
|
|
#region wcf服务统一接口
|
|
|
|
pageResult = wcfAgent.InvokeServiceFunction<DataResult<DataPage>>("StorageBLL_GetList", condition, page);
|
|
if (pageResult.IsSuccess == false)
|
|
{
|
|
SetMessage(pageResult.Msg);
|
|
return List(true);
|
|
}
|
|
DateGridResult<Storage> result = new DateGridResult<Storage>();
|
|
result.Total = pageResult.Result.RecordCount;
|
|
result.Rows = JsonConvertHelper.GetDeserialize<List<Storage>>(pageResult.Result.Result.ToString());
|
|
#endregion
|
|
return Content(result.GetJsonSource());
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 删除
|
|
/// <summary>
|
|
/// 删除
|
|
/// </summary>
|
|
/// <returns>结果</returns>
|
|
[HttpPost]
|
|
[HandleException]
|
|
public ActionResult Delete(StorageModel model)
|
|
{
|
|
string selectKey = Request.Form["selectKey"];
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
DataResult<int> result = new DataResult<int>();
|
|
try
|
|
{
|
|
result = wcfAgent.InvokeServiceFunction<DataResult<int>>("StorageBLL_Delete", selectKey);
|
|
if (result.IsSuccess == false)
|
|
{
|
|
SetMessage(result.Msg);
|
|
return List(true);
|
|
}
|
|
SetMessage(AppResource.DeleteMessage);
|
|
return List(true);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 导出excel
|
|
/// <summary>
|
|
/// 导出excel
|
|
/// </summary>
|
|
/// <returns>结果</returns>
|
|
[HttpPost]
|
|
public ActionResult ExportExcel()
|
|
{
|
|
StorageModel seachModel = null;
|
|
Storage condition = null;
|
|
DataTable exportDt = new DataTable();
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
try
|
|
{
|
|
//获取查询对象
|
|
seachModel = GetModel<StorageModel>();
|
|
condition = CopyToModel<Storage, StorageModel>(seachModel);
|
|
//condition.PIDList = Request.Form["selectKey"];
|
|
//获取数据
|
|
StorageBLL op = new StorageBLL();
|
|
|
|
// exportDt = op.GetExportData(condition);
|
|
|
|
exportDt = wcfAgent.InvokeServiceFunction<DataTable>("StorageBLL_GetExportData", condition);
|
|
|
|
//导出
|
|
QMFrameWork.WebUI.Util.IEFileTool efTool = new QMFrameWork.WebUI.Util.IEFileTool();
|
|
return efTool.GetExcelFileResult("StorageExp", "库存信息.xlsx", exportDt);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
}
|
|
}
|
|
|