docs: general fixes and improvements (#13417)

This commit is contained in:
Shahed Nasser
2025-09-04 19:27:34 +03:00
committed by GitHub
parent 55a35e4721
commit 8785fb4e1a
5 changed files with 69 additions and 31 deletions
@@ -327,7 +327,7 @@ const priceSet = await pricingModuleService.createPriceSets({
}
```
- Original price selection: The fourth price in the price list is selected as the best price.
- Original price selection: The fourth price in the price set is selected as the best price.
- Calculated price selection: since there are no associated price lists, the calculated price is set to the original price.
</TabsContent>
@@ -403,7 +403,7 @@ const priceSet = await pricingModuleService.createPriceSets({
}
```
- Original price selection: the fifth price in the price list is selected as the best price because the cart item quantity is 200.
- Original price selection: the fifth price in the price set is selected as the best price because the cart item quantity is `200`.
- This is assuming the price set belongs to the cart item's variant.
- Calculated price selection: since there are no associated price lists, the calculated price is set to the original price.
@@ -494,7 +494,7 @@ const priceSet = await pricingModuleService.createPriceSets({
}
```
- Original price selection: The fourth price in the price list is selected as the best price.
- Original price selection: The fourth price in the price set is selected as the best price.
- Calculated price selection: The first price of the price list is selected as the best price.
</TabsContent>