Back to blog
Engineering

Cash Receipt Tax Calculation: A Complete Guide

From mixed taxation to rounding rules — everything you need to know about cash receipt amount calculations.

Hecto Financial Engineering
2026-03-13
6 min read
#Cash Receipt#VAT#Supply Value#Tax Calculation
Cash Receipt Tax Calculation: A Complete Guide 썸네일 이미지

How Cash Receipt Amounts Are Structured

The amount displayed on a cash receipt breaks down into two components:

FieldDescription
Supply ValueThe base price of the goods or service
VAT (Value Added Tax)10% of the supply value

The formula: Total = Supply Value + VAT

NOTE

Developer Note

Many API integrations only require the total amount and let the system split it automatically. For accurate settlement reconciliation, though, it's best practice to store supply value and VAT as separate fields in your database.

What Is Mixed Taxation?

Mixed taxation applies when a single cart contains both taxable items (e.g., coffee) and tax-exempt items (e.g., books, unprocessed agricultural products).

TypeExamplesVAT AppliedNotes
TaxableManufactured goods, processed foodsYES (10%)Most general merchandise
Tax-ExemptBooks, water, agricultural produceNO (0%)No VAT at all

Here's a worked example. Customer purchases a taxable item for KRW 11,000 (VAT-inclusive) and a tax-exempt item for KRW 5,000:

Line ItemAmount
Tax-exempt supply valueKRW 5,000
Taxable supply valueKRW 10,000
VATKRW 1,000
Total paymentKRW 16,000

Rounding Rules

Tax calculations often produce fractional amounts — for example, KRW 10.9. The NTS cash receipt standard uses floor rounding (truncation) as the default.

  • Rule: Drop everything below the ones digit. Only whole Korean Won amounts are recognized.
  • Why: Prevents tiny rounding discrepancies, and ensures consumers aren't charged sub-won tax amounts.

Example with a supply value of KRW 9,111:

Line ItemAmount
Theoretical VATKRW 911.1
Actual issued VATKRW 911 (KRW 0.1 truncated)
Final totalKRW 10,022

Easy to Miss

  • Calculation order matters: Always derive the taxable supply value first using (total - exempt amount) / 1.1, then truncate the result before computing VAT. Reversing the order introduces off-by-one errors that break data consistency.

For the full parameter-level breakdown of amount calculation rules, check the cash receipt documentation.

Cash Receipt Docs →

💬

Need technical support?