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

221 lines
6.1 KiB

using System;
using System.Collections.Generic;
using QMAPP.BLL;
using QMFrameWork.Data;
using QMAPP.Entity;
using System.Data;
using QMAPP.MD.Entity;
using QMAPP.MD.DAL;
namespace QMAPP.MD.BLL
{
/// <summary>
/// 模块名称:缺陷表
/// 作 者:张松男
/// 编写日期:2021年5月26日
/// </summary>
public class DefectDictBLL : BaseBLL
{
#region 获取信息
/// <summary>
/// 获取信息
/// </summary>
/// <param name="">条件</param>
/// <returns>信息</returns>
public DataResult<DefectDict> Get(DefectDict model)
{
DataResult<DefectDict> result = new DataResult<DefectDict>();
try
{
result.Result = new DefectDictDAL().Get(model);
}
catch (Exception ex)
{
result.IsSuccess = false;
result.Msg = Resource.SystemException;
throw ex;
}
result.IsSuccess = true;
return result;
}
#endregion
#region 获取列表(分页)
/// <summary>
/// 获取列表
/// </summary>
/// <param name="condition">条件</param>
/// <param name="page">数据页</param>
/// <returns>数据页</returns>
public DataResult<DataPage> GetList(DefectDict condition, DataPage page)
{
DataResult<DataPage> result = new DataResult<DataPage>();
try
{
//获取物料信息列表
DataPage dataPage = new DefectDictDAL().GetList(condition, page);
result.Result = dataPage;
}
catch (Exception ex)
{
result.IsSuccess = false;
result.Msg = Resource.SystemException;
throw ex;
}
result.IsSuccess = true;
return result;
}
/// <summary>
/// 获取全部条码格式规则
/// </summary>
/// <returns></returns>
public List<DefectDict> GetAllList()
{
return new DefectDictDAL().GetAllList();
}
#endregion
#region 信息是否重复
/// <summary>
/// 判断名称是否存在
/// </summary>
/// <param name="">信息</param>
/// <returns>true:已存在;fasel:不存在。</returns>
public bool Exists(DefectDict info)
{
try
{
return new DefectDictDAL().Exists(info);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 插入信息
/// <summary>
/// 插入信息(单表)
/// </summary>
/// <param name="">信息</param>
/// <returns>插入行数</returns>
public DataResult<int> Insert(DefectDict info)
{
DataResult<int> result = new DataResult<int>();
try
{
//基本信息
var isok = new DefectDictDAL().Exists(info);
if (isok)
{
result.Msg = "作废编号重复";
result.IsSuccess = false;
return result;
}
else
{
info.PID = Guid.NewGuid().ToString();
info.MFGCODETYPE = "DEFECTCODE";
info.MFGCODETYPENAME = "缺陷代码";
info.TYPE_CODE = "N/a";
DefectDictDAL cmdDAL = new DefectDictDAL();
result.Result = new DefectDictDAL().Insert(info);
result.IsSuccess = true;
return result;
}
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 更新信息
/// <summary>
/// 更新信息
/// </summary>
/// <param name="">信息</param>
/// <returns>更新行数</returns>
public DataResult<int> Update(DefectDict info)
{
DataResult<int> result = new DataResult<int>();
try
{
var isok = new DefectDictDAL().Exists(info);
if (isok)
{
result.Msg = "作废编号重复";
result.IsSuccess = false;
return result;
}
else
{
result.Result = new DefectDictDAL().Update(info);
result.IsSuccess = true;
return result;
}
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 删除
/// <summary>
/// 删除信息
/// </summary>
/// <param name="">主键串</param>
/// <returns>删除个数</returns>
public DataResult<int> Delete(string strs)
{
int count = 0;
DataResult<int> result = new DataResult<int>();
string[] list = strs.Split(":".ToCharArray());
try
{
foreach (string str in list)
{
count += this.DeleteBarcodeRules(new DefectDict { PID = str });
}
result.Result = count;
result.IsSuccess = true;
return result;
}
catch (Exception ex)
{
throw ex;
}
}
/// <summary>
/// 删除信息
/// </summary>
/// <param name="">信息</param>
/// <returns>删除个数</returns>
public int DeleteBarcodeRules(DefectDict info)
{
try
{
return new DefectDictDAL().Delete(info);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
}
}