Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bd84ab4

Browse files
authored
feature #13387 Explanation note about minimum price in product variant creation form (TheMilek)
This PR was merged into the 1.11-dev branch. Discussion ---------- | Q | A | --------------- | ----- | Branch? | master <!-- see the comment below --> | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | License | MIT <!-- - Bug fixes must be submitted against the 1.10 branch - Features and deprecations must be submitted against the master branch - Make sure that the correct base branch is set To be sure you are not breaking any Backward Compatibilities, check the documentation: https://docs.sylius.com/en/latest/book/organization/backward-compatibility-promise.html --> You can find new note about minimum price here: ![Zrzut ekranu 2021-12-14 o 11 40 56](https://user-images.githubusercontent.com/53942444/145983067-22d162f1-5131-468c-aa19-c0e170275975.png) Commits ------- dd6c6e3 [ProductVariant] explanation note about minimum price in product variant creation form
2 parents 8006a45 + dd6c6e3 commit bd84ab4

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

src/Sylius/Bundle/AdminBundle/Resources/translations/messages.en.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ sylius:
5151
product:
5252
product_not_active_in_channel: The product is not yet activated in this channel.
5353
original_price_details: Original price - this is the price of the product variant It is displayed as crossed-out in the catalog. It is used as the base for current price calculations. If this value is not definded, Catalog Promotion logic will copy value from Price to Original Price.
54-
price_details: Price - this is the current price of the product variant displayed in the catalog. It can be modified explicitly by i.e. catalog promotions.
54+
price_details: Price - this is the current price of the product variant displayed in the catalog. It can be modified explicitly by i.e. catalog promotions.
55+
minimum_price_details: Minimum price - this is the pricing threshold below which the current price cannot be discounted by neither catalog nor cart promotions. Use this to guard the profitability of your sales.
5556
gateway:
5657
no_sca_support_notice: The chosen payment gateway does not support SCA.
5758
pay_pal_express_checkout_deprecation_notice: >

src/Sylius/Bundle/AdminBundle/Resources/views/ProductVariant/Tab/_channelPricings.html.twig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
{{ 'sylius.ui.price_details'|trans }}
55
<br/>
66
{{ 'sylius.ui.original_price_details'|trans }}
7+
<br/>
8+
{{ 'sylius.ui.minimum_price_details'|trans }}
79
</div>
810
<div id="sylius_product_variant_channelPricings">
911
{{ form_errors(form.channelPricings) }}

0 commit comments

Comments
 (0)