Poland (FA(3)): Dispatch Party

You can model information about the dispatch.

You may want to include information about the location where goods are dispatched from.

Elements

Use the DespatchParty element to model this information. This element is a sub-element of the Delivery element:

Name (Path)CardinalityDescription
Delivery (Invoice/Delivery)0..nGroups information about a delivery that is associated with this Document.
Dispatch Information
Dispatch Party Group (/Invoice/Delivery/Despatch/DespatchParty)0..1Groups information about the Dispatch Party.
Dispatch Party Name (/Invoice/Delivery/Despatch/DespatchParty/PartyName/Name)1..1The Dispatch Party's name.
Dispatch Party Address (/Invoice/Delivery/Despatch/DespatchParty/PostalAddress/StreetName)1..1The first line of the address.
Dispatch Party Additional Address (/Invoice/Delivery/Despatch/DespatchParty/PostalAddress/AdditionalStreetName)0..1The second line of the address.
Dispatch Party City Name (/Invoice/Delivery/Despatch/DespatchParty/PostalAddress/CityName)1..1The Dispatch Party's city.
Dispatch Party Postal Zone (/Invoice/Delivery/Despatch/DespatchParty/PostalAddress/PostalZone)1..1The Dispatch Party's postal zone or code.
Dispatch Party Country Subentity Code (Replace with Country Code) (/Invoice/Delivery/Despatch/DespatchParty/PostalAddress/CountrySubentityCode)1..1The code that represents the province of the Dispatch Party.

Examples

Outbound AR invoice

<ubl:Invoice>
    <!-- code omitted for clarity -->
    <cac:Delivery>
		<!-- code omitted for clarity -->
		<cac:Despatch>
			<cac:DespatchParty>
				<cac:PostalAddress>
					<cbc:StreetName>Sadowa 1 lok. 2</cbc:StreetName>
					<cbc:CityName>Warszawa</cbc:CityName>
					<cbc:PostalZone>00-001</cbc:PostalZone>
				</cac:PostalAddress>
                <cac:Country>
                    <cbc:IdentificationCode>PL</cbc:IdentificationCode>
                </cac:Country>
			</cac:DespatchParty>
		</cac:Despatch>
    	<!-- code omitted for clarity -->
	</cac:Delivery>
</ubl:Invoice>

Inbound AP invoice

<ubl:Invoice>
    <!-- code omitted for clarity -->
    <cac:Delivery>
		<!-- code omitted for clarity -->
		<cac:Despatch>
			<cac:DespatchParty>
                <AddressLine>
                    <cbc:Line>Sadowa 1 lok. 2</cbc:Line>
                </AddressLine>
                <AddressLine>
                    <cbc:Line>00-001 Warszawa</cbc:Line>
                </AddressLine>
                <cac:Country>
                    <cbc:IdentificationCode>PL</cbc:IdentificationCode>
                </cac:Country>
			</cac:DespatchParty>
		</cac:Despatch>
    	<!-- code omitted for clarity -->
	</cac:Delivery>
</ubl:Invoice>