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

219 lines
7.7 KiB

2 years ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Mvc;
using QMAPP.Common.Web.Controllers;
using QMFrameWork.WebUI.Attribute;
using QMAPP.FJC.Web.Models;
using QMFrameWork.Data;
using QMAPP.ServicesAgent;
using QMFrameWork.WebUI.DataSource;
using QMFrameWork.Common.Serialization;
using QMAPP.Entity;
using QMAPP.MD.Entity;
using QMAPP.FJC.Web;
using QMAPP.FJC.Entity.CheckTime;
using QMAPP.FJC.Web.Models.CheckTime;
2 years ago
namespace QMAPP.FJC.Web.Controllers
{
/// <summary>
/// 模块名称:工位时间验证
/// 作 者:张松男
/// 编写日期:2020年05月27日
/// </summary>
public class ProductTimeController : QController
{
#region 获取列表
/// <summary>
/// 加载列表
/// </summary>
/// <returns>结果</returns>
[HandleException]
public ActionResult List(bool? callBack)
{
ProductTimeModel seachModel = new ProductTimeModel();
if (callBack == true)
TryGetSelectBuffer<ProductTimeModel>(out seachModel);
seachModel.rownumbers = false;
seachModel.url = "/ProductTime/GetList";
return View("ProductTimeList", seachModel);
}
/// <summary>
/// 获取列表
/// </summary>
/// <param name="callBack">是否回调</param>
/// <returns>列表</returns>
[HandleException]
public ActionResult GetList(bool? callBack)
{
ProductTimeModel seachModel = null;
DataPage page = null;
ServiceAgent wcfAgent = this.GetServiceAgent();
ProductTime condition = null;
DataResult<DataPage> pageResult = new DataResult<DataPage>();
try
{
//获取查询对象
seachModel = GetModel<ProductTimeModel>();
#region 获取缓存值
if (callBack != null)
{
TryGetSelectBuffer<ProductTimeModel>(out seachModel);
}
else
{
//保存搜索条件
SetSelectBuffer<ProductTimeModel>(seachModel);
}
#endregion
//获取前台分页设置信息
page = this.GetDataPage(seachModel);
condition = CopyToModel<ProductTime, ProductTimeModel>(seachModel);
#region wcf服务统一接口
pageResult = wcfAgent.InvokeServiceFunction<DataResult<DataPage>>("ProductTimeBLL_GetList", condition, page);
if (pageResult.IsSuccess == false)
{
SetMessage(pageResult.Msg);
return List(true);
}
DateGridResult<ProductTime> result = new DateGridResult<ProductTime>();
result.Total = pageResult.Result.RecordCount;
result.Rows = JsonConvertHelper.GetDeserialize<List<ProductTime>>(pageResult.Result.Result.ToString());
foreach (var r in result.Rows)
{
r.Check_Value = (Convert.ToDecimal(r.Check_Value) / 3600).ToString("#0.0");
}
2 years ago
#endregion
string tempstr = "";
tempstr = result.GetJsonSource();
return Content(tempstr);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 编辑
/// <summary>
/// 编辑载入
/// </summary>
/// <returns>处理结果</returns>
[HandleException]
public ActionResult Edit()
{
ProductTimeModel model = new ProductTimeModel();
string ID = Request.Params["PID"];
ProductTime Entity = new ProductTime();
ServiceAgent wcfAgent = this.GetServiceAgent();
DataResult<ProductTime> result = new DataResult<ProductTime>();
try
{
if (string.IsNullOrEmpty(ID) == false)
{
//修改获取原数据
Entity.PID = ID;
result = wcfAgent.InvokeServiceFunction<DataResult<ProductTime>>(QMAPP.ServicesAgent.B9BasicService.ProductTimeBLL_Get.ToString(), Entity);
result.Result.Check_Value = (Convert.ToDecimal(result.Result.Check_Value) / 3600).ToString("#0.0");
2 years ago
if (result.IsSuccess == false)
{
SetMessage(result.Msg);
return View("ProductTimeEdit", model);
}
model = CopyToModel<ProductTimeModel, ProductTime>(result.Result);
//根据工位信息获得工序信息
}
return View("ProductTimeEdit", model);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 保存
/// <summary>
/// 保存
/// </summary>
/// <param name="model"></param>
/// <returns>处理结果</returns>
[HttpPost]
[HandleException]
[ValidateInput(false)]
public ActionResult Save(ProductTimeModel saveModel)
{
ProductTime Entity = null;
ServiceAgent wcfAgent = this.GetServiceAgent();
DataResult<int> result = new DataResult<int>();
try
{
Entity = CopyToModel<ProductTime, ProductTimeModel>(saveModel);
Entity.Check_Value = (Convert.ToDouble(Entity.Check_Value) * 3600).ToString();
2 years ago
if (string.IsNullOrEmpty(Entity.PID) == true)
{
//新增
result = wcfAgent.InvokeServiceFunction<DataResult<int>>(QMAPP.ServicesAgent.B9BasicService.ProductTimeBLL_Insert.ToString(), Entity);
}
else
{
//修改
result = wcfAgent.InvokeServiceFunction<DataResult<int>>(QMAPP.ServicesAgent.B9BasicService.ProductTimeBLL_Update.ToString(), Entity);
}
if (result.IsSuccess == false)
{
SetMessage(result.Msg);
return View("ProductTimeEdit", saveModel);
}
return this.GetJsViewResult(string.Format("parent.List(1);parent.showTitle('{0}');parent.closeAppWindow1();", AppResource.SaveMessge));
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 删除
/// <summary>
/// 删除
/// </summary>
/// <returns>结果</returns>
[HttpPost]
[HandleException]
public ActionResult Delete(ProductTimeModel saveModel)
{
string selectKey = Request.Form["selectKey"];
ProductTime Entity = null;
Entity = CopyToModel<ProductTime, ProductTimeModel>(saveModel);
Entity.PID = selectKey;
ServiceAgent wcfAgent = this.GetServiceAgent();
DataResult<int> result = new DataResult<int>();
try
{
result = wcfAgent.InvokeServiceFunction<DataResult<int>>("ProductTimeBLL_Delete", selectKey);
if (result.IsSuccess == false)
{
SetMessage(result.Msg);
return List(true);
}
SetMessage(AppResource.DeleteMessage);
return List(true);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
}
}