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.
97 lines
3.4 KiB
97 lines
3.4 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.FJC.Web.Models.Bucket;
|
|
using QMAPP.MD.Entity.Bucket;
|
|
|
|
namespace QMAPP.FJC.Web.Controllers
|
|
{
|
|
public class TSWeighRecoreController : QController
|
|
{
|
|
#region 获取信息
|
|
/// <summary>
|
|
/// 加载列表
|
|
/// </summary>
|
|
/// <returns>结果</returns>
|
|
[HandleException]
|
|
public ActionResult List(bool? callback)
|
|
{
|
|
TSWeighRecoreModel seachModel = new TSWeighRecoreModel();
|
|
if (callback == true)
|
|
TryGetSelectBuffer<TSWeighRecoreModel>(out seachModel);
|
|
seachModel.rownumbers = false;
|
|
//seachModel.BeginTime = DateTime.Now.AddDays(-5);
|
|
//seachModel.EndTime = DateTime.Now.AddDays(+1);
|
|
seachModel.url = "/TSWeighRecore/GetList";
|
|
return View("TSWeighRecoreList", seachModel);
|
|
}
|
|
#endregion
|
|
|
|
#region 获取列表
|
|
/// <summary>
|
|
/// 获取列表
|
|
/// </summary>
|
|
/// <param name="callBack">是否回调</param>
|
|
/// <returns>列表</returns>
|
|
[HandleException]
|
|
public ActionResult GetList(bool? callBack)
|
|
{
|
|
TSWeighRecoreModel seachModel = null;
|
|
DataPage page = null;
|
|
ServiceAgent wcfAgent = this.GetServiceAgent();
|
|
TSWeighRecore condition = null;
|
|
DataResult<DataPage> pageResult = new DataResult<DataPage>();
|
|
try
|
|
{
|
|
//获取查询对象
|
|
seachModel = GetModel<TSWeighRecoreModel>();
|
|
#region 获取缓存值
|
|
if (callBack != null)
|
|
{
|
|
TryGetSelectBuffer<TSWeighRecoreModel>(out seachModel);
|
|
}
|
|
else
|
|
{
|
|
//保存搜索条件
|
|
SetSelectBuffer<TSWeighRecoreModel>(seachModel);
|
|
}
|
|
#endregion
|
|
//获取前台分页设置信息
|
|
page = this.GetDataPage(seachModel);
|
|
condition = CopyToModel<TSWeighRecore, TSWeighRecoreModel>(seachModel);
|
|
#region wcf服务统一接口
|
|
|
|
pageResult = wcfAgent.InvokeServiceFunction<DataResult<DataPage>>("TSWeighRecoreBLL_GetList", condition, page);
|
|
if (pageResult.IsSuccess == false)
|
|
{
|
|
SetMessage(pageResult.Msg);
|
|
return List(true);
|
|
}
|
|
DateGridResult<TSWeighRecore> result = new DateGridResult<TSWeighRecore>();
|
|
result.Total = pageResult.Result.RecordCount;
|
|
result.Rows = JsonConvertHelper.GetDeserialize<List<TSWeighRecore>>(pageResult.Result.Result.ToString());
|
|
#endregion
|
|
return Content(result.GetJsonSource());
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
}
|
|
|