summaryrefslogtreecommitdiffstats
path: root/report/Chapter5_B.tex
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2008-05-05 04:35:35 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2008-05-05 04:35:35 (GMT)
commit0450a2b3b6af5b78b63bf821fe630c72ba165c1e (patch)
tree10dea25a486126d5c3b4a24911b1cbecb8246969 /report/Chapter5_B.tex
parentdf832123a51fe36eedb4c9fed70de6a9ba003823 (diff)
download2ii55-0450a2b3b6af5b78b63bf821fe630c72ba165c1e.zip
2ii55-0450a2b3b6af5b78b63bf821fe630c72ba165c1e.tar.gz
2ii55-0450a2b3b6af5b78b63bf821fe630c72ba165c1e.tar.bz2
The new report.
Diffstat (limited to 'report/Chapter5_B.tex')
-rw-r--r--report/Chapter5_B.tex62
1 files changed, 62 insertions, 0 deletions
diff --git a/report/Chapter5_B.tex b/report/Chapter5_B.tex
new file mode 100644
index 0000000..ab2794b
--- /dev/null
+++ b/report/Chapter5_B.tex
@@ -0,0 +1,62 @@
+\subsection{Workflow process WarehouseWarehouse}
+
+\begin {center}
+ \includegraphics[width=\textwidth]{YAWL_WarehouseWarehouse.png} \\
+\end {center}
+
+\subsubsection{Datatypes}
+\begin{verbatim}
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
+ <xs:complexType name="WarehouseInspect">
+ <xs:sequence>
+ <xs:element name="WarehouseEmployeeID" type="xs:long" />
+ <xs:element name="InspectionDate" type="xs:date" />
+ <xs:element name="WarehouseID" type="xs:long" />
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="item">
+ <xs:sequence>
+ <xs:element name="ProductID" type="xs:long" />
+ <xs:element name="ProductName" type="xs:string" />
+ <xs:element name="MaxQuantity" type="xs:long" />
+ <xs:element name="MinQuantity" type="xs:long" />
+ <xs:element name="CurQuantity" type="xs:long" />
+ <xs:element name="PurchasePrice" type="xs:double" />
+ <xs:element name="RentalPrice" type="xs:double" />
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="productList">
+ <xs:sequence>
+ <xs:element maxOccurs="12" minOccurs="10" name="Item" type="item" />
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="InspectQuantityList">
+ <xs:sequence>
+ <xs:element maxOccurs="1" minOccurs="1" name="ProductList" type="productList" />
+ </xs:sequence>
+ </xs:complexType>
+ <xs:simpleType name="GoodsQualityCheckType">
+ <xs:restriction base="xs:string">
+ <xs:enumeration value="Goods in good shape." />
+ <xs:enumeration value="Goods not so good shape." />
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name="GoodsQuantityCheckType">
+ <xs:restriction base="xs:string">
+ <xs:enumeration value="Quantity in good shape." />
+ <xs:enumeration value="Quantity not so good shape." />
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name="SpaceCheckType">
+ <xs:restriction base="xs:string">
+ <xs:enumeration value="Space no Good." />
+ <xs:enumeration value="Space Good." />
+ </xs:restriction>
+ </xs:simpleType>
+</xs:schema>
+\end{verbatim}
+
+\subsubsection{Design Constructs}
+\begin{list}{-}
+ \item Products have several properties, these properties together form an item. Items are part of a productlist. Several Product Lists are possible.
+\end{list}