コード例 #1
0
        public void FillInventoryProductList()
        {
            var products = AllProducts.Where(x => x.InventoryId == SelectedInventory.Id);

            InventoryProductViewModels.Clear();
            foreach (var product in products)
            {
                InventoryProductViewModels.Add(new InventoryProductViewModel
                {
                    Id          = product.Id,
                    ScannedDate = product.ScannedDate,
                    ScannedZone = AvailableZones.First(x => x.Id == product.ZoneId).Description
                });
            }
        }
コード例 #2
0
        public void FillInventoryList()
        {
            InventoryViewModels.Clear();
            AllProducts = new List <InventoryProductDto>();
            var inventorys = _restApiClient.GetInventorysBySearchId(new RestApi.Client.Dto.Request.Inventory.GetInventoryBySearch {
                SearchId = SelectedInventorySearchId
            });

            foreach (var inventory in inventorys)
            {
                InventoryViewModels.Add(new InventoryViewModel
                {
                    Description     = inventory.Description,
                    EndDate         = inventory.EndDate,
                    Id              = inventory.Id,
                    InventoryStatus = inventory.InventorySatus.Description,
                    StartDate       = inventory.StartDate,
                    ZoneName        = AvailableZones.First(x => x.Id == inventory.Id).Description
                });
            }

            AllProducts = inventorys.SelectMany(x => x.Products).ToList();
        }