# Bruto Prijzen Import

## Korte omschrijving

Deze interface beschrijft welke bruto prijsinformatie vanuit het ERP systeem naar de Shoxl Shop wordt getransporteerd. Bruto prijzen worden getoond op productniveau en komen uit Shoxl Shop, op artikelniveau worden de prijzen realtime opgevraagd uit het ERP systeem. De bruto prijsinformatie kan uitgebreid worden met staffelprijzen, hierbij wordt de prijs vermeld vanaf het aantal artikelen waarvoor de staffelprijs geldt.

Prijzen kunnen in meerdere valuta worden definieerd. Als voor een prijs geen valuta is gespecificeerd dan worden de prijzen in Euro geïmporteerd.

### Bruto prijsinformatie omvat:

* Artikelnummer
* Bruto prijs excl. BTW
* Netto Prijs inclusief BTW
* Adviesprijs inclusief BTW
* Minimum bestel aantal
* Korting prijs excl. BTW
* Aantal per verpakking
* Verpakkingseenheid
* Minimum aantal staffelprijs

## Aanleverwijze

**Update Frequentie**: Batch 1x per dag **Incrementeel of complete set:** complete set **Bestandtype:** Zipped XML

**Bestandsbenaming: \[SHOPNAME]\_**&#x62;rutoprices\_**\[INDEXNUMBER]**.xml\
**Transport:** over FTPS, FTPS Vendisto server wordt gehost door INTEGRACE, bestand wordt door ERP partij neergezet op FTPS server

## Structuur Bruto prijzen XML

```markup
<?xml version="1.0" encoding="utf-8"?>
<brutoPrices>
    <brutoPrice>
        <productNumber></productNumber>
        <priceListNumber></priceListNumber>
        <brutoPriceExclVat Currrency=""></brutoPriceExclVat>
        <vatCode></vatCode>
        <PriceInclVat Currrency=""></PriceInclVat>
        <SuggestedRetailPriceInclVat Currrency=""></SuggestedRetailPriceInclVat>
        <MinimumOrderQuantity></MinimumOrderQuantity>
        <DiscountPriceExclVat Currrency=""></DiscountPriceExclVat>
        <BaseUnit></BaseUnit>
        <PriceUnit></PriceUnit>
        <AccumulativeDiscounts>
            <AccumulativeDiscount>
                <DiscountMinimumQuantity></DiscountMinimumQuantity>
                <brutoPriceExclVat Currrency=""></brutoPriceExclVat>
                <PriceInclVat Currrency=""></PriceInclVat>
            </AccumulativeDiscount>
        </AccumulativeDiscounts>
    </brutoPrice>
</brutoPrices>

```

## Velden Bruto Prijzen XML

Prijzen kunnen optioneel in meerdere valuta worden definieerd. De brutoPriceExclVat en PriceInclVat mogen hierdoor vaker voorkomen binnen een brutoPrice of AccumulativeDiscount element.

| **Name**                    | **Description**                                                                                                                         | **Type**         | **Required / Optional** |
| --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | ---------------- | ----------------------- |
| productNumber               | The identifier of a product                                                                                                             | Text             | Required                |
| priceListNumber             | The identifier of a pricelist.                                                                                                          | Text             | Required                |
| brutoPriceExclVat           | Manufacturer's suggested retail price                                                                                                   | Decimal          | Required                |
| vatCode                     | <p>HIGH = 21 % LOW = 6%</p><p>ZERO = 0%</p>                                                                                             | Text             | Required                |
| PriceInclVat                | Retail price including vat                                                                                                              | Decimal          | Required                |
| SuggestedRetailPriceInclVat | Suggested retail price including VAT                                                                                                    | Decimal          | Optional                |
| DiscountPriceExclVat        | Discount price excluding vat                                                                                                            | Decimal          | Optional                |
| MinimumOrderQuantity        | Minimum order quantity                                                                                                                  | Positive Integer | Required                |
| BaseUnit                    | The base unit of the product, eg. ST, stuk, meter, etc.                                                                                 | Text             | Optional                |
| PriceUnit                   | The quantity on which price is based                                                                                                    | Decimal          | Optional                |
| DiscountMinimumQuantity     | The minimum quantity for which the discount will apply                                                                                  | Positive Integer | Optional                |
| Currency                    | Attribute on brutoPriceExclVat, PriceInclVat or DiscountPriceExclVat. Must contain the ISO 4217 3-letter currency code. Default is EUR. | Char\[3]         | Optional                |
