Italy: Item Gross Price
You can specify an item's gross price on each invoice line.
Use the PriceAmountBeforeAllowanceCharge sub-element of the PriceExtension Extension to specify the gross price. That is the price before allowances and charges are deducted.
Details
Detail | Value |
---|---|
Italian Specification | Not Applicable |
Elements
Name (Path) | Cardinality | Description |
---|---|---|
Item Gross Price (Invoice/InvoiceLine/Price/UBLExtensions/UBLExtension/ ExtensionContent/PriceExtension/PriceAmountBeforeAllowanceCharge ) | 0..1 | Price before any allowance and charges on the price level. |
Item Gross Price Currency (Invoice/InvoiceLine/Price/UBLExtensions/UBLExtension/ ExtensionContent/PriceExtension/PriceAmountBeforeAllowanceCharge @currencyID ) | 1..1 | Currency of the price before any allowance and charges on the price level. |
Example
The following example specifies a gross price of 59.09
:
<ubl:Invoice>
<!-- Code omitted for clarity -->
<cac:InvoiceLine>
<!-- Code omitted for clarity -->
<cac:Price>
<cec:UBLExtensions>
<cec:UBLExtension>
<cec:ExtensionContent>
<vrbl:PriceExtension>
<vrbl:PriceAmountBeforeAllowanceCharge currencyID="EUR">59.09</vrbl:PriceAmountBeforeAllowanceCharge>
</vrbl:PriceExtension>
</cec:ExtensionContent>
</cec:UBLExtension>
</cec:UBLExtensions>
</cac:Price>
<!-- Code omitted for clarity -->
</cac:InvoiceLine>
<!-- Code omitted for clarity -->
</ubl:Invoice>
Updated 5 months ago