[POS-commit] r6368 - stoqlib/trunk/stoqlib/domain

Johan Dahlin jdahlin at async.com.br
Fri Apr 13 16:50:58 BRT 2007


Author: jdahlin
Date: Fri Apr 13 16:50:58 2007
New Revision: 6368

Modified:
   stoqlib/trunk/stoqlib/domain/sellable.py

Log:
Remove _inheritable markers, they're only used by InheritableModel subclasses

Modified: stoqlib/trunk/stoqlib/domain/sellable.py
==============================================================================
--- stoqlib/trunk/stoqlib/domain/sellable.py	(original)
+++ stoqlib/trunk/stoqlib/domain/sellable.py	Fri Apr 13 16:50:58 2007
@@ -218,7 +218,6 @@
 
 
 class OnSaleInfo(Domain):
-    _inheritable = False
     on_sale_price = PriceCol(default=0)
     on_sale_start_date = DateTimeCol(default=None)
     on_sale_end_date = DateTimeCol(default=None)
@@ -227,7 +226,6 @@
 class BaseSellableInfo(Domain):
     implements(IDescribable)
 
-    _inheritable = False
     price = PriceCol(default=0)
     description = UnicodeCol(default='')
     max_discount = DecimalCol(default=0)


More information about the POS-commit mailing list