전자결제 과세 / 비과세 사업자 결제모듈 적용 방법
페이지 정보
본문
전자결제대행사(PG)에 따라서 과세와 비과세를 처리하는 방법이 다릅니다.
1. LG텔레콤
아이디 생성할때 과세사업자와 비과세사업자가 고정되어, 필요에 따라서 상점아이디와 mertkey 를 호출합니다.
2. KG이니시스
가입할때 과세/비과세가 모두 필요하다고 계약하면 "부가세업체정함" 설정업체로 계약을 합니다.
결제모듈 적용할때 금액옵션에 tax 와 taxfree 를 정해서 추가합니다.
한가지로만 계약하는 경우에는 아래 옵션을 추가하지 않아도 상관없습니다.
tax (부과세)
. 형식 : 숫자만 입력
. 대상 : '부가세업체정함' 설정업체에 한함
. 주의 : 전체금액의 10%이하로 설정
가맹점에서 등록시 VAT가 총 상품가격의 10% 초과할 경우는 거절됨
taxfree (비과세)
. 형식 : 숫자만 입력
. 대상 : '부가세업체정함' 설정업체에 한함
. 주의 : 과세되지 않는 금액
2-1. PC 결제모듈일때
<?php
// 과세상품일때
$price = "결제금액";
$taxfree = 0;
$tax = $price - floor($price/1.1); // 부가세 : 소수점을 버림
?>
상품가격: <input type="text" name="price" readonly value="<?php echo $price; ?>" >
<input type="hidden" name="taxfree" value="<?php echo $taxfree; ?>" >
(10% 부가세: <input type="text" name="tax" readonly value="<?php echo $tax; ?>" >)
<?php
// 비과세 상품일때
$price = "결제금액";
$taxfree = $price;
$tax = 0; // 부가세
?>
상품가격: <input type="text" name="price" readonly value="<?php echo $price; ?>" >
(비과세금액: <input type="text" name="taxfree" readonly value="<?php echo $taxfree; ?>" >)
<input type="hidden" name="tax" value="<?php echo $tax; ?>" >
2-1. 모바일 결제모듈일때
<?php
// 과세상품
$taxfree = 0;
$tax = $price - floor($price/1.1); // 부가세 : 소수점을 버림
?>
상품가격: <input type="text" name="P_AMT" readonly value="<?php echo $price ?>">
<input type="hidden" name="P_TAXFREE" readonly value="<?php echo $taxfree; ?>" >
(10% 부가세: <input type="text" name="P_TAX" readonly value="<?php echo $tax; ?>" >
<?php
// 비과세 상품일때
$price = "결제금액";
$taxfree = $price;
$tax = 0; // 부가세
?>
상품가격: <input type="text" name="P_AMT" readonly value="<?php echo $price ?>">
(비과세금액: <input type="hidden" name="P_TAXFREE" readonly value="<?php echo $taxfree; ?>" >)
<input type="hidden" name="P_TAX" readonly value="<?php echo $tax; ?>" >
3. KCP
사례를 경험하지 못해서 내용이 없습니다.
1. LG텔레콤
아이디 생성할때 과세사업자와 비과세사업자가 고정되어, 필요에 따라서 상점아이디와 mertkey 를 호출합니다.
2. KG이니시스
가입할때 과세/비과세가 모두 필요하다고 계약하면 "부가세업체정함" 설정업체로 계약을 합니다.
결제모듈 적용할때 금액옵션에 tax 와 taxfree 를 정해서 추가합니다.
한가지로만 계약하는 경우에는 아래 옵션을 추가하지 않아도 상관없습니다.
tax (부과세)
. 형식 : 숫자만 입력
. 대상 : '부가세업체정함' 설정업체에 한함
. 주의 : 전체금액의 10%이하로 설정
가맹점에서 등록시 VAT가 총 상품가격의 10% 초과할 경우는 거절됨
taxfree (비과세)
. 형식 : 숫자만 입력
. 대상 : '부가세업체정함' 설정업체에 한함
. 주의 : 과세되지 않는 금액
2-1. PC 결제모듈일때
<?php
// 과세상품일때
$price = "결제금액";
$taxfree = 0;
$tax = $price - floor($price/1.1); // 부가세 : 소수점을 버림
?>
상품가격: <input type="text" name="price" readonly value="<?php echo $price; ?>" >
<input type="hidden" name="taxfree" value="<?php echo $taxfree; ?>" >
(10% 부가세: <input type="text" name="tax" readonly value="<?php echo $tax; ?>" >)
<?php
// 비과세 상품일때
$price = "결제금액";
$taxfree = $price;
$tax = 0; // 부가세
?>
상품가격: <input type="text" name="price" readonly value="<?php echo $price; ?>" >
(비과세금액: <input type="text" name="taxfree" readonly value="<?php echo $taxfree; ?>" >)
<input type="hidden" name="tax" value="<?php echo $tax; ?>" >
2-1. 모바일 결제모듈일때
<?php
// 과세상품
$taxfree = 0;
$tax = $price - floor($price/1.1); // 부가세 : 소수점을 버림
?>
상품가격: <input type="text" name="P_AMT" readonly value="<?php echo $price ?>">
<input type="hidden" name="P_TAXFREE" readonly value="<?php echo $taxfree; ?>" >
(10% 부가세: <input type="text" name="P_TAX" readonly value="<?php echo $tax; ?>" >
<?php
// 비과세 상품일때
$price = "결제금액";
$taxfree = $price;
$tax = 0; // 부가세
?>
상품가격: <input type="text" name="P_AMT" readonly value="<?php echo $price ?>">
(비과세금액: <input type="hidden" name="P_TAXFREE" readonly value="<?php echo $taxfree; ?>" >)
<input type="hidden" name="P_TAX" readonly value="<?php echo $tax; ?>" >
3. KCP
사례를 경험하지 못해서 내용이 없습니다.
댓글목록
등록된 댓글이 없습니다.