blob: a5804818f33e028f105c8e2ab9206d0672269464 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?xml version="1.0"?>
<po:purchaseOrder xmlns:po="URN:purchase-order" orderDate="1999-10-20">
<po:shipTo country="US">
<name>Alice Smith</name>
<street>123 Maple Street</street>
<city>Anytown</city>
<state>AK</state>
<zip>12341</zip>
</po:shipTo>
<po:billTo country="US">
<name>Robert Smith</name>
<street>8 Oak Avenue</street>
<city>Anytown</city>
<state>AK</state>
<zip>12341</zip>
</po:billTo>
<po:items>
<po:item partNum="833-AA">
<po:productName>Lapis necklace</po:productName>
<po:quantity>1</po:quantity>
<po:USPrice>99.95</po:USPrice>
<po:comment>Want this for the holidays!</po:comment>
<po:shipDate>1999-12-05</po:shipDate>
</po:item>
<po:item partNum="833-AB">
<po:productName>Plastic necklace</po:productName>
<po:quantity>4</po:quantity>
<po:USPrice>3.95</po:USPrice>
<po:shipDate>1999-12-24</po:shipDate>
</po:item>
</po:items>
</po:purchaseOrder>
|