<xsd:complexType name="SalesOrderType">
<xsd:annotation>
<xsd:documentation source="http://www.openapplications.org/oagis/9">The schema type for SaleOrder. SalesOrder's base abstract type, Order, is shared between PurchaseOrder and SalesOrder. SalesOrder is essentially an extension of PurchaseOrder, but in order to use the local-global design pattern, each of PO and SO needs to instantiate its own Header and Line elements.To do this, we factored out the PO content models, instantiated both PO and SO from Order.</xsd:documentation>
<xsd:documentation source="http://www.openapplications.org/oagis/9">Sees an order from end to end...</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element ref="SalesOrderHeader" minOccurs="0" />
<xsd:element ref="SalesOrderLine" minOccurs="0" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
|