Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
<?xml version="1.0" encoding="utf-8" ?>
<GetItemDetailsResponse xmlns="urn:veloconnect:order-1.1" xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-1.0" xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-1.0" xmlns:vct="urn:veloconnect:transaction-1.0">
  <vct:BuyersID>B127645</vct:BuyersID>
  <vct:ResponseCode>200</vct:ResponseCode>
  <cac:Item>
    <cbc:Description>
SpeichenDescription>Speichen DD 2,0x1,8x 263 mm, silber Race,Niro, mit Messingnippel
<Messingnippel</cbc:Description>
    <cbc:PackQuantity quantityUnitCode="EA">100</cbc:PackQuantity>
    <cac:SellersItemIdentification>
       <cac:ID>42213526300</cac:ID>
    </cac:SellersItemIdentification>
    <cac:StandardItemIdentification>
       <cac:ID identificationSchemeID="EAN/UCC-13">4032191511108</cac:ID>
    </cac:StandardItemIdentification>
    <cac:BasePrice>
       <cbc:PriceAmount amountCurrencyID="EUR">34.90</cbc:PriceAmount>
      <cbc:BaseQuantity quantityUnitCode="PK">1</cbc:BaseQuantity>
    </cac:BasePrice>
    <cac:BasePrice>
       <cbc:PriceAmount amountCurrencyID="EUR">29.50</cbc:PriceAmount>
       <cbc:BaseQuantity quantityUnitCode="PK">1</cbc:BaseQuantity>
       <cbc:MinimumQuantity quantityUnitCode="PK">10</cbc:MinimumQuantity>
    </cac:BasePrice>
    <cac:RecommendedRetailPrice>
       <cbc:PriceAmount amountCurrencyID="EUR">0.70</cbc:PriceAmount>
       <cbc:BaseQuantity quantityUnitCode="EA">1</cbc:BaseQuantity>
    </cac:RecommendedRetailPrice>
  </cac:Item>
  <Availability>
    <Code>available</Code>
  </Availability>
</GetItemDetailsResponse>

...

  • Der Artikel hat den EAN-Code 4032191511108.

  • Der Artikel wird in Packungen zu je 100 Stück verkauft.

  • Ein Paket kostet bei Abnahme von weniger als 5 Paketen 34,50 Euro, ab einer Abnahme von 5 Paketen 29,50 Euro.

  • Der empfohlene Verkaufspreis beträgt 0,70 Euro pro Stück.

Falls der Artikel unbekannt ist, ist die Antwort wie folgt:

Code Block
languagexml
<?xml version="1.0" encoding="utf-8"?>
<GetItemDetailsResponse xmlns="urn:veloconnect:order-1.1" xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-1.0" xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-1.0" xmlns:vct="urn:veloconnect:transaction-1.0">
  <vct:BuyersID>B127645</vct:BuyersID>
  <vct:ResponseCode>200</vct:ResponseCode>
  <ItemUnknown>
    <cac:SellersItemIdentification>
      <cac:ID>42213526300</cac:ID>
    </cac:SellersItemIdentification>
  </ItemUnknown>  
</GetItemDetailsResponse>

Falls der Artikel nicht mehr im Sortiment ist, aber ein Ersatzartikel empfohlen werden kann, ist die Antwort wie folgt:

Code Block
languagexml
<?xml version="1.0" encoding="utf-8"?>
<GetItemDetailsResponse xmlns="urn:veloconnect:order-1.1" xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-1.0" xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-1.0" xmlns:vct="urn:veloconnect:transaction-1.0">
  <vct:BuyersID>B127645</vct:BuyersID>
  <vct:ResponseCode>200</vct:ResponseCode>
  <ItemUnknown>
    <cac:SellersItemIdentification>
      <cac:ID>42213526300</cac:ID>
    </cac:SellersItemIdentification>
  </ItemUnknown>  
</GetItemDetailsResponse>