개인결제 내역이 존재하지 않습니다.

'); $goods_name = $od['pp_name'].'님 개인결제'; $amt_tot = (int)$od['pp_receipt_price']; $dir = $od['pp_pg']; $od_name = $od['pp_name']; $od_email = get_text($od['pp_email']); $od_tel = get_text($od['pp_hp']); $amt_tot = (int)$od['pp_receipt_price']; $amt_sup = (int)round(($amt_tot * 10) / 11); $amt_svc = 0; $amt_tax = (int)($amt_tot - $amt_sup); } else { $od = sql_fetch(" select * from {$g5['g5_shop_order_table']} where od_id = '$od_id' "); if (!$od) die('

주문서가 존재하지 않습니다.

'); if ( ! $is_admin && ! (shop_is_taxsave($od)) ){ die('해당 주문은 현금영수증을 발급할수 없습니다.'); } $goods = get_goods($od['od_id']); $goods_name = $goods['full_name']; $amt_tot = (int)($od['od_receipt_price'] - $od['od_refund_price']); $dir = $od['od_pg']; $od_name = $od['od_name']; $od_email = get_text($od['od_email']); $od_tel = get_text($od['od_tel']); $amt_tot = (int)$od['od_tax_mny'] + (int)$od['od_vat_mny'] + (int)$od['od_free_mny']; $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"); // 신청폼 if(!$dir) $dir = $default['de_pg_service']; include_once(G5_SHOP_PATH.'/'.$dir.'/taxsave_form.php'); include_once(G5_PATH.'/tail.sub.php');