using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; using WMS.IData; namespace WMS.Algorithm { /// /// 上架算法 /// public class PutonAlgo { /// /// 查找库位 /// /// 仓储编号 /// 库区编号 /// 商品编号 public void SelectLocData(string storageId,string storageAreaId,string goodsId) { ///查询条件 ///查询物料所属的库区 /// DataTable tale = DataProvider.Instance.AreaGoodsType.GetAreaGoodsTypeData(storageAreaId,goodsId); if(tale!=null) { if (tale.Rows.Count > 0) { } else { //查找整个仓库的入库地址 } } ///如果是自动化立体仓储 /// ///如果不是则查看条件 } /// /// 根据站台查询库位信息 /// /// 站台号 /// 条码 /// public void AotuLtkLoc(string station,string goodsCode,string goodsId) { } } }