Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

POACC-779 #124

Merged
merged 1 commit into from
Feb 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions guides/release-notes/v3.0.15.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Release date:: May 2025
== Changes to syntax
* Order transaction (T01) [MINOR CHANGE TO TRANSACTION VERSION NUMBER]
** Added new codelist to Item CertificateTypeCode (PackagingMarkedLabelAccrediationCode from GS1 GDSN) which can be used in addition to the current NA value. The element was previously fixed to NA as the element was mandatory in UBL.
** Added business terms and elements for the requested despatch date and time (The date/time on which the buyer requests the ordered goods be ready for pickup at the seller’s warehouse or an agreed-upon pickup location.)
* Order Change(T114)
** RELEASE NOTES
* Order Agreement(T110)
Expand Down
4 changes: 4 additions & 0 deletions rules/examples/Order_Example.xml
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,10 @@
<cbc:ElectronicMail>[email protected]</cbc:ElectronicMail>
</cac:Contact>
</cac:DeliveryParty>
<cac:Despatch>
<cbc:RequestedDespatchDate>2025-02-17</cbc:RequestedDespatchDate>
<cbc:RequestedDespatchTime>11:25:00</cbc:RequestedDespatchTime>
</cac:Despatch>
<cac:Shipment>
<cbc:ID>NA</cbc:ID>
<cbc:ShippingPriorityLevelCode>1</cbc:ShippingPriorityLevelCode>
Expand Down
20 changes: 20 additions & 0 deletions structure/syntax/ubl-order.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1343,6 +1343,26 @@
</Element>
</Element>
</Element>
<Element cardinality="0..1">
<Term>cac:Despatch</Term>
<Name>Despatch information</Name>
<Element>
<Term>cbc:RequestedDespatchDate</Term>
<Name>Requested despatch date</Name>
<Description>The date on which the buyer requests the ordered goods be ready for pickup at the seller’s warehouse or an agreed-upon pickup location.</Description>
<DataType>Date</DataType>
<Reference type="BUSINESS_TERM">tir01-p053</Reference>
<Value type="EXAMPLE">2025-02-17</Value>
</Element>
<Element cardinality="0..1">
<Term>cbc:RequestedDespatchTime</Term>
<Name>Requested despatch time</Name>
<Description>The time (in addition to the date) on which the buyer requests the ordered goods be ready for pickup at the seller’s warehouse or an agreed-upon pickup location.</Description>
<DataType>Time</DataType>
<Reference type="BUSINESS_TERM">tir01-p054</Reference>
<Value type="EXAMPLE">10:30:00</Value>
</Element>
</Element>
<Element cardinality="0..1">
<Term>cac:Shipment</Term>
<Name>Shipment</Name>
Expand Down