1 2 3 4 5 6 7 8 9 | class DecimalObjectValue(ObjectValue):
format = '%0.02f'
def get_object_value(self, instance=None):
value = super(DecimalObjectValue, self).get_object_value(instance)
if not value:
value = 0
return self.format%value
|
More like this
- Widget for DateTime values on Geraldo Reports by marinho 4 years, 1 month ago
- Vertical and Horizontal Line to geraldo report by lucmult 3 years ago
- Integer based MoneyField by Jay 3 years, 8 months ago
- Aggregation class "Sum" with Case by marinho 2 years, 10 months ago
- Javascript Chain Select Widget by ogo 4 years, 11 months ago
Comments