<xs:simpleType name="ReservationLogisticsStatus" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:restriction base="xs:string">
<xs:enumeration value="NotSpecified" />
<xs:enumeration value="New" />
<xs:enumeration value="WaitingForPicking" />
<xs:enumeration value="PickingInProgress" />
<xs:enumeration value="PickingComplete" />
<xs:enumeration value="PickingVerified" />
<xs:enumeration value="ReadyForDelivery" />
<xs:enumeration value="ReadyForDeliveryVerified" />
<xs:enumeration value="Delivered" />
</xs:restriction>
</xs:simpleType>
|