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/lv_LV
diff options
context:
space:
mode:
authorjoeybloggs <Dean.Karn@gmail.com>2016-08-16 04:59:49 +0300
committerjoeybloggs <Dean.Karn@gmail.com>2016-08-16 04:59:49 +0300
commitaaa28727a7fc0cc7add5d60b31abfe62b983bedd (patch)
tree032798ba24e7ab36f7532d5ae66df80805029538 /lv_LV
parent5e30685010ab9c6da8cc729a3e7eab0b1ae964ae (diff)
add accounting currency formatting logic + function
Diffstat (limited to 'lv_LV')
-rw-r--r--lv_LV/lv_LV.go62
1 files changed, 61 insertions, 1 deletions
diff --git a/lv_LV/lv_LV.go b/lv_LV/lv_LV.go
index f7140397..0fedb12b 100644
--- a/lv_LV/lv_LV.go
+++ b/lv_LV/lv_LV.go
@@ -64,8 +64,8 @@ func (lv *lv_LV) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
n := math.Abs(num)
f := locales.F(n, v)
- nMod10 := math.Mod(n, 10)
nMod100 := math.Mod(n, 100)
+ nMod10 := math.Mod(n, 10)
fMod100 := f % 100
fMod10 := f % 10
@@ -240,3 +240,63 @@ func (lv *lv_LV) FmtCurrency(num float64, v uint64, currency currency.Type) []by
return b
}
+
+// FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'lv_LV'
+// 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 (lv *lv_LV) FmtAccounting(num float64, v uint64, currency currency.Type) []byte {
+
+ s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
+ symbol := lv.currencies[currency]
+ l := len(s) + len(lv.decimal)
+
+ b := make([]byte, 0, l)
+
+ for i := len(s) - 1; i >= 0; i-- {
+
+ if s[i] == '.' {
+ b = append(b, lv.decimal[0])
+ continue
+ }
+
+ b = append(b, s[i])
+ }
+
+ if num < 0 {
+
+ b = append(b, lv.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, lv.decimal...)
+ }
+
+ for i := 0; i < 2-int(v); i++ {
+ b = append(b, '0')
+ }
+ }
+
+ if num < 0 {
+
+ b = append(b, lv.currencyNegativeSuffix...)
+
+ b = append(b, symbol...)
+
+ } else {
+
+ b = append(b, lv.currencyPositiveSuffix...)
+
+ b = append(b, symbol...)
+
+ }
+
+ return b
+}