> For the complete documentation index, see [llms.txt](https://docs.solutioo.de/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.solutioo.de/shopware/shopware6_en_us/price-and-inventory-management/price-upload-without-duplicates.md).

# Price Upload Without Duplicates

The price upload has been designed so that **no duplicate prices** are created in Shopware when price periods change.

**Web-ID inheritance (PATCH instead of POST)**

* Prices that have already been uploaded have a **Web-ID**.
* When a price changes, this Web-ID is reused and the price is **updated via PATCH** instead of creating a new record via **POST**.
* As a result, **no duplicates** are created during the transition between price periods.

**Currency safety**

The price upload uses the **currency** that is marked as the default in the mapping. This avoids confusion between different currencies. See [Currencies](/shopware/shopware6_en_us/configuration/currencies.md).

**Forced re-upload**

If you deliberately want to transfer prices again, mark the affected lines as **not synchronized** (for example, using *Mark lines as unsynchronized* or *Mark all prices as unsynchronized*). They will be uploaded again during the next run.

{% hint style="info" %}
In addition, actions such as *Upload latest prices (force)* and *Delete all Shopware prices* are available.
{% endhint %}

### Frequently Asked Questions

#### How does the connector prevent duplicate prices in Shopware?

Price lines are matched by their “SOUSHW Web ID” (Shopware product-price ID) and updated instead of being created anew. In addition, the `NewPriceExists()` check detects overlapping tiers based on the starting and ending date. Lines that have expired or are flagged as “Marked Delete” are found via `search/product-price` and removed with DELETE.

#### What does “Delete Orphan Prices” do?

This action removes orphaned Shopware prices for which no matching price line exists in Business Central anymore. This keeps the prices in Shopware consistent and prevents conflicts caused by legacy data.

#### How many prices are transferred per API call?

The package size is controlled by the “Price API Limit” field (default 1). Product prices are transferred in bulk packages of this size via `Upload_RuleWithBulkPrice` – with large price volumes, a higher value can reduce the number of API calls.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.solutioo.de/shopware/shopware6_en_us/price-and-inventory-management/price-upload-without-duplicates.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
