using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Reflection; using System.Text; using MESClassLibrary.BLL.Log; using MESClassLibrary.DAL; using MESClassLibrary.DAL.BasicInfo; using MESClassLibrary.DAL.Injection; using MESClassLibrary.Enum; using MESClassLibrary.Model; namespace MESClassLibrary.BLL.Injection { public class WmsBLL { private WmsDAL da=new WmsDAL(); private BarCodeDAl barCodeDal = new BarCodeDAl(); public string SaveRecordAndInterface(BarCodeModel bcm,string tableName,string badReason) { LocalDBService local = new LocalDBService(SqlHelper.GetConnSting()); try { local.BeginTrans(); barCodeDal.AddInfoNew(local, bcm, tableName); da.SaveInterface(local, bcm, badReason); local.Commit(); } catch (Exception ex) { if (local != null) { local.Rollback(); } return ex.Message; } finally { if (local != null) { local.EndTrans(); } } return null; } public void SaveInterface(LocalDBService local ,BarCodeModel bcm,string badReason) { da.SaveInterface(local, bcm, badReason); } public void DeleteInterface(LocalDBService local, string oneBarCode) { da.DeleteInterface(local, oneBarCode); } /// /// 合格保存接口 /// /// /// /// /// /// public string SaveInterface(string boxNo,string lastBoxNo1,string lastBoxNo2, WmsInterfaceEnum interfaceType) { //上一个是否传递成功,没成功重新传 左侧 if (!string.IsNullOrEmpty(lastBoxNo1)) { bool exsit = da.IsSendPackageCode(lastBoxNo1); if(exsit == false) { SendToInterface(lastBoxNo1,""); } } //上一个是否传递成功,没成功重新传 右侧侧 if (!string.IsNullOrEmpty(lastBoxNo2)) { bool exsit = da.IsSendPackageCode(lastBoxNo2); if (exsit == false) { SendToInterface(lastBoxNo2, ""); } } string rst = SendToInterface(boxNo,""); if (!string.IsNullOrEmpty(rst)) { LogErrBLL.AddInfo(rst, MethodBase.GetCurrentMethod()); } return rst; } private string SendToInterface(string boxNo, string badReason) { DataTable barCodeTable = barCodeDal.SearchInfoByBox(boxNo); string rst = da.SaveInterface(barCodeTable, badReason); return rst; } /// /// 是否已传到WMS /// /// /// public bool IsSendPackageCode(string pacakgCode) { return da.IsSendPackageCode(pacakgCode); } /// /// 查询箱码在 wms中间表 是否已读 /// /// /// public bool IsReadBoxInWms(string packagCode) { return da.IsReadBoxInWms(packagCode); } /// /// 查询注塑码或条码在 wms中间表 是否已读 /// /// /// public bool IsReadBarCodeInWms(string barCode) { return da.IsReadBarCodeInWms(barCode); } /// /// 根据箱码删除中间表数据 整体报废wms未读取订单 true 删除成功, false 删除失败 /// /// /// public bool DelRecordByBox(string boxNo) { return da.DelRecordByBox(boxNo); } public bool DelRecordByBox(LocalDBService localDB , string boxNo) { return da.DelRecordByBox(localDB, boxNo); } } }