| | |
| | | using System.Text; |
| | | using Model.ModelVm.PdaVm; |
| | | using Model.ModelDto.PdaDto; |
| | | using WMS.Entity.BllAsnEntity; |
| | | |
| | | namespace WMS.IBLL.IPdaServer |
| | | { |
| | |
| | | // 根据箱码或托盘号获取箱支信息 |
| | | List<BoxInfoDto> GetBoxInfos(BoxInfoVm model); |
| | | |
| | | // 根据托盘号或箱码获取托盘信息 |
| | | List<PalletBindDto> GetPalletBindInfo(BllPalletBind model); |
| | | |
| | | // 绑定物料托盘 |
| | | void BindPallet(PdaPalletBindVm model,int userId, string origin); |
| | | |
| | |
| | | // 删除已组信息 |
| | | string DelBoxInfo(BoxInfoVm model); |
| | | |
| | | // 删除已组信息 |
| | | string DelPalletBind(BllPalletBind model); |
| | | |
| | | // 平库完成入库操作 |
| | | string CompleteInStock(PalletBindVm model); |
| | | |
| | |
| | | |
| | | //零箱入库 |
| | | void CompleteInStockLing(PdaLingAsnVm model, int userId); |
| | | |
| | | // 根据箱码获取标签箱码信息 |
| | | List<BoxInfoDto> GetBindBoxInfos(BoxInfoVm model); |
| | | } |
| | | } |