Skip to content

Commit

Permalink
Merge pull request #76 from jjideenschmiede/development
Browse files Browse the repository at this point in the history
feat: Add new field for vat id.
  • Loading branch information
gowizzard authored Nov 14, 2024
2 parents 50bc90a + 4b03b17 commit 6443190
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions orders.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ type AddOrderBody struct {
NoShippingCalc string
ShippingGroup string
DoNotDisplayVat string
VatId string
PaymentMethod string
PaymentFunctionId string
VMemo string
Expand Down Expand Up @@ -187,6 +188,7 @@ func AddOrder(body AddOrderBody) (AddOrderReturn, error) {
parameter.Add("NoVersandCalc", body.NoShippingCalc)
parameter.Add("Versandgruppe", body.ShippingGroup)
parameter.Add("MwStNichtAusweisen", body.DoNotDisplayVat)
parameter.Add("USStID", body.VatId)
parameter.Add("Zahlart", body.PaymentMethod)
parameter.Add("ZFunktionsID", body.PaymentFunctionId)
parameter.Add("VMemo", body.VMemo)
Expand Down

0 comments on commit 6443190

Please sign in to comment.