home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 160 - Disc 2 / MF_UK_160_2.iso / pc / DiscContent / Trials / oxygen / samples / fo / Invoice / invoice.xml next >
Encoding:
Extensible Markup Language  |  2005-07-21  |  1.2 KB  |  37 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Type can be "proforma","quote", or "normal"-->
  3. <invoice xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.     xsi:noNamespaceSchemaLocation="invoice.xsd"
  5.     number="85776767" type="normal" currency="USD">
  6.     <payment-method>Wire Transfer</payment-method>
  7.     <date>04 June 2004</date>
  8.     <delivery>Electronic</delivery>
  9.     <checked-by>Ben Winston</checked-by>
  10.     <customer>
  11.         <block>Customer Name</block>
  12.         <block>Customer Address</block>
  13.         <block>Customer City</block>
  14.         <block>Customer Country</block>
  15.         <!-- This can be optional
  16.         <vat>vat id</vat>
  17.         -->
  18.     </customer>
  19.     <products>
  20.         <product>
  21.             <quantity>1</quantity>
  22.             <description>Keyboard</description>
  23.             <unit-cost>12</unit-cost>
  24.         </product>               
  25.         <product>
  26.             <quantity>32</quantity>
  27.             <description>Mouse Pad</description>
  28.             <unit-cost>4.2</unit-cost>
  29.         </product>        
  30.         <product>
  31.             <quantity>32</quantity>
  32.             <description>Optical Mouse</description>
  33.             <unit-cost>16.5</unit-cost>
  34.         </product>        
  35.     </products>
  36. </invoice>
  37.