User Tools

Site Tools


en:lensinfo:version010000:simpletypes:b2binfoorderstates

Differences

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

Link to this comparison view

en:lensinfo:version010000:simpletypes:b2binfoorderstates [2014/01/03 15:48] – created sebastianraringen:lensinfo:version010000:simpletypes:b2binfoorderstates [2014/01/03 15:48] (current) sebastianraring
Line 1: Line 1:
 +====== orderStatus (B2BInfoOrderStates) ======
  
 +[[en:lensinfo:version010000:structure|b2bOpticInfo]] -> [[en:lensinfo:version010000:complextypes:b2binfoitem|item]]
 +
 +^ values ^ description ^
 +| DELETED | order was canceled |
 +| INCOMPLETE | order is not complete and needs additional data for production |
 +| OPEN | order ok and is waiting for production |
 +| ORDERED |  |
 +| PRODUCTION | order is in production |
 +| COATING_TINTING | order is in coating or tinting |
 +| COMPLETED | order is completed but not dispatched |
 +| DISPATCHED | order was dispatched and are on the way to the customer |
 +| FINISHING | order is in finishing, where the lenses are set in a frame |
 +
 +<code xml>
 +<xs:simpleType name="B2BInfoOrderStates">
 +  <xs:restriction base="xs:string">
 +    <xs:enumeration value="DELETED" />
 +    <xs:enumeration value="INCOMPLETE" />
 +    <xs:enumeration value="OPEN" />
 +    <xs:enumeration value="ORDERED" />
 +    <xs:enumeration value="PRODUCTION" />
 +    <xs:enumeration value="COATING_TINTING" />
 +    <xs:enumeration value="COMPLETED" />
 +    <xs:enumeration value="DISPATCHED" />
 +    <xs:enumeration value="FINISHING" />
 +  </xs:restriction>
 +</xs:simpleType>
 +</code>