User Tools

Site Tools


en:lensorder:version010600:simpletypes:roles:item

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
en:lensorder:version010600:simpletypes:roles:item [2013/05/01 17:48] sebastianraringen:lensorder:version010600:simpletypes:roles:item [2013/05/01 17:49] (current) sebastianraring
Line 1: Line 1:
 +====== role (Roles) ======
  
 +
 +[[en:lensorder:version010600:structure|b2boptic]] -> [[en:lensorder:version010600:structure|items]] -> [[en:lensorder:version010600:complextypes:item|item]]
 +
 +^ values ^ description ^
 +| ORIGINATOR | sender of the order; usually the customer |
 +| SUPPLIER | supplier of the order, if there is a middleman  |
 +| SHIPTO | destination of the order, if it is not the originator |
 +| CARRIER | parcel company that is used for shipment |
 +| INVOICETO | receiver of the invoice, if it is not the originator |
 +| PAIDBY | party that pays the invoice, but is not the receiver of the invoice |
 +| MANUFACTURER |  |
 +
 +<code xml>
 +<xs:simpleType name="Roles">
 +  <xs:restriction base="xs:string">
 +    <xs:enumeration value="ORIGINATOR"/>
 +    <xs:enumeration value="SUPPLIER"/>
 +    <xs:enumeration value="SHIPTO"/>
 +    <xs:enumeration value="CARRIER"/>
 +    <xs:enumeration value="INVOICETO"/>
 +    <xs:enumeration value="PAIDBY"/>
 +    <xs:enumeration value="MANUFACTURER"/>
 +  </xs:restriction>
 +</xs:simpleType>
 +</code>