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 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)
{
DataTable barCodeTable = barCodeDal.SearchInfoByBox(boxNo);
string rst = da.SaveInterface(barCodeTable);
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);
}
}
}