나이스페이 결제수단 추가

This commit is contained in:
thisgun
2024-04-03 10:42:04 +09:00
parent baa114c471
commit 84669cb47f
53 changed files with 2403 additions and 65 deletions

View File

@ -48,6 +48,12 @@ if($tx == 'personalpay') {
$amt_sup = (int)$od['od_tax_mny'] + (int)$od['od_free_mny'];
$amt_tax = (int)$od['od_vat_mny'];
$amt_svc = 0;
$amt_free = 0;
if ($od['od_pg'] === 'nicepay') {
$amt_sup = (int)$od['od_tax_mny'];
$amt_free = (int)$od['od_free_mny'];
}
}
$trad_time = date("YmdHis");