France (Flux 2 UBL EXT-CTC-FR): Line-Level Delivery Details

You can model delivery information on the line level.

CIUS-FR allows the usage of the delivery details on the line level.

Name (Path)CardinalityDescription
Delivery Details (/Invoice/InvoiceLine/Delivery)0..1A group of elements providing information about where and when the goods and services invoiced are delivered.
Ⓐ Actual Delivery Date
Actual Delivery Date (ActualDeliveryDate)0..1The date on which the supply of goods or services was made or completed.
Ⓑ Delivery Location ID
Delivery Location ID (DeliveryLocation/ID)0..1An identifier for the location at which the goods and services are delivered.
Scheme Identifier (DeliveryLocation/ID/@schemeID)0..1Scheme Identifier.
Ⓒ Deliver to Address
Deliver To Address (DeliveryLocation/Address)0..1A group to provide the Deliver to Address.
Deliver To Address Line 1 (DeliveryLocation/Address/StreetName)0..1Street Name.
Deliver To Address Line 2 (DeliveryLocation/Address/AdditionalStreetName)0..1Additional Street Name.
Deliver To City (DeliveryLocation/Address/CityName)0..1City Name.
Deliver To Post Code (DeliveryLocation/Address/PostalZone)0..1Postal Zone.
Deliver To Country Subdivision (DeliveryLocation/Address/CountrySubentity)0..1Country Subentity.
Deliver To Additional Address Line (DeliveryLocation/Address/AddressLine/Line)0..1Address Line.
Deliver To Country (DeliveryLocation/Address/Country/IdentificationCode)1..1Country Code. Use codes from the ISO3166-1:Alpha2 list.
Ⓓ Deliver To Party
Deliver To Party (DeliveryParty)0..1A group to provide Deliver To Party details.
Deliver To Party Name (DeliveryParty/PartyName/Name)1..1The name of the party to which the goods and services are delivered.

Example of delivery details information


<ubl:Invoice>
    <!-- code omitted for clarity -->
    <cac:InvoiceLine>
        <cac:Delivery>
            <cbc:ActualDeliveryDate>2026-01-20</cbc:ActualDeliveryDate> Ⓐ
            <cac:DeliveryLocation>
                <cbc:ID schemeID="0088">9483759475923478</cbc:ID> Ⓑ
                <cac:Address> Ⓒ
                    <cbc:StreetName>MON ADRESSE LIGNE 1</cbc:StreetName>
                    <cbc:AdditionalStreetName>ligne 2</cbc:AdditionalStreetName>
                    <cbc:CityName>MA VILLE</cbc:CityName>
                    <cbc:PostalZone>06000</cbc:PostalZone>
                    <cac:Country>
                        <cbc:IdentificationCode>FR</cbc:IdentificationCode>  
                    </cac:Country>
                </cac:Address>
            </cac:DeliveryLocation>
            <cac:DeliveryParty>
                <cac:PartyName> Ⓓ
                    <cbc:Name>Delivery party Name</cbc:Name> 
                </cac:PartyName>
            </cac:DeliveryParty>
        </cac:Delivery>
    </cac:InvoiceLine>
    <!-- code omitted for clarity -->
</ubl:Invoice>