<xs:simpleType name="CostType">
<xs:annotation>
<xs:documentation source="http://www.openapplications.org/oagis">Is the methodology by which the value of an item is determined.
Values are:
Standard
Moving Average
LIFO - For last in first out.
FIFO - For first in first out.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Standard" />
<xs:enumeration value="MovingAverage" />
<xs:enumeration value="LIFO" />
<xs:enumeration value="LastInFirstOut" />
<xs:enumeration value="FIFO" />
<xs:enumeration value="FirstInFirstOut" />
</xs:restriction>
</xs:simpleType>
|