public static CustomerShipment AppsGetPendingCustomerShipmentForStore(this Party party, PostalAddress address, Store store, ShipmentMethod shipmentMethod) { var shipments = party.ShipmentsWhereShipToParty; shipments.Filter.AddEquals(Shipments.Meta.ShipToAddress, address); shipments.Filter.AddEquals(Shipments.Meta.Store, store); shipments.Filter.AddEquals(Shipments.Meta.ShipmentMethod, shipmentMethod); foreach (CustomerShipment shipment in shipments) { if (shipment.CurrentObjectState.Equals(new CustomerShipmentObjectStates(party.Strategy.Session).Created) || shipment.CurrentObjectState.Equals(new CustomerShipmentObjectStates(party.Strategy.Session).Picked) || shipment.CurrentObjectState.Equals(new CustomerShipmentObjectStates(party.Strategy.Session).OnHold) || shipment.CurrentObjectState.Equals(new CustomerShipmentObjectStates(party.Strategy.Session).Packed)) { return shipment; } } return null; }