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