namespace WIDESEA_StorageOutOrderServices; public class Dt_OutOrderAndStockService : ServiceBase, IDt_OutOrderAndStockService { private readonly IUnitOfWorkManage _unitOfWorkManage; public Dt_OutOrderAndStockService(IDt_OutOrderAndStockRepository BaseDal, IUnitOfWorkManage unitOfWorkManage) : base(BaseDal) { _unitOfWorkManage = unitOfWorkManage; } /// /// 根据特定条件获取出库物料信息 /// /// 货位ID /// 出库订单 /// 托盘号 /// 出库物料信息 public async Task GetOrderAndStock(string locationID = null, string orderNum = null, string palletCode = null) { return await BaseDal.GetOrderAndStock(locationID, orderNum, palletCode); } /// /// 导航删除 /// /// 出库物料信息 /// 成功/失败 public bool DeleteNavOrderStock(Dt_OutOrderAndStock stock) { return BaseDal.DeleteNavOrderStock(stock); } /// /// 导航更新 /// /// 出库物料信息 /// 成功/失败 public bool UpdateNavOrderStock(Dt_OutOrderAndStock stock) { return BaseDal.UpdateNavOrderStock(stock); } }