Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/locales.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cu/cu.go
diff options
context:
space:
mode:
Diffstat (limited to 'cu/cu.go')
-rw-r--r--cu/cu.go75
1 files changed, 75 insertions, 0 deletions
diff --git a/cu/cu.go b/cu/cu.go
index 491d3525..2ca09ca6 100644
--- a/cu/cu.go
+++ b/cu/cu.go
@@ -222,3 +222,78 @@ func (cu *cu) FmtCurrency(num float64, v uint64, currency currency.Type) []byte
return b
}
+
+// FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'cu'
+// 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 (cu *cu) FmtAccounting(num float64, v uint64, currency currency.Type) []byte {
+
+ s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
+ symbol := cu.currencies[currency]
+ l := len(s) + len(cu.decimal) + len(cu.group)*len(s[:len(s)-int(v)-1])/3
+ count := 0
+ inWhole := v == 0
+ b := make([]byte, 0, l)
+
+ for i := len(s) - 1; i >= 0; i-- {
+
+ if s[i] == '.' {
+ b = append(b, cu.decimal[0])
+ inWhole = true
+
+ continue
+ }
+
+ if inWhole {
+ if count == 3 {
+ for j := len(cu.group) - 1; j >= 0; j-- {
+ b = append(b, cu.group[j])
+ }
+
+ count = 1
+ } else {
+ count++
+ }
+ }
+
+ b = append(b, s[i])
+ }
+
+ if num < 0 {
+
+ b = append(b, cu.minus[0])
+
+ }
+
+ // 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 int(v) < 2 {
+
+ if v == 0 {
+ b = append(b, cu.decimal...)
+ }
+
+ for i := 0; i < 2-int(v); i++ {
+ b = append(b, '0')
+ }
+ }
+
+ if num < 0 {
+
+ b = append(b, cu.currencyNegativeSuffix...)
+
+ b = append(b, symbol...)
+
+ } else {
+
+ b = append(b, cu.currencyPositiveSuffix...)
+
+ b = append(b, symbol...)
+
+ }
+
+ return b
+}