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.
218 lines
6.5 KiB
218 lines
6.5 KiB
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using QMAPP.BLL;
|
||
|
using QMAPP.Entity;
|
||
|
using QMAPP.FJC.BLL.Dict;
|
||
|
using QMAPP.FJC.DAL.ProduceManage;
|
||
|
using QMAPP.FJC.Entity.ProduceManage;
|
||
|
using QMFrameWork.Data;
|
||
|
using QMFrameWork.Log;
|
||
|
using QMAPP.FJC.Entity;
|
||
|
using QMAPP.MD.Entity.Bucket;
|
||
|
using QMAPP.FJC.DAL.Bucket;
|
||
|
|
||
|
namespace QMAPP.FJC.BLL.Bucket
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 模块名称:注塑料筒材料绑定
|
||
|
/// 作 者:张松男
|
||
|
/// 编写日期:2021年07月13日
|
||
|
/// </summary>
|
||
|
public class RawMaterialRecordBLL : BaseBLL
|
||
|
{
|
||
|
#region 获取信息
|
||
|
/// <summary>
|
||
|
/// 获取信息
|
||
|
/// </summary>
|
||
|
/// <param name="">条件</param>
|
||
|
/// <returns>信息</returns>
|
||
|
public DataResult<RawMaterialRecord> Get(RawMaterialRecord model)
|
||
|
{
|
||
|
DataResult<RawMaterialRecord> result = new DataResult<RawMaterialRecord>();
|
||
|
try
|
||
|
{
|
||
|
result.Result = new RawMaterialRecordDAL().Get(model);
|
||
|
result.IsSuccess = true;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
LogManager.LogHelper.Error(new LogInfo()
|
||
|
{
|
||
|
ErrorInfo = ex,
|
||
|
Tag = ex.StackTrace,
|
||
|
Info = "获取异常!"
|
||
|
});
|
||
|
result.IsSuccess = false;
|
||
|
result.Ex = ex;
|
||
|
result.Msg = "获取异常";
|
||
|
}
|
||
|
|
||
|
return result;
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 获取列表
|
||
|
/// <summary>
|
||
|
/// 获取列表
|
||
|
/// </summary>
|
||
|
/// <param name="condition">条件</param>
|
||
|
/// <param name="page">数据页</param>
|
||
|
/// <returns>数据页</returns>
|
||
|
public DataResult<DataPage> GetList(RawMaterialRecord condition, DataPage page)
|
||
|
{
|
||
|
DataResult<DataPage> result = new DataResult<DataPage>();
|
||
|
try
|
||
|
{
|
||
|
DataPage dataPage = new RawMaterialRecordDAL().GetList(condition, page);
|
||
|
|
||
|
result.IsSuccess = true;
|
||
|
result.Result = dataPage;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
LogManager.LogHelper.Error(new LogInfo()
|
||
|
{
|
||
|
ErrorInfo = ex,
|
||
|
Tag = ex.StackTrace,
|
||
|
Info = "获取列表异常!"
|
||
|
});
|
||
|
result.IsSuccess = false;
|
||
|
result.Ex = ex;
|
||
|
result.Msg = "获取列表异常!";
|
||
|
}
|
||
|
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 获取列表
|
||
|
/// </summary>
|
||
|
/// <param name="condition">条件</param>
|
||
|
/// <returns>全部集合</returns>
|
||
|
public DataPage GetAllList(RawMaterialRecord condition,DataPage page)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
//获取信息列表
|
||
|
DataPage list = new RawMaterialRecordDAL().GetList(condition, page);
|
||
|
return list;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
LogManager.LogHelper.Error(new LogInfo()
|
||
|
{
|
||
|
ErrorInfo = ex,
|
||
|
Tag = ex.StackTrace,
|
||
|
Info = "获取列表异常!"
|
||
|
});
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
#region 插入信息
|
||
|
/// <summary>
|
||
|
/// 插入信息(单表)
|
||
|
/// </summary>
|
||
|
/// <param name="">信息</param>
|
||
|
/// <returns>插入行数</returns>
|
||
|
public DataResult<int> Insert(RawMaterialRecord info)
|
||
|
{
|
||
|
DataResult<int> result = new DataResult<int>();
|
||
|
try
|
||
|
{
|
||
|
//基本信息
|
||
|
info.PID = Guid.NewGuid().ToString();
|
||
|
info.CREATEUSER = this.LoginUser.UserID;
|
||
|
info.CREATEDATE = DateTime.Now.ToString();
|
||
|
info.UPDATEUSER = info.CREATEUSER;
|
||
|
info.UPDATEDATE = info.CREATEDATE;
|
||
|
info.IsCheck = "0";
|
||
|
RawMaterialRecordDAL cmdDAL = new RawMaterialRecordDAL();
|
||
|
result.Result = cmdDAL.Insert(info);
|
||
|
result.IsSuccess = true;
|
||
|
return result;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 更新信息
|
||
|
/// <summary>
|
||
|
/// 更新信息
|
||
|
/// </summary>
|
||
|
/// <param name=""></param>
|
||
|
/// <returns>更新行数</returns>
|
||
|
public DataResult Update(RawMaterialRecord model)
|
||
|
{
|
||
|
DataResult result = new DataResult();
|
||
|
result.IsSuccess = true;
|
||
|
try
|
||
|
{
|
||
|
RawMaterialRecord info = new RawMaterialRecordDAL().Get(model);
|
||
|
|
||
|
//基本信息
|
||
|
info.IsCheck = model.IsCheck;
|
||
|
info.ProductCode = model.ProductCode;
|
||
|
info.RawMaterialPID = model.RawMaterialPID;
|
||
|
info.MaterialCode = model.MaterialCode;
|
||
|
info.CREATEUSER = model.CREATEUSER;
|
||
|
info.CREATEDATE = model.CREATEDATE;
|
||
|
info.UPDATEDATE = DateTime.Now.ToString();
|
||
|
info.UPDATEUSER = this.LoginUser.UserID;
|
||
|
int temp = new RawMaterialRecordDAL().Update(info);
|
||
|
|
||
|
if (temp == 0)
|
||
|
{
|
||
|
result.IsSuccess = false;
|
||
|
result.Msg = "更新失败!";
|
||
|
return result;
|
||
|
}
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
LogManager.LogHelper.Error(new LogInfo()
|
||
|
{
|
||
|
ErrorInfo = ex,
|
||
|
Tag = ex.StackTrace,
|
||
|
Info = "更新异常!"
|
||
|
});
|
||
|
result.IsSuccess = false;
|
||
|
result.Ex = ex;
|
||
|
result.Msg = "更新异常";
|
||
|
}
|
||
|
return result;
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 删除
|
||
|
|
||
|
/// <summary>
|
||
|
/// 删除信息
|
||
|
/// </summary>
|
||
|
/// <param name="">信息</param>
|
||
|
/// <returns>删除个数</returns>
|
||
|
public int Delete(string model)
|
||
|
{
|
||
|
int count = 0;
|
||
|
try
|
||
|
{
|
||
|
count = new RawMaterialRecordDAL().Delete(model);
|
||
|
return count;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
}
|
||
|
}
|