Remove income category from result
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
@ -25,6 +25,13 @@ func FromInt64WithExp(value int64, exp int32) Numeric {
|
||||
return Numeric{Numeric: pgtype.Numeric{Int: big.NewInt(value), Exp: exp, Status: pgtype.Present}}
|
||||
}
|
||||
|
||||
func (n *Numeric) SetZero() {
|
||||
n.Exp = 0
|
||||
n.Int = big.NewInt(0)
|
||||
n.Status = pgtype.Present
|
||||
n.NaN = false
|
||||
}
|
||||
|
||||
func (n Numeric) GetFloat64() float64 {
|
||||
if n.Status != pgtype.Present {
|
||||
return 0
|
||||
|
Reference in New Issue
Block a user