-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinventory.xml
More file actions
39 lines (39 loc) · 857 Bytes
/
inventory.xml
File metadata and controls
39 lines (39 loc) · 857 Bytes
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
33
34
35
36
37
38
39
<?xml version="1.0"?>
<inventory>
<products>
<product>
<code>016-023</code>
<desc>Gallon 2% Milk</desc>
<quantity>10</quantity>
<price>2.49</price>
</product>
<product>
<code>016-043</code>
<desc>Saltine Crackers</desc>
<quantity>20</quantity>
<price>1.49</price>
</product>
<product>
<code>019-011</code>
<desc>Paper Towels</desc>
<quantity>15</quantity>
<price>2.23</price>
</product>
<product>
<code>020-026</code>
<desc>1 Qt. 10W-40 Motor Oil</desc>
<quantity>28</quantity>
<price>5.99</price>
</product>
</products>
<transactions>
<purchased>
<code>016-023</code>
<count>5</count>
</purchased>
<sold>
<code>019-011</code>
<count>3</count>
</sold>
</transactions>
</inventory>