@@ -25,7 +25,7 @@ class AbstractBasket(models.Model):
25
25
# - Frozen is for when a basket is in the process of being submitted
26
26
# and we need to prevent any changes to it.
27
27
OPEN , MERGED , SAVED , FROZEN , SUBMITTED = (
28
- "Open" , "Merged" , "Saved" , "Frozen" , "Submitted" )
28
+ "Open" , "Merged" , "Saved" , "Frozen" , "Submitted" )
29
29
STATUS_CHOICES = (
30
30
(OPEN , _ ("Open - currently active" )),
31
31
(MERGED , _ ("Merged - superceded by another basket" )),
@@ -677,17 +677,21 @@ def get_warning(self):
677
677
678
678
current_price_incl_tax = self .product .stockrecord .price_incl_tax
679
679
if current_price_incl_tax > self .price_incl_tax :
680
- return _ (
681
- u"The price of '%(product)s' has increased from %(old_price)s to %(new_price)s since you added it to your basket" ) % {
682
- 'product' : self .product .get_title (),
683
- 'old_price' : currency (self .price_incl_tax ),
684
- 'new_price' : currency (current_price_incl_tax )}
680
+ msg = ("The price of '%(product)s' has increased from "
681
+ "%(old_price)s to %(new_price)s since you added it "
682
+ "to your basket" )
683
+ return _ (msg ) % {
684
+ 'product' : self .product .get_title (),
685
+ 'old_price' : currency (self .price_incl_tax ),
686
+ 'new_price' : currency (current_price_incl_tax )}
685
687
if current_price_incl_tax < self .price_incl_tax :
686
- return _ (
687
- u"The price of '%(product)s' has decreased from %(old_price)s to %(new_price)s since you added it to your basket" ) % {
688
- 'product' : self .product .get_title (),
689
- 'old_price' : currency (self .price_incl_tax ),
690
- 'new_price' : currency (current_price_incl_tax )}
688
+ msg = ("The price of '%(product)s' has decreased from "
689
+ "%(old_price)s to %(new_price)s since you added it "
690
+ "to your basket" )
691
+ return _ (msg ) % {
692
+ 'product' : self .product .get_title (),
693
+ 'old_price' : currency (self .price_incl_tax ),
694
+ 'new_price' : currency (current_price_incl_tax )}
691
695
692
696
693
697
class AbstractLineAttribute (models .Model ):
0 commit comments