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
diff options
context:
space:
mode:
Diffstat (limited to 'kam/kam.go')
-rw-r--r--kam/kam.go82
1 files changed, 82 insertions, 0 deletions
diff --git a/kam/kam.go b/kam/kam.go
index 927ebc05..badabe5f 100644
--- a/kam/kam.go
+++ b/kam/kam.go
@@ -160,3 +160,85 @@ func (kam *kam) FmtCurrency(num float64, v uint64, currency currency.Type) []byt
return b
}
+
+// FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'kam'
+// 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 (kam *kam) FmtAccounting(num float64, v uint64, currency currency.Type) []byte {
+
+ s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
+ symbol := kam.currencies[currency]
+ l := len(s) + len(kam.decimal) + len(kam.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] == '.' {
+ for j := len(kam.decimal) - 1; j >= 0; j-- {
+ b = append(b, kam.decimal[j])
+ }
+
+ inWhole = true
+
+ continue
+ }
+
+ if inWhole {
+ if count == 3 {
+ for j := len(kam.group) - 1; j >= 0; j-- {
+ b = append(b, kam.group[j])
+ }
+
+ count = 1
+ } else {
+ count++
+ }
+ }
+
+ b = append(b, s[i])
+ }
+
+ if num < 0 {
+
+ for j := len(symbol) - 1; j >= 0; j-- {
+ b = append(b, symbol[j])
+ }
+
+ for j := len(kam.currencyNegativePrefix) - 1; j >= 0; j-- {
+ b = append(b, kam.currencyNegativePrefix[j])
+ }
+
+ } 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 int(v) < 2 {
+
+ if v == 0 {
+ b = append(b, kam.decimal...)
+ }
+
+ for i := 0; i < 2-int(v); i++ {
+ b = append(b, '0')
+ }
+ }
+
+ if num < 0 {
+
+ b = append(b, kam.currencyNegativeSuffix...)
+
+ }
+
+ return b
+}