Guest User

Untitled

a guest
Jan 24th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. <cac:InvoiceLine>
  2. <!-- Unique identifier for the individual line within the invoice -->
  3. <cbc:ID>1</cbc:ID>
  4. <!-- Quantity of items charged in the invoice line. The unit of measure that applies to the invoiced quantity is a code from one of two standards. -->
  5. <cbc:InvoicedQuantity unitCode="C62">30</cbc:InvoicedQuantity>
  6. <!-- Line extension amount for this invoice line, rounded to max 2 decimals -->
  7. <cbc:LineExtensionAmount currencyID="EUR">-9.30</cbc:LineExtensionAmount>
  8. <!-- Item information -->
  9. <cac:Item>
  10. <!-- Item name -->
  11. <cbc:Name>KO Algemene korting</cbc:Name>
  12. <!-- Line VAT information -->
  13. <cac:ClassifiedTaxCategory>
  14. <!-- VAT category code for the invoiced item -->
  15. <cbc:ID>E</cbc:ID>
  16. <cbc:Percent>0.00</cbc:Percent>
  17. <cac:TaxScheme>
  18. <!-- Mandatory element, use "VAT" -->
  19. <cbc:ID>VAT</cbc:ID>
  20. </cac:TaxScheme>
  21. </cac:ClassifiedTaxCategory>
  22. </cac:Item>
  23. <!-- Price details -->
  24. <cac:Price>
  25. <!-- Item price, VAT exclusive, after subtracting item price discount. The Item net price has to be equal with the Item gross price less the Item price discount, if they are both provided. Item price can not be negative. -->
  26. <cbc:PriceAmount currencyID="EUR">-0.31</cbc:PriceAmount>
  27. <!-- Number of item units to which the price applies -->
  28. <cbc:BaseQuantity unitCode="C62">1</cbc:BaseQuantity>
  29. <!-- Allowance to apply reduction -->
  30. <cac:AllowanceCharge>
  31. <!-- Mandatory element that must be set to false -->
  32. <cbc:ChargeIndicator>false</cbc:ChargeIndicator>
  33. <!-- Item price discount -->
  34. <cbc:Amount currencyID="EUR">0.31</cbc:Amount>
  35. </cac:AllowanceCharge>
  36. </cac:Price>
  37. </cac:InvoiceLine>
Add Comment
Please, Sign In to add comment