Skip to content

Commit

Permalink
Fixing bug in position
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Kwiedor committed Dec 3, 2020
1 parent 9f161df commit 14a1815
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions position.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ type InvoicePositionObjects struct {
AccountEndDate string `json:"accountEndDate"`
Address string `json:"address"`
Currency string `json:"currency"`
SumNet int `json:"sumNet"`
SumTax int `json:"sumTax"`
SumGross int `json:"sumGross"`
SumNet float64 `json:"sumNet"`
SumTax float64 `json:"sumTax"`
SumGross float64 `json:"sumGross"`
SumDiscounts int `json:"sumDiscounts"`
SumNetForeignCurrency int `json:"sumNetForeignCurrency"`
SumTaxForeignCurrency int `json:"sumTaxForeignCurrency"`
Expand Down

0 comments on commit 14a1815

Please sign in to comment.