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