better description for CROSS_SELLING_CONDITION=discounts

This commit is contained in:
Mira Weller
2024-10-02 09:31:59 +02:00
parent d4f997c345
commit 7d6b2d6df8
2 changed files with 5 additions and 5 deletions

View File

@@ -123,7 +123,7 @@ class ItemCategory(LoggedModel):
CROSS_SELLING_CONDITION = (
('always', _('Always show in cross-selling step')),
('products', _('Only if the cart contains one of these products')),
('discounts', _('Only show products affected by discount rules')),
('discounts', _('Only show products that qualify for a discount according to discount rules')),
)
cross_selling_condition = models.CharField(
verbose_name=_("Cross-selling condition"),