936 lines
46 KiB
PHP
936 lines
46 KiB
PHP
<?php
|
|
$sub_menu = '400400';
|
|
include_once('./_common.php');
|
|
|
|
$cart_title3 = '주문번호';
|
|
$cart_title4 = '배송완료';
|
|
|
|
auth_check($auth[$sub_menu], "w");
|
|
|
|
$g5['title'] = "주문 내역 수정";
|
|
include_once(G5_ADMIN_PATH.'/admin.head.php');
|
|
|
|
//------------------------------------------------------------------------------
|
|
// 설정 시간이 지난 주문서 없는 장바구니 자료 삭제
|
|
//------------------------------------------------------------------------------
|
|
$keep_term = $default['de_cart_keep_term'];
|
|
if (!$keep_term) $keep_term = 15; // 기본값 15일
|
|
$beforetime = date('Y-m-d H:i:s', ( G5_SERVER_TIME - (86400 * ($keep_term - 1)) ) );
|
|
$sql = " delete from {$g5['g5_shop_cart_table']} where ct_status = '쇼핑' and ct_time <= '$beforetime' ";
|
|
sql_query($sql);
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
// 완료된 주문에 포인트를 적립한다.
|
|
save_order_point("완료");
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
// 주문서 정보
|
|
//------------------------------------------------------------------------------
|
|
$sql = " select * from {$g5['g5_shop_order_table']} where od_id = '$od_id' ";
|
|
$od = sql_fetch($sql);
|
|
if (!$od['od_id']) {
|
|
alert("해당 주문번호로 주문서가 존재하지 않습니다.");
|
|
}
|
|
|
|
$od['mb_id'] = $od['mb_id'] ? $od['mb_id'] : "비회원";
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
$pg_anchor = '<ul class="anchor">
|
|
<li><a href="#anc_sodr_list">주문상품 목록</a></li>
|
|
<li><a href="#anc_sodr_pay">주문결제 내역</a></li>
|
|
<li><a href="#anc_sodr_chk">결제상세정보 확인</a></li>
|
|
<li><a href="#anc_sodr_paymo">결제상세정보 수정</a></li>
|
|
<li><a href="#anc_sodr_memo">상점메모</a></li>
|
|
<li><a href="#anc_sodr_payer">주문하신 분</a></li>
|
|
<li><a href="#anc_sodr_addressee">받으시는 분</a></li>
|
|
</ul>';
|
|
|
|
$html_receipt_chk = '<input type="checkbox" id="od_receipt_chk" value="'.$od['od_misu'].'" onclick="chk_receipt_price()">
|
|
<label for="od_receipt_chk">결제금액 입력</label><br>';
|
|
|
|
$qstr = "sort1=$sort1&sort2=$sort2&sel_field=$sel_field&search=$search&page=$page";
|
|
|
|
// 상품목록
|
|
$sql = " select it_id,
|
|
it_name,
|
|
cp_price,
|
|
ct_notax
|
|
from {$g5['g5_shop_cart_table']}
|
|
where od_id = '{$od['od_id']}'
|
|
group by it_id
|
|
order by ct_id ";
|
|
$result = sql_query($sql);
|
|
?>
|
|
|
|
<section id="anc_sodr_list">
|
|
<h2 class="h2_frm">주문상품 목록</h2>
|
|
<?php echo $pg_anchor; ?>
|
|
<div class="local_desc02 local_desc">
|
|
<p>
|
|
현재 주문상태 <strong><?php echo $od['od_status'] ?></strong>
|
|
|
|
|
주문일시 <strong><?php echo substr($od['od_time'],0,16); ?> (<?php echo get_yoil($od['od_time']); ?>)</strong>
|
|
|
|
|
주문총액 <strong><?php echo number_format($od['od_cart_price'] + $od['od_send_cost'] + $od['od_send_cost2']); ?></strong>원
|
|
</p>
|
|
<?php if ($default['de_hope_date_use']) { ?><p>희망배송일은 <?php echo $od['od_hope_date']; ?> (<?php echo get_yoil($od['od_hope_date']); ?>) 입니다.</p><?php } ?>
|
|
<?php if($od['od_mobile']) { ?>
|
|
<p>모바일 쇼핑몰의 주문입니다.</p>
|
|
<?php } ?>
|
|
</div>
|
|
|
|
<form name="frmorderform" method="post" action="./orderformcartupdate.php" onsubmit="return form_submit(this);">
|
|
<input type="hidden" name="od_id" value="<?php echo $od_id; ?>">
|
|
<input type="hidden" name="mb_id" value="<?php echo $od['mb_id']; ?>">
|
|
<input type="hidden" name="od_email" value="<?php echo $od['od_email']; ?>">
|
|
<input type="hidden" name="sort1" value="<?php echo $sort1; ?>">
|
|
<input type="hidden" name="sort2" value="<?php echo $sort2; ?>">
|
|
<input type="hidden" name="sel_field" value="<?php echo $sel_field; ?>">
|
|
<input type="hidden" name="search" value="<?php echo $search; ?>">
|
|
<input type="hidden" name="page" value="<?php echo $page;?>">
|
|
|
|
<div class="tbl_head01 tbl_wrap">
|
|
|
|
<table>
|
|
<caption>주문 상품 목록</caption>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">상품명</th>
|
|
<th scope="col">
|
|
<label for="sit_select_all" class="sound_only">주문 상품 전체</label>
|
|
<input type="checkbox" id="sit_select_all">
|
|
</th>
|
|
<th scope="col">옵션항목</th>
|
|
<th scope="col">상태</th>
|
|
<th scope="col">수량</th>
|
|
<th scope="col">판매가</th>
|
|
<th scope="col">소계</th>
|
|
<th scope="col">쿠폰</th>
|
|
<th scope="col">포인트</th>
|
|
<th scope="col">배송비</th>
|
|
<th scope="col">포인트반영</th>
|
|
<th scope="col">재고반영</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$chk_cnt = 0;
|
|
for($i=0; $row=sql_fetch_array($result); $i++) {
|
|
// 상품이미지
|
|
$image = get_it_image($row['it_id'], 50, 50);
|
|
|
|
// 상품의 옵션정보
|
|
$sql = " select ct_id, it_id, ct_price, ct_point, ct_qty, ct_option, ct_status, cp_price, ct_stock_use, ct_point_use, ct_send_cost, io_type, io_price
|
|
from {$g5['g5_shop_cart_table']}
|
|
where od_id = '{$od['od_id']}'
|
|
and it_id = '{$row['it_id']}'
|
|
order by io_type asc, ct_id asc ";
|
|
$res = sql_query($sql);
|
|
$rowspan = mysql_num_rows($res);
|
|
|
|
for($k=0; $opt=sql_fetch_array($res); $k++) {
|
|
if($opt['io_type'])
|
|
$opt_price = $opt['io_price'];
|
|
else
|
|
$opt_price = $opt['ct_price'] + $opt['io_price'];
|
|
|
|
// 소계
|
|
$ct_price['stotal'] = $opt_price * $opt['ct_qty'];
|
|
$ct_point['stotal'] = $opt['ct_point'] * $opt['ct_qty'];
|
|
?>
|
|
<tr>
|
|
<?php if($k == 0) { ?>
|
|
<td rowspan="<?php echo $rowspan; ?>">
|
|
<a href="./itemform.php?w=u&it_id=<?php echo $row['it_id']; ?>"><?php echo $image; ?> <?php echo stripslashes($row['it_name']); ?></a>
|
|
<?php if($od['od_tax_flag'] && $row['ct_notax']) echo '[비과세상품]'; ?>
|
|
</td>
|
|
<td rowspan="<?php echo $rowspan; ?>" class="td_chk">
|
|
<label for="sit_sel_<?php echo $i; ?>" class="sound_only"><?php echo $row['it_name']; ?> 옵션 전체선택</label>
|
|
<input type="checkbox" id="sit_sel_<?php echo $i; ?>" name="it_sel[]">
|
|
</td>
|
|
<?php } ?>
|
|
<td>
|
|
<label for="ct_opt_chk_<?php echo $chk_cnt; ?>" class="sound_only"><?php echo $opt['ct_option']; ?></label>
|
|
<input type="checkbox" name="ct_chk[<?php echo $chk_cnt; ?>]" id="ct_chk_<?php echo $chk_cnt; ?>" value="<?php echo $chk_cnt; ?>" class="sct_sel_<?php echo $i; ?>">
|
|
<input type="hidden" name="ct_id[<?php echo $chk_cnt; ?>]" value="<?php echo $opt['ct_id']; ?>">
|
|
<?php echo $opt['ct_option']; ?>
|
|
</td>
|
|
<td class="td_mngsmall"><?php echo $opt['ct_status']; ?></td>
|
|
<td class="td_num">
|
|
<label for="ct_qty_<?php echo $chk_cnt; ?>" class="sound_only"><?php echo $opt['ct_option']; ?> 수량</label>
|
|
<input type="text" name="ct_qty[<?php echo $chk_cnt; ?>]" id="ct_qty_<?php echo $chk_cnt; ?>" value="<?php echo $opt['ct_qty']; ?>" required class="frm_input required" size="5">
|
|
</td>
|
|
<td class="td_num"><?php echo number_format($opt_price); ?></td>
|
|
<td class="td_num"><?php echo number_format($ct_price['stotal']); ?></td>
|
|
<td class="td_num"><?php echo number_format($opt['cp_price']); ?></td>
|
|
<td class="td_num"><?php echo number_format($ct_point['stotal']); ?></td>
|
|
<td class="td_sendcost_by"><?php echo $opt['ct_send_cost'] ? '착불' : '선불'; ?></td>
|
|
<td class="td_mngsmall"><?php echo get_yn($opt['ct_point_use']); ?></td>
|
|
<td class="td_mngsmall"><?php echo get_yn($opt['ct_stock_use']); ?></td>
|
|
</tr>
|
|
<?php
|
|
$chk_cnt++;
|
|
}
|
|
?>
|
|
<?php
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<div class="btn_list02 btn_list">
|
|
<p>
|
|
<input type="hidden" name="chk_cnt" value="<?php echo $chk_cnt; ?>">
|
|
<strong>주문 및 장바구니 상태 변경</strong>
|
|
<input type="submit" name="ct_status" value="주문" onclick="document.pressed=this.value">
|
|
<input type="submit" name="ct_status" value="입금" onclick="document.pressed=this.value">
|
|
<input type="submit" name="ct_status" value="준비" onclick="document.pressed=this.value">
|
|
<input type="submit" name="ct_status" value="배송" onclick="document.pressed=this.value">
|
|
<input type="submit" name="ct_status" value="완료" onclick="document.pressed=this.value">
|
|
<input type="submit" name="ct_status" value="취소" onclick="document.pressed=this.value">
|
|
<input type="submit" name="ct_status" value="반품" onclick="document.pressed=this.value">
|
|
<input type="submit" name="ct_status" value="품절" onclick="document.pressed=this.value">
|
|
</p>
|
|
</div>
|
|
|
|
<div class="local_desc01 local_desc">
|
|
<p>주문, 입금, 준비, 배송, 완료는 장바구니와 주문서 상태를 모두 변경하지만, 취소, 반품, 품절은 장바구니의 상태만 변경하며, 주문서 상태는 변경하지 않습니다.</p>
|
|
<p>개별적인(이곳에서의) 상태 변경은 모든 작업을 수동으로 처리합니다. 예를 들어 주문에서 입금으로 상태 변경시 입금액(결제금액)을 포함한 모든 정보는 수동 입력으로 처리하셔야 합니다.</p>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<?php if ($od['od_mod_history']) { ?>
|
|
<section id="sodr_qty_log">
|
|
<h3>상품 수량변경 내역</h3>
|
|
<div>
|
|
<?php echo conv_content($od['od_mod_history'], 0); ?>
|
|
</div>
|
|
</section>
|
|
<?php } ?>
|
|
|
|
</section>
|
|
|
|
<section id="anc_sodr_pay">
|
|
<h2 class="h2_frm">주문결제 내역</h2>
|
|
<?php echo $pg_anchor; ?>
|
|
|
|
<?php
|
|
// 주문금액 = 상품구입금액 + 배송비 + 추가배송비
|
|
$amount['order'] = $od['od_cart_price'] + $od['od_send_cost'] + $od['od_send_cost2'];
|
|
|
|
// 입금액 = 결제금액 + 포인트
|
|
$amount['receipt'] = $od['od_receipt_price'] + $od['od_receipt_point'];
|
|
|
|
// 쿠폰금액
|
|
$amount['coupon'] = $od['od_cart_coupon'] + $od['od_coupon'] + $od['od_send_coupon'];
|
|
|
|
// 취소금액
|
|
$amount['cancel'] = $od['od_cancel_price'];
|
|
|
|
// 미수금 = 주문금액 - 취소금액 - 입금금액 - 쿠폰금액
|
|
//$amount['미수'] = $amount['order'] - $amount['receipt'] - $amount['coupon'];
|
|
|
|
// 결제방법
|
|
$s_receipt_way = $od['od_settle_case'];
|
|
|
|
if ($od['od_receipt_point'] > 0)
|
|
$s_receipt_way .= "+포인트";
|
|
?>
|
|
|
|
<div class="tbl_head01 tbl_wrap">
|
|
<strong class="sodr_nonpay">미수금 <?php echo display_price($od['od_misu']); ?></strong>
|
|
|
|
<table>
|
|
<caption>주문결제 내역</caption>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">주문번호</th>
|
|
<th scope="col">결제방법</th>
|
|
<th scope="col">주문총액</th>
|
|
<th scope="col">배송비</th>
|
|
<th scope="col">포인트결제</th>
|
|
<th scope="col">총결제액</th>
|
|
<th scope="col">쿠폰</th>
|
|
<th scope="col">주문취소</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><?php echo $od['od_id']; ?></td>
|
|
<td class="td_paybybig"><?php echo $s_receipt_way; ?></td>
|
|
<td class="td_numbig td_numsum"><?php echo display_price($amount['order']); ?></td>
|
|
<td class="td_numbig"><?php echo display_price($od['od_send_cost'] + $od['od_send_cost2']); ?></td>
|
|
<td class="td_numbig"><?php echo display_point($od['od_receipt_point']); ?></td>
|
|
<td class="td_numbig td_numincome"><?php echo number_format($amount['receipt']); ?>원</td>
|
|
<td class="td_numbig td_numcoupon"><?php echo display_price($amount['coupon']); ?></td>
|
|
<td class="td_numbig td_numcancel"><?php echo number_format($amount['cancel']); ?>원</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="">
|
|
<h2 class="h2_frm">결제상세정보</h2>
|
|
<?php echo $pg_anchor; ?>
|
|
|
|
<form name="frmorderreceiptform" action="./orderformreceiptupdate.php" method="post" autocomplete="off">
|
|
<input type="hidden" name="od_id" value="<?php echo $od_id; ?>">
|
|
<input type="hidden" name="sort1" value="<?php echo $sort1; ?>">
|
|
<input type="hidden" name="sort2" value="<?php echo $sort2; ?>">
|
|
<input type="hidden" name="sel_field" value="<?php echo $sel_field; ?>">
|
|
<input type="hidden" name="search" value="<?php echo $search; ?>">
|
|
<input type="hidden" name="page" value="<?php echo $page; ?>">
|
|
<input type="hidden" name="od_name" value="<?php echo $od['od_name']; ?>">
|
|
<input type="hidden" name="od_hp" value="<?php echo $od['od_hp']; ?>">
|
|
<input type="hidden" name="od_tno" value="<?php echo $od['od_tno']; ?>">
|
|
<input type="hidden" name="od_escrow" value="<?php echo $od['od_escrow']; ?>">
|
|
|
|
<div class="compare_wrap">
|
|
|
|
<section id="anc_sodr_chk" class="compare_left">
|
|
<h3>결제상세정보 확인</h3>
|
|
|
|
<div class="tbl_frm01">
|
|
<table>
|
|
<caption>결제상세정보</caption>
|
|
<colgroup>
|
|
<col class="grid_3">
|
|
<col>
|
|
</colgroup>
|
|
<tbody>
|
|
<?php if ($od['od_settle_case'] == '무통장' || $od['od_settle_case'] == '가상계좌' || $od['od_settle_case'] == '계좌이체') { ?>
|
|
<?php if ($od['od_settle_case'] == '무통장' || $od['od_settle_case'] == '가상계좌') { ?>
|
|
<tr>
|
|
<th scope="row">계좌번호</th>
|
|
<td><?php echo $od['od_bank_account']; ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
<tr>
|
|
<th scope="row"><?php echo $od['od_settle_case']; ?> 입금액</th>
|
|
<td><?php echo display_price($od['od_receipt_price']); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">입금자</th>
|
|
<td><?php echo $od['od_deposit_name']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">입금확인일시</th>
|
|
<td>
|
|
<?php if ($od['od_receipt_time'] == 0) { ?>입금 확인일시를 체크해 주세요.
|
|
<?php } else { ?><?php echo $od['od_receipt_time']; ?> (<?php echo get_yoil($od['od_receipt_time']); ?>)
|
|
<?php } ?>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
|
|
<?php if ($od['od_settle_case'] == '휴대폰') { ?>
|
|
<tr>
|
|
<th scope="row">휴대폰번호</th>
|
|
<td><?php echo $od['od_bank_account']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?php echo $od['od_settle_case']; ?> 결제액</th>
|
|
<td><?php echo display_price($od['od_receipt_price']); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">결제 확인일시</th>
|
|
<td>
|
|
<?php if ($od['od_receipt_time'] == 0) { ?>결제 확인일시를 체크해 주세요.
|
|
<?php } else { ?><?php echo $od['od_receipt_time']; ?> (<?php echo get_yoil($od['od_receipt_time']); ?>)
|
|
<?php } ?>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
|
|
<?php if ($od['od_settle_case'] == '신용카드') { ?>
|
|
<tr>
|
|
<th scope="row" class="sodr_sppay">신용카드 결제금액</th>
|
|
<td>
|
|
<?php if ($od['od_receipt_time'] == "0000-00-00 00:00:00") {?>0원
|
|
<?php } else { ?><?php echo display_price($od['od_receipt_price']); ?>
|
|
<?php } ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row" class="sodr_sppay">카드 승인일시</th>
|
|
<td>
|
|
<?php if ($od['od_receipt_time'] == "0000-00-00 00:00:00") {?>신용카드 결제 일시 정보가 없습니다.
|
|
<?php } else { ?><?php echo substr($od['od_receipt_time'], 0, 20); ?>
|
|
<?php } ?>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
|
|
<?php if ($od['od_settle_case'] != '무통장') { ?>
|
|
<tr>
|
|
<th scope="row">결제대행사 링크</th>
|
|
<td>
|
|
<?php
|
|
//------------------------------------------------------------------------------
|
|
// KCP(PG) 바로가기
|
|
//------------------------------------------------------------------------------
|
|
if ($od['od_settle_case'] != '무통장') {
|
|
// PG사를 KCP 사용하면서 테스트 상점아이디라면
|
|
$pg_url = 'http://admin8.kcp.co.kr';
|
|
$pg_test = '';
|
|
if ($default['de_card_test']) {
|
|
// 로그인 아이디 / 비번
|
|
// 일반 : test1234 / test12345
|
|
// 에스크로 : escrow / escrow913
|
|
$pg_url = 'http://testadmin8.kcp.co.kr';
|
|
if ($default['de_escrow_use'])
|
|
$pg_test = '에스크로 테스트 ';
|
|
else
|
|
$pg_test = '일반 테스트 ';
|
|
}
|
|
echo "<a href=\"{$pg_url}\" target=\"_blank\">KCP {$pg_test}바로가기</a><br>";
|
|
}
|
|
//------------------------------------------------------------------------------
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
|
|
<?php if($od['od_tax_flag']) { ?>
|
|
<tr>
|
|
<th scope="row">과세공급가액</th>
|
|
<td><?php echo display_price($od['od_tax_mny']); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">과세부가세액</th>
|
|
<td><?php echo display_price($od['od_vat_mny']); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">비과세공급가액</th>
|
|
<td><?php echo display_price($od['od_free_mny']); ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
<tr>
|
|
<th scope="row">포인트</th>
|
|
<td><?php echo display_point($od['od_receipt_point']); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">결제취소/환불액</th>
|
|
<td><?php echo display_price($od['od_refund_price']); ?></td>
|
|
</tr>
|
|
<?php if ($od['od_invoice']) { ?>
|
|
<tr>
|
|
<th scope="row">운송장번호</th>
|
|
<td><?php echo $od['od_invoice']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">배송회사</th>
|
|
<td><?php echo $od['od_delivery_company']; ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
<tr>
|
|
<th scope="row">배송일시</th>
|
|
<td><?php echo is_null_time($od['od_invoice_time']) ? "" : $od['od_invoice_time']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="od_send_cost">배송비</label></th>
|
|
<td>
|
|
<?php echo help("주문취소시 배송비는 취소되지 않으므로 이 배송비를 0으로 설정하여 미수금을 맞추십시오."); ?>
|
|
<input type="text" name="od_send_cost" value="<?php echo $od['od_send_cost']; ?>" id="od_send_cost" class="frm_input" size="10"> 원
|
|
</td>
|
|
</tr>
|
|
<?php if($od['od_send_coupon']) { ?>
|
|
<tr>
|
|
<th scope="row">배송비할인</th>
|
|
<td><?php echo display_price($od['od_send_coupon']); ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
<tr>
|
|
<th scope="row"><label for="od_send_cost2">추가배송비</label></th>
|
|
<td>
|
|
<input type="text" name="od_send_cost2" value="<?php echo $od['od_send_cost2']; ?>" id="od_send_cost2" class="frm_input" size="10"> 원
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
if ($amount['미수'] == 0) {
|
|
if ($od['od_receipt_price'] && ($od['od_settle_case'] == '무통장' || $od['od_settle_case'] == '가상계좌' || $od['od_settle_case'] == '계좌이체')) {
|
|
?>
|
|
<tr>
|
|
<th scope="row">현금영수증</th>
|
|
<td>
|
|
<?php if ($od['od_cash']) { ?>
|
|
<a href="javascript:;" onclick="window.open('https://admin.kcp.co.kr/Modules/Service/Cash/Cash_Bill_Common_View.jsp?cash_no=<?php echo $od['od_cash_no']; ?>', 'taxsave_receipt', 'width=360,height=647,scrollbars=0,menus=0');">현금영수증 확인</a>
|
|
<?php } else { ?>
|
|
<a href="javascript:;" onclick="window.open('<?php echo G5_SHOP_URL; ?>/taxsave_kcp.php?od_id=<?php echo $od_id; ?>', 'taxsave', 'width=550,height=400,scrollbars=1,menus=0');">현금영수증 발급</a>
|
|
<?php } ?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="anc_sodr_paymo" class="compare_right">
|
|
<h3>결제상세정보 수정</h3>
|
|
|
|
<div class="tbl_frm01">
|
|
<table>
|
|
<caption>결제상세정보 수정</caption>
|
|
<colgroup>
|
|
<col class="grid_3">
|
|
<col>
|
|
</colgroup>
|
|
<tbody>
|
|
<?php if ($od['od_settle_case'] == '무통장' || $od['od_settle_case'] == '가상계좌' || $od['od_settle_case'] == '계좌이체') { ########## 시작?>
|
|
<?php
|
|
// 주문서
|
|
$sql = " select * from {$g5['g5_shop_order_table']} where od_id = '$od_id' ";
|
|
$result = sql_query($sql);
|
|
$od = sql_fetch_array($result);
|
|
|
|
if ($od['od_settle_case'] == '무통장')
|
|
{
|
|
// 은행계좌를 배열로 만든후
|
|
$str = explode("\n", $default['de_bank_account']);
|
|
$bank_account .= '<select name="od_bank_account" id="od_bank_account">'.PHP_EOL;
|
|
$bank_account .= '<option value="">선택하십시오</option>'.PHP_EOL;
|
|
for ($i=0; $i<count($str); $i++) {
|
|
$str[$i] = str_replace("\r", "", $str[$i]);
|
|
$bank_account .= '<option value="'.$str[$i].'" '.get_selected($od['od_bank_account'], $str[$i]).'>'.$str[$i].'</option>'.PHP_EOL;
|
|
}
|
|
$bank_account .= '</select> ';
|
|
}
|
|
else if ($od['od_settle_case'] == '가상계좌')
|
|
$bank_account = $od['od_bank_account'].'<input type="hidden" name="od_bank_account" value="'.$od['od_bank_account'].'">';
|
|
else if ($od['od_settle_case'] == '계좌이체')
|
|
$bank_account = $od['od_settle_case'];
|
|
?>
|
|
|
|
<?php if ($od['od_settle_case'] == '무통장' || $od['od_settle_case'] == '가상계좌') { ?>
|
|
<tr>
|
|
<th scope="row"><label for="od_bank_account">계좌번호</label></th>
|
|
<td><?php echo $bank_account; ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
|
|
<tr>
|
|
<th scope="row"><label for="od_receipt_price"><?php echo $od['od_settle_case']; ?> 입금액</label></th>
|
|
<td>
|
|
<?php echo $html_receipt_chk; ?>
|
|
<input type="text" name="od_receipt_price" value="<?php echo $od['od_receipt_price']; ?>" id="od_receipt_price" class="frm_input"> 원
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="od_deposit_name">입금자명</label></th>
|
|
<td>
|
|
<?php if ($config['cf_sms_use'] && $default['de_sms_use3']) { ?>
|
|
<input type="checkbox" name="od_sms_ipgum_check" id="od_sms_ipgum_check">
|
|
<label for="od_sms_ipgum_check">SMS 입금 문자전송</label>
|
|
<br>
|
|
<?php } ?>
|
|
<input type="text" name="od_deposit_name" value="<?php echo $od['od_deposit_name']; ?>" id="od_deposit_name" class="frm_input">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="od_receipt_time">입금 확인일시</label></th>
|
|
<td>
|
|
<input type="checkbox" name="od_bank_chk" id="od_bank_chk" value="<?php echo date("Y-m-d H:i:s", G5_SERVER_TIME); ?>" onclick="if (this.checked == true) this.form.od_receipt_time.value=this.form.od_bank_chk.value; else this.form.od_receipt_time.value = this.form.od_receipt_time.defaultValue;">
|
|
<label for="od_bank_chk">현재 시간으로 설정</label><br>
|
|
<input type="text" name="od_receipt_time" value="<?php echo is_null_time($od['od_receipt_time']) ? "" : $od['od_receipt_time']; ?>" id="od_receipt_time" class="frm_input" maxlength="19">
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
|
|
<?php if ($od['od_settle_case'] == '휴대폰') { ?>
|
|
<tr>
|
|
<th scope="row">휴대폰번호</th>
|
|
<td><?php echo $od['od_bank_account']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="od_receipt_price"><?php echo $od['od_settle_case']; ?> 결제액</label></th>
|
|
<td>
|
|
<?php echo $html_receipt_chk; ?>
|
|
<input type="text" name="od_receipt_price" value="<?php echo $od['od_receipt_price']; ?>" id="od_receipt_price" class="frm_input"> 원
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="op_receipt_time">휴대폰 결제일시</label></th>
|
|
<td>
|
|
<input type="checkbox" name="od_hp_chk" id="od_hp_chk" value="<?php echo date("Y-m-d H:i:s", G5_SERVER_TIME); ?>" onclick="if (this.checked == true) this.form.od_receipt_time.value=this.form.od_hp_chk.value; else this.form.od_receipt_time.value = this.form.od_receipt_time.defaultValue;">
|
|
<label for="od_hp_chk">현재 시간으로 설정</label><br>
|
|
<input type="text" name="od_receipt_time" value="<?php echo is_null_time($od['od_receipt_time']) ? "" : $od['od_receipt_time']; ?>" id="op_receipt_time" class="frm_input" size="19" maxlength="19">
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
|
|
<?php if ($od['od_settle_case'] == '신용카드') { ?>
|
|
<tr>
|
|
<th scope="row" class="sodr_sppay"><label for="od_receipt_price">신용카드 결제금액</label></th>
|
|
<td>
|
|
<?php echo $html_receipt_chk; ?>
|
|
<input type="text" name="od_receipt_price" id="od_receipt_price" value="<?php echo $od['od_receipt_price']; ?>" class="frm_input" size="10"> 원
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row" class="sodr_sppay"><label for="od_receipt_time">카드 승인일시</label></th>
|
|
<td>
|
|
<input type="checkbox" name="od_card_chk" id="od_card_chk" value="<?php echo date("Y-m-d H:i:s", G5_SERVER_TIME); ?>" onclick="if (this.checked == true) this.form.od_receipt_time.value=this.form.od_card_chk.value; else this.form.od_receipt_time.value = this.form.od_receipt_time.defaultValue;">
|
|
<label for="od_card_chk">현재 시간으로 설정</label><br>
|
|
<input type="text" name="od_receipt_time" value="<?php echo is_null_time($od['od_receipt_time']) ? "" : $od['od_receipt_time']; ?>" id="od_receipt_time" class="frm_input" size="19" maxlength="19">
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
|
|
<tr>
|
|
<th scope="row"><label for="od_receipt_point">포인트 결제액</label></th>
|
|
<td><input type="text" name="od_receipt_point" value="<?php echo $od['od_receipt_point']; ?>" id="od_receipt_point" class="frm_input" size="10"> 점</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="od_refund_price">결제취소/환불 금액</label></th>
|
|
<td>
|
|
<input type="text" name="od_refund_price" value="<?php echo $od['od_refund_price']; ?>" class="frm_input" size="10"> 원
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="od_invoice">운송장번호</label></th>
|
|
<td>
|
|
<?php if ($config['cf_sms_use'] && $default['de_sms_use4']) { ?>
|
|
<input type="checkbox" name="od_sms_baesong_check" id="od_sms_baesong_check">
|
|
<label for="od_sms_baesong_check">SMS 배송 문자전송</label>
|
|
<br>
|
|
<?php } ?>
|
|
<input type="text" name="od_invoice" value="<?php echo $od['od_invoice']; ?>" id="od_invoice" class="frm_input">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="od_delivery_company">배송회사</label></th>
|
|
<td>
|
|
<input type="checkbox" id="od_delivery_chk" value="<?php echo $default['de_delivery_company']; ?>" onclick="chk_delivery_company()">
|
|
<label for="od_delivery_chk">기본 배송회사로 설정</label><br>
|
|
<input type="text" name="od_delivery_company" id="od_delivery_company" value="<?php echo $od['od_delivery_company']; ?>" class="frm_input">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="od_invoice_time">배송일시</label></th>
|
|
<td>
|
|
<input type="checkbox" id="od_invoice_chk" value="<?php echo date("Y-m-d H:i:s", G5_SERVER_TIME); ?>" onclick="chk_invoice_time()">
|
|
<label for="od_invoice_chk">현재 시간으로 설정</label><br>
|
|
<input type="text" name="od_invoice_time" id="od_invoice_time" value="<?php echo is_null_time($od['od_invoice_time']) ? "" : $od['od_invoice_time']; ?>" class="frm_input" maxlength="19">
|
|
</td>
|
|
</tr>
|
|
|
|
<?php if ($config['cf_email_use']) { ?>
|
|
<tr>
|
|
<th scope="row"><label for="od_send_mail">메일발송</label></th>
|
|
<td>
|
|
<?php echo help("주문자님께 입금, 배송내역을 메일로 발송합니다.\n메일발송시 상점메모에 기록됩니다."); ?>
|
|
<input type="checkbox" name="od_send_mail" value="1" id="od_send_mail"> 메일발송
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
|
|
</div>
|
|
|
|
<div class="btn_confirm01 btn_confirm">
|
|
<input type="submit" value="결제/배송내역 수정" class="btn_submit">
|
|
<a href="./orderlist.php?<?php echo $qstr; ?>">목록</a>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
|
|
<section id="anc_sodr_memo">
|
|
<h2 class="h2_frm">상점메모</h2>
|
|
<?php echo $pg_anchor; ?>
|
|
<div class="local_desc02 local_desc">
|
|
<p>
|
|
현재 열람 중인 주문에 대한 내용을 메모하는곳입니다.<br>
|
|
입금, 배송 내역을 메일로 발송할 경우 함께 기록됩니다.
|
|
</p>
|
|
</div>
|
|
|
|
<form name="frmorderform2" action="./orderformupdate.php" method="post">
|
|
<input type="hidden" name="od_id" value="<?php echo $od_id; ?>">
|
|
<input type="hidden" name="sort1" value="<?php echo $sort1; ?>">
|
|
<input type="hidden" name="sort2" value="<?php echo $sort2; ?>">
|
|
<input type="hidden" name="sel_field" value="<?php echo $sel_field; ?>">
|
|
<input type="hidden" name="search" value="<?php echo $search; ?>">
|
|
<input type="hidden" name="page" value="<?php echo $page; ?>">
|
|
<input type="hidden" name="mod_type" value="memo">
|
|
|
|
<div class="tbl_wrap">
|
|
<label for="od_shop_memo" class="sound_only">상점메모</label>
|
|
<textarea name="od_shop_memo" id="od_shop_memo" rows="8"><?php echo stripslashes($od['od_shop_memo']); ?></textarea>
|
|
</div>
|
|
|
|
<div class="btn_confirm01 btn_confirm">
|
|
<input type="submit" value="메모 수정" class="btn_submit">
|
|
</div>
|
|
|
|
</form>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 class="h2_frm">주문자/배송지 정보</h2>
|
|
<?php echo $pg_anchor; ?>
|
|
|
|
<form name="frmorderform3" action="./orderformupdate.php" method="post">
|
|
<input type="hidden" name="od_id" value="<?php echo $od_id; ?>">
|
|
<input type="hidden" name="sort1" value="<?php echo $sort1; ?>">
|
|
<input type="hidden" name="sort2" value="<?php echo $sort2; ?>">
|
|
<input type="hidden" name="sel_field" value="<?php echo $sel_field; ?>">
|
|
<input type="hidden" name="search" value="<?php echo $search; ?>">
|
|
<input type="hidden" name="page" value="<?php echo $page; ?>">
|
|
<input type="hidden" name="mod_type" value="info">
|
|
|
|
<div class="compare_wrap">
|
|
|
|
<section id="anc_sodr_payer" class="compare_left">
|
|
<h3>주문하신 분</h3>
|
|
|
|
<div class="tbl_frm01">
|
|
<table>
|
|
<caption>주문자/배송지 정보</caption>
|
|
<colgroup>
|
|
<col class="grid_4">
|
|
<col>
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row"><label for="od_name"><span class="sound_only">주문하신 분 </span>이름</label></th>
|
|
<td><input type="text" name="od_name" value="<?php echo $od['od_name']; ?>" id="od_name" required class="frm_input required"></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="od_tel"><span class="sound_only">주문하신 분 </span>전화번호</label></th>
|
|
<td><input type="text" name="od_tel" value="<?php echo $od['od_tel']; ?>" id="od_tel" required class="frm_input required"></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="od_hp"><span class="sound_only">주문하신 분 </span>핸드폰</label></th>
|
|
<td><input type="text" name="od_hp" value="<?php echo $od['od_hp']; ?>" id="od_hp" class="frm_input"></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><span class="sound_only">주문하시는 분 </span>주소</th>
|
|
<td>
|
|
<label for="od_zip1" class="sound_only">우편번호 앞자리</label>
|
|
<input type="text" name="od_zip1" value="<?php echo $od['od_zip1']; ?>" id="od_zip1" required class="frm_input required" size="4">
|
|
-
|
|
<label for="od_zip2" class="sound_only">우편번호 뒷자리</label>
|
|
<input type="text" name="od_zip2" value="<?php echo $od['od_zip2']; ?>" id="od_zip2" required class="frm_input required" size="4">
|
|
<span id="od_win_zip" style="display:block"></span>
|
|
<label for="od_addr1" class="sound_only">주소</label>
|
|
<input type="text" name="od_addr1" value="<?php echo $od['od_addr1']; ?>" id="od_addr1" required class="frm_input required" size="30"><br>
|
|
<label for="od_addr2" class="sound_only">상세주소</label>
|
|
<input type="text" name="od_addr2" value="<?php echo $od['od_addr2']; ?>" id="od_addr2" required class="frm_input required" size="30">
|
|
|
|
<script>
|
|
// 우편번호 자바스크립트 비활성화 대응을 위한 코드
|
|
$('<a href="<?php echo G5_BBS_URL; ?>/zip.php?frm_name=frmorderform2&frm_zip1=od_zip1&frm_zip2=od_zip2&frm_addr1=od_addr1&frm_addr2=od_addr2" id="od_zip_find" class="btn_frmline win_zip_find" target="_blank">우편번호 검색</a><br>').appendTo('#od_win_zip');
|
|
$("#od_win_zip").css("display", "inline");
|
|
$("#od_zip1, #od_zip2, #od_addr1").attr('readonly', 'readonly');
|
|
$("#od_zip1, #od_zip2, #od_addr1").addClass('readonly');
|
|
</script>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="od_email"><span class="sound_only">주문하신 분 </span>E-mail</label></th>
|
|
<td><input type="text" name="od_email" value="<?php echo $od['od_email']; ?>" id="od_email" required class="frm_input email required" size="30"></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><span class="sound_only">주문하신 분 </span>IP Address</th>
|
|
<td><?php echo $od['od_ip']; ?></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="anc_sodr_addressee" class="compare_right">
|
|
<h3>받으시는 분</h3>
|
|
|
|
<div class="tbl_frm01">
|
|
<table>
|
|
<caption>받으시는 분 정보</caption>
|
|
<colgroup>
|
|
<col class="grid_4">
|
|
<col>
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row"><label for="od_b_name"><span class="sound_only">받으시는 분 </span>이름</label></th>
|
|
<td><input type="text" name="od_b_name" value="<?php echo $od['od_b_name']; ?>" id="od_b_name" required class="frm_input required"></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="od_b_tel"><span class="sound_only">받으시는 분 </span>전화번호</label></th>
|
|
<td><input type="text" name="od_b_tel" value="<?php echo $od['od_b_tel']; ?>" id="od_b_tel" required class="frm_input required"></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="od_b_hp"><span class="sound_only">받으시는 분 </span>핸드폰</label></th>
|
|
<td><input type="text" name="od_b_hp" value="<?php echo $od['od_b_hp']; ?>" id="od_b_hp" class="frm_input required"></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><span class="sound_only">받으시는 분 </span>주소</th>
|
|
<td>
|
|
<label for="od_b_zip1" class="sound_only">우편번호 앞자리</label>
|
|
<input type="text" name="od_b_zip1" value="<?php echo $od['od_b_zip1']; ?>" id="od_b_zip1" required class="frm_input required" size="4">
|
|
-
|
|
<label for="od_b_zip2" class="sound_only">우편번호 뒷자리</label>
|
|
<input type="text" name="od_b_zip2" value="<?php echo $od['od_b_zip2']; ?>" id="od_b_zip2" required class="frm_input required" size="4">
|
|
<span id="od_win_zipb" style="display:block"></span>
|
|
<label for="od_b_addr1" class="sound_only">주소</label>
|
|
<input type="text" name="od_b_addr1" value="<?php echo $od['od_b_addr1']; ?>" id="od_b_addr1" required class="frm_input required" size="30"><br>
|
|
<label for="od_b_addr2" class="sound_only">상세주소</label>
|
|
<input type="text" name="od_b_addr2" value="<?php echo $od['od_b_addr2']; ?>" id="od_b_addr2" required class="frm_input required" size="30">
|
|
|
|
<script>
|
|
// 우편번호 자바스크립트 비활성화 대응을 위한 코드
|
|
$('<a href="<?php echo G5_BBS_URL; ?>/zip.php?frm_name=frmorderform2&frm_zip1=od_b_zip1&frm_zip2=od_b_zip2&frm_addr1=od_b_addr1&frm_addr2=od_b_addr2" id="od_zip_findb" class="btn_frmline win_zip_find" target="_blank">우편번호 검색</a><br>').appendTo('#od_win_zipb');
|
|
$("#od_win_zipb").css("display", "inline");
|
|
$("#od_b_zip1, #od_b_zip2, #od_b_addr1").attr('readonly', 'readonly');
|
|
$("#od_b_zip1, #od_b_zip2, #od_b_addr1").addClass('readonly');
|
|
</script>
|
|
</td>
|
|
</tr>
|
|
|
|
<?php if ($default['de_hope_date_use']) { ?>
|
|
<tr>
|
|
<th scope="row"><label for="od_hope_date">희망배송일</label></th>
|
|
<td>
|
|
<input type="text" name="od_hope_date" value="<?php echo $od['od_hope_date']; ?>" id="od_hopedate" required class="frm_input required" maxlength="10" minlength="10"> (<?php echo get_yoil($od['od_hope_date']); ?>)
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
|
|
<tr>
|
|
<th scope="row">전달 메세지</th>
|
|
<td><?php if ($od['od_memo']) echo nl2br($od['od_memo']);else echo "없음";?></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
|
|
</div>
|
|
|
|
<div class="btn_confirm01 btn_confirm">
|
|
<input type="submit" value="주문자/배송지 정보 수정" class="btn_submit">
|
|
<a href="./orderlist.php?<?php echo $qstr; ?>">목록</a>
|
|
</div>
|
|
|
|
</form>
|
|
</section>
|
|
|
|
<div class="btn_list03 btn_list">
|
|
<?php if($od['od_misu'] > 0) { ?>
|
|
<a href="./personalpayform.php?popup=yes&od_id=<?php echo $od_id; ?>" id="personalpay_add">개인결제추가</a>
|
|
<?php } ?>
|
|
<?php if($od['od_misu'] < 0 && ($od['od_receipt_price'] - $od['od_refund_price']) > 0 && $od['od_settle_case'] == '신용카드' || $od['od_settle_case'] == '계좌이체') { ?>
|
|
<a href="./orderpartcancel.php?od_id=<?php echo $od_id; ?>" id="orderpartcancel"><?php echo $od['od_settle_case']; ?> 부분취소</a>
|
|
<?php } ?>
|
|
</div>
|
|
|
|
<script>
|
|
$(function() {
|
|
// 전체 옵션선택
|
|
$("#sit_select_all").click(function() {
|
|
if($(this).is(":checked")) {
|
|
$("input[name='it_sel[]']").attr("checked", true);
|
|
$("input[name^=ct_chk]").attr("checked", true);
|
|
} else {
|
|
$("input[name='it_sel[]']").attr("checked", false);
|
|
$("input[name^=ct_chk]").attr("checked", false);
|
|
}
|
|
});
|
|
|
|
// 상품의 옵션선택
|
|
$("input[name='it_sel[]']").click(function() {
|
|
var cls = $(this).attr("id").replace("sit_", "sct_");
|
|
var $chk = $("input[name^=ct_chk]."+cls);
|
|
if($(this).is(":checked"))
|
|
$chk.attr("checked", true);
|
|
else
|
|
$chk.attr("checked", false);
|
|
});
|
|
|
|
// 개인결제추가
|
|
$("#personalpay_add").on("click", function() {
|
|
var href = this.href;
|
|
window.open(href, "personalpaywin", "left=100, top=100, width=700, height=650, scrollbars=yes");
|
|
return false;
|
|
});
|
|
|
|
// 부분취소창
|
|
$("#orderpartcancel").on("click", function() {
|
|
var href = this.href;
|
|
window.open(href, "partcancelwin", "left=100, top=100, width=600, height=350, scrollbars=yes");
|
|
return false;
|
|
});
|
|
});
|
|
|
|
function form_submit(f)
|
|
{
|
|
var check = false;
|
|
var status = document.pressed;
|
|
|
|
for (i=0; i<f.chk_cnt.value; i++) {
|
|
if (document.getElementById('ct_chk_'+i).checked == true)
|
|
check = true;
|
|
}
|
|
|
|
if (check == false) {
|
|
alert("처리할 자료를 하나 이상 선택해 주십시오.");
|
|
return false;
|
|
}
|
|
|
|
if (confirm("\'" + status + "\' 상태를 선택하셨습니다.\n\n처리 하시겠습니까?")) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function del_confirm()
|
|
{
|
|
if(confirm("주문서를 삭제하시겠습니까?")) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// 기본 배송회사로 설정
|
|
function chk_delivery_company()
|
|
{
|
|
var chk = document.getElementById("od_delivery_chk");
|
|
var company = document.getElementById("od_delivery_company");
|
|
company.value = chk.checked ? chk.value : company.defaultValue;
|
|
}
|
|
|
|
// 현재 시간으로 배송일시 설정
|
|
function chk_invoice_time()
|
|
{
|
|
var chk = document.getElementById("od_invoice_chk");
|
|
var time = document.getElementById("od_invoice_time");
|
|
time.value = chk.checked ? chk.value : time.defaultValue;
|
|
}
|
|
|
|
// 결제금액 수동 설정
|
|
function chk_receipt_price()
|
|
{
|
|
var chk = document.getElementById("od_receipt_chk");
|
|
var price = document.getElementById("od_receipt_price");
|
|
price.value = chk.checked ? (parseInt(chk.value) + parseInt(price.defaultValue)) : price.defaultValue;
|
|
}
|
|
</script>
|
|
|
|
<?php
|
|
include_once(G5_ADMIN_PATH.'/admin.tail.php');
|
|
?>
|