From aaa28727a7fc0cc7add5d60b31abfe62b983bedd Mon Sep 17 00:00:00 2001 From: joeybloggs Date: Mon, 15 Aug 2016 21:59:49 -0400 Subject: add accounting currency formatting logic + function --- zh_Hant_HK/zh_Hant_HK.go | 55 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) (limited to 'zh_Hant_HK') diff --git a/zh_Hant_HK/zh_Hant_HK.go b/zh_Hant_HK/zh_Hant_HK.go index 6ac9f97c..772a94c4 100644 --- a/zh_Hant_HK/zh_Hant_HK.go +++ b/zh_Hant_HK/zh_Hant_HK.go @@ -191,3 +191,58 @@ func (zh *zh_Hant_HK) FmtCurrency(num float64, v uint64, currency currency.Type) return b } + +// FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'zh_Hant_HK' +// in accounting notation. returned as a []byte just in case the caller wishes to add more and can help +// avoid allocations; otherwise just cast as string. +func (zh *zh_Hant_HK) FmtAccounting(num float64, v uint64, currency currency.Type) []byte { + + s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64) + symbol := zh.currencies[currency] + l := len(s) + len(zh.decimal) + + b := make([]byte, 0, l) + + for i := len(s) - 1; i >= 0; i-- { + + if s[i] == '.' { + b = append(b, zh.decimal[0]) + continue + } + + b = append(b, s[i]) + } + + if num < 0 { + + for j := len(symbol) - 1; j >= 0; j-- { + b = append(b, symbol[j]) + } + + b = append(b, zh.minus[0]) + + } else { + + for j := len(symbol) - 1; j >= 0; j-- { + b = append(b, symbol[j]) + } + + } + + // reverse + for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 { + b[i], b[j] = b[j], b[i] + } + + if num < 0 { + + b = append(b, zh.currencyNegativeSuffix...) + + } else { + + b = append(b, zh.currencyPositiveSuffix...) + + } + + return b +} -- cgit v1.2.3