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 --- pa_Arab/pa_Arab.go | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) (limited to 'pa_Arab/pa_Arab.go') diff --git a/pa_Arab/pa_Arab.go b/pa_Arab/pa_Arab.go index eb4d93da..38d14995 100644 --- a/pa_Arab/pa_Arab.go +++ b/pa_Arab/pa_Arab.go @@ -241,3 +241,71 @@ func (pa *pa_Arab) FmtCurrency(num float64, v uint64, currency currency.Type) [] return b } + +// FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'pa_Arab' +// 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 (pa *pa_Arab) FmtAccounting(num float64, v uint64, currency currency.Type) []byte { + + s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64) + symbol := pa.currencies[currency] + l := len(s) + len(pa.decimal) + + b := make([]byte, 0, l) + + for i := len(s) - 1; i >= 0; i-- { + + if s[i] == '.' { + for j := len(pa.decimal) - 1; j >= 0; j-- { + b = append(b, pa.decimal[j]) + } + + continue + } + + b = append(b, s[i]) + } + + if num < 0 { + + for j := len(symbol) - 1; j >= 0; j-- { + b = append(b, symbol[j]) + } + + for j := len(pa.currencyNegativePrefix) - 1; j >= 0; j-- { + b = append(b, pa.currencyNegativePrefix[j]) + } + + for j := len(pa.minus) - 1; j >= 0; j-- { + b = append(b, pa.minus[j]) + } + + } else { + + for j := len(symbol) - 1; j >= 0; j-- { + b = append(b, symbol[j]) + } + + for j := len(pa.currencyPositivePrefix) - 1; j >= 0; j-- { + b = append(b, pa.currencyPositivePrefix[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, pa.currencyNegativeSuffix...) + + } else { + + b = append(b, pa.currencyPositiveSuffix...) + + } + + return b +} -- cgit v1.2.3