all database switched to repository model. some other fixes and features

This commit is contained in:
2026-01-22 20:58:46 +03:00
parent 804d683f9e
commit 331f6854b6
14 changed files with 283 additions and 187 deletions

View File

@@ -102,3 +102,7 @@ func DecimalComma(d *decimal.Decimal) string {
exp := strings.Split(d.String(), ".")[1]
return BigComma(d.BigInt()) + "." + exp
}
func IntComma(i int) string {
return BigComma(big.NewInt(int64(i)))
}