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 'cs_CZ/cs_CZ.go')
-rw-r--r--cs_CZ/cs_CZ.go80
1 files changed, 80 insertions, 0 deletions
diff --git a/cs_CZ/cs_CZ.go b/cs_CZ/cs_CZ.go
index bd3491bc..21ea930f 100644
--- a/cs_CZ/cs_CZ.go
+++ b/cs_CZ/cs_CZ.go
@@ -282,3 +282,83 @@ func (cs *cs_CZ) FmtCurrency(num float64, v uint64, currency currency.Type) []by
return b
}
+
+// FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'cs_CZ'
+// 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 (cs *cs_CZ) FmtAccounting(num float64, v uint64, currency currency.Type) []byte {
+
+ s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
+ symbol := cs.currencies[currency]
+ l := len(s) + len(cs.decimal) + len(cs.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(cs.decimal) - 1; j >= 0; j-- {
+ b = append(b, cs.decimal[j])
+ }
+
+ inWhole = true
+
+ continue
+ }
+
+ if inWhole {
+ if count == 3 {
+ for j := len(cs.group) - 1; j >= 0; j-- {
+ b = append(b, cs.group[j])
+ }
+
+ count = 1
+ } else {
+ count++
+ }
+ }
+
+ b = append(b, s[i])
+ }
+
+ if num < 0 {
+
+ for j := len(cs.minus) - 1; j >= 0; j-- {
+ b = append(b, cs.minus[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, cs.decimal...)
+ }
+
+ for i := 0; i < 2-int(v); i++ {
+ b = append(b, '0')
+ }
+ }
+
+ if num < 0 {
+
+ b = append(b, cs.currencyNegativeSuffix...)
+
+ b = append(b, symbol...)
+
+ } else {
+
+ b = append(b, cs.currencyPositiveSuffix...)
+
+ b = append(b, symbol...)
+
+ }
+
+ return b
+}