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