Widget for Money values on Geraldo Reports

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

  1. Widget for DateTime values on Geraldo Reports by marinho 4 years, 1 month ago
  2. Vertical and Horizontal Line to geraldo report by lucmult 3 years ago
  3. Integer based MoneyField by Jay 3 years, 8 months ago
  4. Aggregation class "Sum" with Case by marinho 2 years, 10 months ago
  5. Javascript Chain Select Widget by ogo 4 years, 11 months ago

Comments

(Forgotten your password?)