Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OrderItem-specific VAT IDs #225

Open
nickevansuk opened this issue Jan 29, 2022 · 0 comments
Open

OrderItem-specific VAT IDs #225

nickevansuk opened this issue Jan 29, 2022 · 0 comments
Labels
CR3 Issues relating to CR3

Comments

@nickevansuk
Copy link
Contributor

Proposer

Everyone Active

Use Case

There are cases where different items on the receipt can have different VAT IDs.

Proposal

The different VAT IDs should be treated as separate TaxChargeSpecifications, and then totalled separately as part of totalPaymentTax to allow the totals for each VAT ID to be clearly displayed on the receipt.

The vatID property can be applied to the TaxChargeSpecification to allow the default vatID in the Organization to be overridden.

Example

  "unitTaxSpecification": [
    {
      "@type": "TaxChargeSpecification",
      "name": "VAT at 20%",
      "price": 0,
      "priceCurrency": "GBP",
      "rate": 0.2,
      "vatID": "GB12345678"
    }
  ]
  "totalPaymentTax": [
    {
      "@type": "TaxChargeSpecification",
      "name": "VAT at 20%",
      "price": 0,
      "priceCurrency": "GBP",
      "rate": 0.2,
      "vatID": "GB12345678"
    }
  ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CR3 Issues relating to CR3
Development

No branches or pull requests

1 participant