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

DetailValue
Italian SpecificationNot Applicable

Elements

ElementDescription
Invoice/InvoiceLine/Price/UBLExtensions/UBLExtension/ ExtensionContent/PriceExtension/PriceAmountBeforeAllowanceChargeSpecify the price.

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>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>