|
|
@@ -332,7 +332,10 @@ class AbstractProduct(models.Model):
|
|
332
|
332
|
#: Determines if a product may be used in an offer. It is illegal to
|
|
333
|
333
|
#: discount some types of product (e.g. ebooks) and this field helps
|
|
334
|
334
|
#: merchants from avoiding discounting such products
|
|
335
|
|
- is_discountable = models.BooleanField(_("Is Discountable"), default=True)
|
|
|
335
|
+ is_discountable = models.BooleanField(
|
|
|
336
|
+ _("Is discountable?"), default=True, help_text=(
|
|
|
337
|
+ "This flag indicates if this product can be used in an offer "
|
|
|
338
|
+ "or not"))
|
|
336
|
339
|
|
|
337
|
340
|
objects = ProductManager()
|
|
338
|
341
|
browsable = BrowsableProductManager()
|