public void BaseSetPicked(PickListSetPicked method) { foreach (PickListItem pickListItem in this.PickListItems) { if (pickListItem.QuantityPicked == 0) { pickListItem.QuantityPicked = pickListItem.Quantity; } } this.PickListState = new PickListStates(this.Strategy.Session).Picked; }
public void AppsSetPicked(PickListSetPicked method) { this.PickListState = new PickListStates(this.Strategy.Session).Picked; foreach (PickListItem pickListItem in this.PickListItems) { if (!pickListItem.ExistActualQuantity) { pickListItem.ActualQuantity = pickListItem.RequestedQuantity; } } }
public void AppsSetPicked(PickListSetPicked method) { this.CurrentObjectState = new PickListObjectStates(this.Strategy.Session).Picked; foreach (PickListItem pickListItem in this.PickListItems) { if (!pickListItem.ExistActualQuantity) { pickListItem.ActualQuantity = pickListItem.RequestedQuantity; } } }