Exemplo n.º 1
0
 public bool OffBin(List<string> huIds)
 {
     var inventoryPickList = new List<Entity.INV.InventoryPick>();
     foreach (var huId in huIds)
     {
         var inventoryPick = new Entity.INV.InventoryPick();
         inventoryPick.HuId = huId;
         inventoryPickList.Add(inventoryPick);
     }
     this.locationDetailMgr.InventoryPick(inventoryPickList);
     return true;
 }
Exemplo n.º 2
0
        public void DoPickUp(string huId)
        {
            //todo PickUp
            var inventoryPickList = new List<Entity.INV.InventoryPick>();
            var inventoryPick = new Entity.INV.InventoryPick();
            inventoryPick.HuId = huId;
            inventoryPickList.Add(inventoryPick);
            this.locationDetailMgr.InventoryPick(inventoryPickList);

            //var huStatus = this.huMgr.GetHuStatus(huId);
            //var hu = Mapper.Map<Entity.VIEW.HuStatus, Entity.SD.INV.Hu>(huStatus);
            //return hu;
        }
Exemplo n.º 3
0
 public void DoPickUp(string huId)
 {
     var inventoryPickList = new List<Entity.INV.InventoryPick>();
     var inventoryPick = new Entity.INV.InventoryPick();
     inventoryPick.HuId = huId;
     inventoryPickList.Add(inventoryPick);
     this.locationDetailMgr.InventoryPick(inventoryPickList);
 }