Esempio n. 1
0
def format_raw_value(row_value):
    if isinstance(row_value.value, Decimal):
        return currencyformat(row_value.value)
    return row_value.value
Esempio n. 2
0
def format_raw_value(row_value):
    if isinstance(row_value.value, Decimal):
        return currencyformat(row_value.value)
    return row_value.value
Esempio n. 3
0
 def render(cls, raw_value):
     return currencyformat(raw_value.value)