Skip to content

Commit

Permalink
POACC-691
Browse files Browse the repository at this point in the history
  • Loading branch information
OGlanzmann committed Feb 22, 2024
1 parent 1ff301b commit 50076d8
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 0 deletions.
1 change: 1 addition & 0 deletions guides/profiles/1-catalogueonly/process/usecase5.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Customer/Buyer
|*Assumptions* a|
1. The Seller has previously sent a catalogue to the Buyer which has been accepted.
2. The Seller needs to send a new article to update the previous catalogue.
3. One of the rows handle deposit.

|*The flow* a|
1. The Seller identifies the article to be added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Customer/Buyer.
|*Assumptions* a|
1. The Seller has previously sent a catalogue to the Buyer which has been accepted.
2. The Seller needs to send a new article to update the previous catalogue.
3. One of the rows handle deposit.

|*The flow* a|
1. The Seller identifies the article to be added.
Expand Down
1 change: 1 addition & 0 deletions guides/release-notes/v3.0.13.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Release date:: May 2024
* BIS Catalogue
** Clarified the use of item identifiers. Previusly unclear in the description if "either one of" or "at least one of" Sellers Identifier or Standard Identifier must be stated. It is now clear that it is "at least one of". This change is in line with existing validation rules of the existence of the identifiers.
** Statement that Manufacturers item identifier must be stated if it exists is deleted since it was unclear how to interpret the statement and to impossible to verify.
** Updated use case 5 to describe the use of deposits using RequiredRelatedItem

== Changes to syntax
* Order transaction (T01)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@
<cac:TransactionConditions>
<cbc:ActionCode>CT</cbc:ActionCode>
</cac:TransactionConditions>
<cac:TransactionConditions>
<cbc:ActionCode>NON_RETURNABLE</cbc:ActionCode>
</cac:TransactionConditions>
<cac:HazardousItem>
<cbc:UNDGCode>ADR</cbc:UNDGCode>
<cbc:HazardClassID>Code</cbc:HazardClassID>
Expand Down Expand Up @@ -301,4 +304,41 @@
</cac:AdditionalItemProperty>
</cac:Item>
</cac:CatalogueLine>
<cac:CatalogueLine><!-- This line handles an item with a deposit -->
<cbc:ID>3</cbc:ID>
<cac:RequiredRelatedItem>
<cbc:ID>1234</cbc:ID>
<cbc:Quantity unitCode="EA">1</cbc:Quantity>
</cac:RequiredRelatedItem>
<cac:RequiredItemLocationQuantity>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">2.00</cbc:PriceAmount>
<cbc:BaseQuantity unitCode="XBO">1</cbc:BaseQuantity>
</cac:Price>
</cac:RequiredItemLocationQuantity>
<cac:Item>
<cbc:Description>A bottle of soda</cbc:Description>
<cbc:Name>SodaBottle</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>4321</cbc:ID>
</cac:SellersItemIdentification>
</cac:Item>
</cac:CatalogueLine>
<cac:CatalogueLine> <!-- This line handles the deposit for the item in the previuous line-->
<cbc:ID>4</cbc:ID>
<cbc:OrderableIndicator>false</cbc:OrderableIndicator>
<cac:RequiredItemLocationQuantity>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">0.10</cbc:PriceAmount>
<cbc:BaseQuantity unitCode="EA">1</cbc:BaseQuantity>
</cac:Price>
</cac:RequiredItemLocationQuantity>
<cac:Item>
<cbc:Description>Deposit of a bottle of soda</cbc:Description>
<cbc:Name>BottleDeposit</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>1234</cbc:ID>
</cac:SellersItemIdentification>
</cac:Item>
</cac:CatalogueLine>
</Catalogue>

0 comments on commit 50076d8

Please sign in to comment.